* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #faf7f2;
    color: #2c2420;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Warme, aardse kleurenpalet */
:root {
    --bg-light: #faf7f2;
    --bg-warm: #f5ede3;
    --cream: #fef8f0;
    --sand: #d4c4ae;
    --taupe: #b29a7a;
    --burnt-brown: #8b6946;
    --deep-brown: #5c3d2e;
    --charcoal: #3a322c;
    --white: #ffffff;
    --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== HEADER ========== */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 105, 70, 0.15);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--burnt-brown) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo p {
    font-size: 0.8rem;
    color: var(--taupe);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-link:hover .logo h1 {
    background: linear-gradient(135deg, var(--burnt-brown) 0%, var(--deep-brown) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 450;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burnt-brown);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--burnt-brown);
}

/* ========== DROPDOWN MENU ========== */
.nav-item {
    position: relative;
}

.dropdown-trigger-link {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 450;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.dropdown-trigger-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burnt-brown);
    transition: width 0.2s ease;
}

.dropdown-trigger-link:hover::after {
    width: 100%;
}

.dropdown-trigger-link:hover {
    color: var(--burnt-brown);
}

.dropdown-arrow {
    cursor: pointer;
    padding: 0 5px;
    color: var(--charcoal);
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    min-width: 200px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100;
    border: 1px solid rgba(139, 105, 70, 0.15);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--white);
    border-left: 1px solid rgba(139, 105, 70, 0.15);
    border-top: 1px solid rgba(139, 105, 70, 0.15);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(139, 105, 70, 0.08);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--bg-warm);
    color: var(--burnt-brown);
    padding-left: 26px;
}

/* ========== CARROUSSEL STIJLEN ========== */
.carousel-section {
    padding: 0;
    background: var(--bg-light);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display:block;
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 40px 30px 20px;
    text-align: center;
}

.carousel-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.carousel-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(92, 61, 46, 0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--burnt-brown);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sand);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--burnt-brown);
}

/* ========== OVER SECTIE ========== */
.about-section {
    padding: 70px 0;
    background: var(--bg-warm);
}

.about-wrapper {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
    padding: 48px 40px 48px 48px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--deep-brown);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--burnt-brown);
}

.about-text .subtitle {
    color: var(--taupe);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.about-text p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text .signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--burnt-brown);
    margin-top: 25px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    min-height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 48px 48px 48px 0;
    border-radius: 20px;
}

/* ========== TITEL STIJLEN ========== */
.title-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 450;
    color: var(--deep-brown);
    display: inline-block;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '—';
    color: var(--taupe);
    font-size: 1.5rem;
    margin: 0 15px;
    opacity: 0.6;
}

/* ========== COLLECTIE OVERZICHT PAGINA ========== */
.collectie-overzicht {
    padding-top: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 80px;
}

.category-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.category-card:hover .category-image {
    box-shadow: var(--shadow-hover);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--deep-brown);
    margin: 24px 0 12px;
}

.category-card p {
    color: var(--taupe);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.category-link {
    display: inline-block;
    color: var(--burnt-brown);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid var(--sand);
    transition: all 0.2s ease;
    padding-bottom: 4px;
}

.category-card:hover .category-link {
    color: var(--deep-brown);
    border-bottom-color: var(--burnt-brown);
}

/* ========== FOOTER ========== */
.site-footer {
    background: #2c2420;
    color: #d4c4ae;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 450;
    margin-bottom: 16px;
    color: #f5ede3;
}

.footer-info p {
    margin: 8px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-info i {
    margin-right: 8px;
    width: 24px;
    color: var(--taupe);
}

.footer-info a {
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-links a {
    text-decoration: none;
    color: #d4c4ae;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}



.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(180, 150, 120, 0.2);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ========== HAMBURGER MENU ========== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== SUBCATEGORIE PAGINA'S ========== */
.producten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin: 20px 0 60px;
}

.product-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 105, 70, 0.15);
    box-shadow: var(--shadow);
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(139, 105, 70, 0.3);
}

.product-item-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--bg-warm);
    position: relative;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    background-color: #f5ede3;
}

.product-item:hover .product-item-image img {
    transform: scale(1.05);
}

.product-color-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--deep-brown);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 5;
    text-transform: uppercase;
}

.product-item-info {
    padding: 20px;
    text-align: center;
}

.product-item-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--deep-brown);
    margin-bottom: 8px;
}

.product-item-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--burnt-brown);
    margin-bottom: 12px;
}

.product-item-btn {
    background: transparent;
    border: 1px solid var(--burnt-brown);
    padding: 8px 20px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--burnt-brown);
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-item-btn:hover {
    background: var(--burnt-brown);
    color: white;
}

/* ========== MODAL (POP-UP) STIJLEN ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    max-width: 1000px;
    width: 90%;
    max-height: 85vh;
    border-radius: 20px;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: var(--charcoal);
    transition: color 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--burnt-brown);
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    gap: 30px;
    min-height: 500px;
}

.modal-gallery {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.modal-main-image {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.modal-main-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.modal-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.modal-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    border: 2px solid transparent;
}

.modal-thumb.active {
    opacity: 1;
    border-color: var(--burnt-brown);
}

.modal-thumb:hover {
    opacity: 1;
}

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.modal-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--deep-brown);
    margin-bottom: 10px;
}

.modal-details .modal-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--burnt-brown);
    margin-bottom: 20px;
}

.modal-details .modal-description {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.modal-add-to-cart {
    background: var(--deep-brown);
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
}

.modal-add-to-cart:hover {
    background: var(--burnt-brown);
    transform: translateY(-2px);
}

/* Kleuren dropdown in product modal */
.kleur-select-group {
    margin-bottom: 20px;
}

.kleur-select-group label {
    display: block;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.kleur-select-group label i {
    margin-right: 8px;
    color: var(--burnt-brown);
}

.kleur-select-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--sand);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background-color: var(--white);
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.2s ease;
}

.kleur-select-group select:focus {
    outline: none;
    border-color: var(--burnt-brown);
    box-shadow: 0 0 0 3px rgba(139, 105, 70, 0.1);
}

.kleur-select-group select:hover {
    border-color: var(--burnt-brown);
}

.kleur-select-note {
    font-size: 0.7rem;
    color: var(--taupe);
    margin-top: 6px;
    font-style: italic;
}

/* Title met counter - gecentreerde titel, counter rechts */
.title-with-counter {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.title-with-counter .section-title {
    margin: 0;
    text-align: center;
}

.product-counter {
    position: absolute;
    right: 0;
    font-size: 0.9rem;
    color: var(--burnt-brown);
    background: var(--bg-warm);
    padding: 6px 14px;
    border-radius: 40px;
    font-weight: 500;
    white-space: nowrap;
}

/* ========== ADMIN PAGINA STIJLEN ========== */
.login-container {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-light);
}

.login-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 10px;
}

.login-card p {
    color: var(--taupe);
    margin-bottom: 30px;
}

.login-input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid var(--sand);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.login-input:focus {
    outline: none;
    border-color: var(--burnt-brown);
    box-shadow: 0 0 0 3px rgba(139, 105, 70, 0.1);
}

.login-btn {
    width: 100%;
    background: var(--deep-brown);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-btn:hover {
    background: var(--burnt-brown);
    transform: translateY(-2px);
}

.logout-btn {
    background: transparent;
    border: 1px solid var(--burnt-brown);
    color: var(--burnt-brown);
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: var(--burnt-brown);
    color: white;
}

/* Admin filters */
.admin-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sand);
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--sand);
    padding: 8px 20px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--charcoal);
}

.filter-btn.active {
    background: var(--deep-brown);
    border-color: var(--deep-brown);
    color: white;
}

.filter-btn:hover:not(.active) {
    background: var(--bg-warm);
    border-color: var(--burnt-brown);
}

/* Admin product grid */
.admin-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.admin-product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139, 105, 70, 0.15);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.admin-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.admin-product-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.admin-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-product-info {
    padding: 15px;
}

.admin-product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--deep-brown);
}

.admin-product-price {
    color: var(--burnt-brown);
    font-weight: 600;
    margin-bottom: 12px;
}

.admin-product-actions {
    display: flex;
    gap: 10px;
}

.edit-btn, .delete-btn {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn {
    background: var(--deep-brown);
    border: none;
    color: white;
}

.edit-btn:hover {
    background: var(--burnt-brown);
}

.delete-btn {
    background: transparent;
    border: 1px solid #c8b5a6;
    color: #8b6946;
}

.delete-btn:hover {
    background: #e8ddd0;
    border-color: #8b6946;
}

/* Admin formulier */
.admin-form {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.admin-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--deep-brown);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--sand);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--burnt-brown);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.image-input-group input {
    flex: 1;
}

.remove-image {
    background: #e8ddd0;
    border: none;
    padding: 0 12px;
    border-radius: 8px;
    cursor: pointer;
}

.add-image-btn {
    background: transparent;
    border: 1px dashed var(--sand);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.save-btn {
    background: var(--deep-brown);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    flex: 1;
}

.cancel-btn {
    background: transparent;
    border: 1px solid var(--sand);
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    flex: 1;
}

.admin-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.add-product-btn {
    background: var(--deep-brown);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.admin-success {
    background: #dcfce7;
    color: #16a34a;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Admin kleuren selectie - tekst only */
.admin-colors-grid-text {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    background: var(--bg-warm);
    padding: 20px;
    border-radius: 16px;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.admin-color-option-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    background: white;
    font-weight: 500;
}

.admin-color-option-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.admin-color-option-text.selected {
    border-color: var(--burnt-brown);
    background: var(--bg-warm);
}

.admin-color-name-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    flex: 1;
}

.admin-color-option-text .fa-check-circle {
    color: var(--burnt-brown);
    font-size: 0.9rem;
}

/* ========== HET ATELIER PAGINA ========== */
.atelier-section {
    padding-top: 40px;
    padding-bottom: 60px;
    background: var(--bg-light);
}

.atelier-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
}

.atelier-block.reverse {
    flex-direction: row-reverse;
}

.atelier-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 450px;
}

.atelier-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.atelier-image:hover img {
    transform: scale(1.02);
}

.atelier-text {
    flex: 1;
}

.atelier-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--deep-brown);
    margin-bottom: 20px;
    position: relative;
}

.atelier-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--burnt-brown);
}

.atelier-text p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Atelier carrousel */
.atelier-carrousel-section {
    background: var(--bg-warm);
    padding: 60px 0;
    margin-top: 20px;
}

.atelier-carrousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.atelier-carrousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.atelier-carrousel-slide {
    min-width: 100%;
}

.atelier-carrousel-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.atelier-carrousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(92, 61, 46, 0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    z-index: 10;
}

.atelier-carrousel-btn:hover {
    background: var(--burnt-brown);
}

.atelier-prev {
    left: 20px;
}

.atelier-next {
    right: 20px;
}

.atelier-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.atelier-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sand);
    cursor: pointer;
    transition: all 0.2s ease;
}

.atelier-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--burnt-brown);
}

/* ========== CONTACT PAGINA ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.contact-info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--burnt-brown);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-info-card a {
    color: var(--burnt-brown);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-card a:hover {
    color: var(--deep-brown);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep-brown);
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--taupe);
    margin-bottom: 30px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--charcoal);
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--sand);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--burnt-brown);
    box-shadow: 0 0 0 3px rgba(139, 105, 70, 0.1);
}

.submit-btn {
    background: var(--deep-brown);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--burnt-brown);
    transform: translateY(-2px);
}

.form-success {
    background: #dcfce7;
    color: #16a34a;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
}

.form-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
}

.opening-hours p {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 105, 70, 0.1);
}

.opening-hours p span:first-child {
    font-weight: 500;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-warm);
    padding: 10px 20px;
    border-radius: 40px;
    margin-top: 15px;
}

.social-link i {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ========== AANVRAAG PAGINA ========== */
.aanvraag-block {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow);
    padding: 48px;
    margin-top: 20px;
    margin-bottom: 60px;
    transition: all 0.2s;
}

.aanvraag-text {
    flex: 1.2;
}

.aanvraag-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--deep-brown);
    margin-bottom: 18px;
    position: relative;
}

.aanvraag-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--burnt-brown);
}

.aanvraag-text p {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 18px;
}

.aanvraag-btn-wrapper {
    margin-top: 35px;
}

.aanvraag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--deep-brown);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.aanvraag-btn:hover {
    background: var(--burnt-brown);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.aanvraag-image {
    flex: 0.9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.aanvraag-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.aanvraag-image:hover img {
    transform: scale(1.02);
}

.kleuren-sectie {
    margin-top: 20px;
    margin-bottom: 40px;
}

.kleuren-overzicht {
    margin: 28px 0 28px 0;
    background: var(--bg-warm);
    padding: 20px;
    border-radius: 20px;
}

.kleuren-overzicht h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--deep-brown);
    margin-bottom: 16px;
}

.kleuren-instructie {
    font-size: 0.75rem;
    color: var(--taupe);
    margin-bottom: 16px;
    font-style: italic;
}

.kleur-fotos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 20px 0;
}

.kleur-foto-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.kleur-foto-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.kleur-foto-item img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    background-color: #f5ede3;
}

.kleur-foto-item:hover img {
    transform: scale(1.03);
}

.kleur-foto-label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-brown);
    margin-top: 12px;
    margin-bottom: 12px;
}

/* Kleur preview modal */
.kleur-preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.kleur-preview-modal.active {
    display: flex;
}

.kleur-preview-content {
    background: transparent;
    max-width: 80%;
    max-height: 80%;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.kleur-preview-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
}

.kleur-preview-content p {
    margin-top: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.kleur-preview-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: white;
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
    font-weight: bold;
}

.kleur-preview-close:hover {
    color: var(--burnt-brown);
}

/* ========== WINKELWAGEN ========== */
.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #8b6946;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gratis verzending strook */
.free-shipping-bar {
    background: #2c2420;
    color: #d4c4ae;
    text-align: center;
    padding: 12px 0;
    width: 100%;
    position: relative;
    z-index: 99;
}

.free-shipping-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.free-shipping-bar span {
    color: #d4c4ae;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 450;
    letter-spacing: 0.5px;
}

.free-shipping-bar i {
    color: #d4c4ae;
    opacity: 0.6;
    font-size: 0.8rem;
}

/* Verzendopties in winkelwagen */
.shipping-options {
    margin: 20px 0;
    padding: 20px;
    background: var(--bg-warm);
    border-radius: 16px;
}

.shipping-options h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--deep-brown);
    margin-bottom: 12px;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    border: 1px solid transparent;
}

.shipping-option:hover {
    background: rgba(139, 105, 70, 0.05);
}

.shipping-option.selected {
    background: rgba(139, 105, 70, 0.1);
    border-color: var(--burnt-brown);
}

.shipping-option input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--burnt-brown);
}

.shipping-option label {
    flex: 1;
    cursor: pointer;
    font-weight: 500;
    color: var(--charcoal);
}

.shipping-price {
    font-weight: 600;
    color: var(--burnt-brown);
}

.free-shipping-info {
    font-size: 0.75rem;
    color: #16a34a;
    margin-top: 8px;
    padding: 8px;
    background: #dcfce7;
    border-radius: 8px;
    text-align: center;
}

.free-shipping-threshold {
    font-size: 0.7rem;
    color: var(--taupe);
    text-align: center;
    margin-top: 8px;
}

/* ========== WINKELWAGEN PAGINA (extra stijlen) ========== */
.cart-container {
    background: white;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

.cart-items {
    border-bottom: 1px solid #e8ddd0;
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f5ede3;
    align-items: center;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-details {
    flex: 2;
}

.cart-item-details h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    color: #3a322c;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.cart-item-quantity button {
    background: #f5ede3;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cart-item-quantity button:first-child:hover,
.cart-item-quantity button:nth-child(3):hover {
    background: #e8ddd0;
}

.cart-item-quantity button:last-child {
    background: none;
    width: auto;
    color: #b29a7a;
}

.cart-item-quantity button:last-child:hover {
    color: #8b6946;
}

.cart-item-subtotal {
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5ede3;
}

.cart-summary .total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #5c3d2e;
    border-bottom: none;
    margin-top: 10px;
}

.checkout-btn {
    width: 100%;
    background: #5c3d2e;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.2s ease;
}

.checkout-btn:hover {
    background: #8b6946;
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 4rem;
    color: #d4c4ae;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #3a322c;
    margin-bottom: 10px;
}

.btn-primary {
    display: inline-block;
    background: #5c3d2e;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #8b6946;
}

.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #5c3d2e;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .about-image {
        margin: 48px 48px 48px 0;
    }
}

@media (max-width: 968px) {
    .aanvraag-block {
        flex-direction: column;
        padding: 28px;
        gap: 30px;
    }
    .aanvraag-image {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    .aanvraag-text h3::after {
        left: 0;
    }
    .kleur-fotos-grid {
        flex-direction: column;
        align-items: center;
    }
    .kleur-foto-item {
        max-width: 350px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Header */
    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0;
        position: relative;
    }
    .hamburger-btn {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: calc(100% + 20px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(139, 105, 70, 0.15);
        border-bottom: 1px solid rgba(139, 105, 70, 0.15);
        padding: 8px 0;
        z-index: 150;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links > a,
    .nav-item {
        width: 100%;
        padding: 12px 24px;
        border-bottom: 1px solid rgba(139, 105, 70, 0.08);
    }
    .nav-links > a:last-child,
    .nav-item:last-child {
        border-bottom: none;
    }
    .nav-links a::after {
        display: none;
    }

    /* Dropdown in mobile nav - COMPLETE FIX */
    .nav-item > div {
        width: 100%;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        border: none;
        background: var(--bg-warm);
        min-width: 100%;
        margin-top: 8px;
        border-radius: 8px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }
    .dropdown-menu::before {
        display: none;
    }
    .dropdown-menu a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    .nav-item:hover .dropdown-menu {
        display: none !important;
    }
    .nav-item:hover .dropdown-arrow {
        transform: none;
    }
    .dropdown-arrow {
        cursor: pointer;
        padding: 8px;
        margin: -8px;
        transition: transform 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .dropdown-arrow.rotated {
        transform: rotate(180deg);
    }

    /* FORCEER MOBILE DROPDOWN */
    .nav-item .dropdown-menu.open,
    .dropdown-menu.open {
        display: block !important;
    }
    .nav-item .dropdown-menu {
        display: none !important;
    }

    /* Section title */
    .section-title {
        font-size: 1.6rem;
    }

    /* Carousel */
    .carousel-slide img {
        height: 220px;
    }
    .carousel-caption h3 {
        font-size: 1.1rem;
    }
    .carousel-caption p {
        font-size: 0.8rem;
    }
    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    .carousel-container {
        border-radius: 12px;
    }

    /* About */
    .about-section {
        padding: 40px 0;
    }
    .about-wrapper {
        flex-direction: column;
    }
    .about-text {
        padding: 28px 24px;
        order: 2;
    }
    .about-text h2 {
        font-size: 1.6rem;
    }
    .about-image {
        min-height: 240px;
        width: auto;
        margin: 24px 24px 0 24px;
        order: 1;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .footer-links {
        justify-content: center;
        gap: 25px;
    }

    /* Category grid */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 0 48px;
    }
    .category-card h3 {
        font-size: 1.3rem;
    }

    /* Products grid */
    .producten-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    .product-item-image {
        height: 180px;
    }
    .product-item-info {
        padding: 14px;
    }
    .product-item-info h3 {
        font-size: 1rem;
    }
    .product-item-price {
        font-size: 1.1rem;
    }

    /* Modal */
    .modal-content {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .modal-body {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        min-height: auto !important;
    }
    .modal-main-image {
        height: 35vh !important;
        min-height: 35vh !important;
        max-height: 35vh !important;
        background: transparent !important;
        border-radius: 12px !important;
    }
    .modal-main-image img {
        max-height: 35vh !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
    .modal-details {
        flex: 1;
        overflow-y: auto !important;
    }
    .modal-details h2 {
        font-size: 1.4rem;
    }
    .modal-details .modal-price {
        font-size: 1.5rem;
    }
    .modal-add-to-cart {
        margin-top: 20px;
        position: sticky;
        bottom: 0;
        background: var(--deep-brown);
    }
    .modal-close {
        position: fixed !important;
        top: 12px !important;
        right: 12px !important;
        width: 40px !important;
        height: 40px !important;
        background: white !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 24px !important;
        z-index: 10001 !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
        border: none !important;
    }

    /* Title with counter responsive */
    .title-with-counter {
        flex-direction: column;
        gap: 10px;
    }
    .product-counter {
        position: static;
        white-space: normal;
    }

    /* Admin */
    .admin-header-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .admin-form {
        padding: 20px 16px;
    }
    .admin-colors-grid-text {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        padding: 15px;
    }

    /* Atelier */
    .atelier-block {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    .atelier-block.reverse {
        flex-direction: column;
    }
    .atelier-text h3 {
        font-size: 1.4rem;
    }
    .atelier-carrousel-slide img {
        height: 280px;
    }
    .atelier-carrousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 25px;
    }
    .opening-hours p {
        flex-direction: column;
        gap: 5px;
    }

    /* Winkelwagen */
    .cart-item {
        flex-wrap: wrap;
    }
    .cart-item-subtotal {
        text-align: left;
        margin-left: 120px;
    }
    .cart-summary {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .aanvraag-block {
        padding: 20px;
    }
    .aanvraag-btn {
        padding: 12px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    .kleur-foto-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.4rem;
    }
    .logo p {
        font-size: 0.7rem;
    }
    .carousel-slide img {
        height: 180px;
    }
    .carousel-caption {
        padding: 24px 16px 12px;
    }
    .carousel-caption h3 {
        font-size: 1rem;
    }
    .carousel-caption p {
        display: none;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .producten-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .product-item-image {
        height: 150px;
    }
}

/* Medium zoom overlay */
.medium-zoom-overlay {
    z-index: 9999 !important;
}

.medium-zoom-image {
    z-index: 10000 !important;
    cursor: zoom-out;
}

.modal {
    z-index: 1000;
}

.kleur-preview-modal {
    z-index: 2000;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #b29a7a;
}