:root {
    --primary-pink: #ffb3d9;
    --secondary-pink: #ffcce6;
    /* Basisachtergrondkleur van de hele site (header/body/footer) */
    --light-pink: #ffd3e8;
    --pastel-pink: #ffd9ec;
    --gradient-start: #ffb3d9;
    --gradient-end: #ffcce6;
    /* Verticale achtergrondgradient voor de hele pagina (zacht roze → crème/wit) */
    --bg-top: #fde4f1;
    --bg-mid: #ffe6d9;
    --bg-bottom: #fff9f2;
    /* Zachte overlays per sectie (home) */
    --section-hero-overlay-strong: rgba(255, 179, 217, 0.85);
    --section-hero-overlay-soft: rgba(255, 230, 242, 0.75);
    --section-featured-overlay-top: rgba(255, 230, 242, 0.9);
    --section-featured-overlay-bottom: rgba(255, 249, 242, 0.98);
    /* Warme goudtint voor romantische accenten */
    --gold-soft: rgba(255, 215, 170, 0.6);
    --text-dark: #000000;
    --text-light: #000000;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

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

/* Scroll performance optimization - Chrome specific */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Chrome: Improve scroll performance */
    -webkit-font-smoothing: antialiased;
}

/* Chrome-specific: Aggressive scroll optimizations */
@supports (-webkit-appearance: none) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        /* Chrome: avoid forcing a global compositing layer */
    }
    
    /* Chrome: Disable backdrop-filter completely for better scroll performance */
    .glass-card,
    .main-header,
    .main-footer,
    .announcement-banner,
    .accessibility-tools {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
}

body {
    /* Enable hardware acceleration */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent layout shifts */
    text-rendering: optimizeLegibility;
    /* Improve scroll performance */
    overscroll-behavior-y: contain;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    /* Verticale achtergrondgradient: zacht roze → crème/wit
       zodat de pagina naar beneden toe steeds lichter wordt */
    background:
        linear-gradient(
            180deg,
            var(--bg-top) 0%,
            var(--bg-mid) 45%,
            var(--bg-bottom) 100%
        );
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 100% 140%;
    /* Chrome performance optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Improve scroll performance */
    overscroll-behavior-y: contain;
    /* Licht bewegende gradient voor avondgevoel (heel subtiel) */
    animation: duskGradient 40s ease-in-out infinite alternate;
}

/* Page load fade-in + spacing below sticky header */
.main-content {
    animation: fadeIn 0.5s ease both;
    /* Universeel: net genoeg ruimte onder de header, maar niet te veel lucht */
    padding-top: 3.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
    
    /* Op mobiel nog iets compacter onder de header */
    .main-content {
        padding-top: 3rem;
    }
}

/* Glassmorphism - Chrome Optimized: NO backdrop-filter */
.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 30px rgba(255, 179, 217, 0.45);
    padding: 2rem;
    /* Specific transitions instead of 'all' for better performance */
    transition: transform 0.2s ease;
    /* CSS containment for better performance */
    contain: layout style paint;
    /* Chrome: isolate compositing layer */
    isolation: isolate;
    /* Chrome: content-visibility for better scroll performance */
    content-visibility: auto;
}

.glass-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 0 38px rgba(255, 179, 217, 0.65);
    will-change: transform;
}

/* Header - Chrome Optimized: NO backdrop-filter */
.main-header {
    /* Laat de globale pagina-gradient visueel doorlopen; lichte overlay voor leesbaarheid */
    background:
        linear-gradient(
            180deg,
            rgba(253, 228, 241, 0.97) 0%,
            rgba(253, 228, 241, 0.92) 100%
        );
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Chrome performance optimization */
    transform: translate3d(0, 0, 0);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
    /* CSS containment */
    contain: layout style paint;
    /* Chrome: isolate compositing layer */
    isolation: isolate;
    /* Chrome: will-change only when needed */
    will-change: auto;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 179, 217, 0.08);
}

@media (max-width: 767px) {
    /* Don't clip the fixed mobile menu panel (it's a descendant of header) */
    .main-header {
        padding: 1rem 0;
        contain: layout style;
    }
    
    .logo-image {
        height: 45px;
        max-width: 140px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.6rem;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: var(--text-dark) !important;
    padding: 2rem 12.5rem;
    border-radius: 150px;
    text-decoration: none;
    font-weight: 600;
    font-size: 2.0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.55);
    white-space: nowrap;
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    background: #1EBE5A;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 26px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn .whatsapp-icon {
    width: 20px;
    height: 20px;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.whatsapp-text {
    display: none;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .whatsapp-text {
        display: inline;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: inline-block;
    padding: 0.5rem 0;
    position: relative;
    transform: translate3d(0, 0, 0);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-dark);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-dark);
}

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

.nav-menu a.whatsapp-btn::after {
    display: none;
}

.nav-menu .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    min-width: 140px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        z-index: 1002;
        position: relative;
        padding: 6px;
    }
    
    .navbar {
        flex-wrap: wrap;
        position: relative;
        gap: 1rem;
    }
    
    .logo {
        order: 1;
        flex: 1;
        min-width: 0;
    }
    
    /* Mobile menu overlay (below header so logo + hamburger stay visible) */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        min-height: 0;
        max-height: 100vh;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 230, 242, 0.95));
        padding: 0;
        padding-top: 4rem;
        gap: 0;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 179, 217, 0.12);
        border: none;
        border-left: 1px solid rgba(255, 179, 217, 0.2);
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior-y: contain;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        flex-shrink: 0;
        border-bottom: 1px solid rgba(255, 179, 217, 0.2);
    }
    
    .nav-menu li:first-child {
        padding-top: 0;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-dark);
        transition: background-color 0.2s ease;
        border-bottom: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(255, 179, 217, 0.15);
        transform: none;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu li:last-child {
        margin-top: 0;
        padding-top: 0;
        border-top: 1px solid rgba(255, 179, 217, 0.2);
        border-bottom: none;
        padding-bottom: 0.5rem;
    }
    
    .nav-menu .whatsapp-btn {
        min-height: 44px;
        padding: 0.6rem 1rem;
        justify-content: center;
        font-size: 0.95rem;
    }
    
    /* Mobile: Better spacing for sections */
    section {
        padding: 2.5rem 0;
    }
    
    /* Mobile: Better hero section */
    .hero-section {
        min-height: 50vh;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }
    
    /* Mobile: Better glass cards */
    .glass-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Mobile: Better products grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    /* Mobile: Better reviews grid */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    /* Mobile: Better forms */
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    form button[type="submit"],
    form .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        width: 100%;
    }
    
    /* Mobile: Touch-friendly buttons site-wide */
    .btn,
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    /* Mobile: Better footer */
    .main-footer {
        padding: 2rem 0 3rem;
        margin-top: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section ul li a {
        padding: 0.5rem 0;
        min-height: 44px;
        line-height: 1.4;
        display: flex;
        align-items: center;
    }
    
    /* Mobile: Catalogue filters touch-friendly */
    .catalogue-filters {
        margin: 1.5rem 0;
    }
    
    .filters-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-group input,
    .filter-group select {
        min-height: 44px;
        font-size: 16px;
    }
    
    /* Mobile: FAQ accordion touch-friendly */
    .faq-question {
        min-height: 44px;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1rem;
        font-size: 0.95rem;
    }
    
    .faq-item {
        padding: 0;
    }
    
    /* Mobile: Bottom bar – cookie en floating button (geen overlap) */
    .floating-book-btn {
        bottom: 2rem;
        right: 1rem;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 30px;
        min-height: 44px;
    }
    
    /* Mobile: Better headings */
    h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* Mobile: Better contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 1.5rem 0;
    }
    
    /* Mobile: Better product detail */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 1.5rem 0;
    }
    
    /* Mobile: Better newsletter form */
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Mobile: Cookie consent – same horizontal layout as PC */
    .cookie-consent {
        width: calc(100% - 1.5rem);
        max-width: none;
        padding: 1rem 1.25rem;
        bottom: 1rem;
    }
    
    .cookie-consent-btn {
        min-height: 44px;
        padding: 0.7rem 1.25rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 50vh;
        padding: 2rem 0;
    }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Zachte overlay met roze/goudaccenten die naar beneden toe transparant wordt
       zodat de globale pagina-gradient er vloeiend doorheen loopt */
    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(255, 230, 245, 0.95) 0,
            transparent 55%
        ),
        radial-gradient(
            circle at 85% 100%,
            rgba(255, 215, 186, 0.85) 0,
            transparent 55%
        ),
        linear-gradient(
            180deg,
            var(--section-hero-overlay-strong) 0%,
            var(--section-hero-overlay-soft) 55%,
            transparent 100%
        );
    opacity: 0.98;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    will-change: opacity;
    animation: gentlePulse 18s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - glass style */
.btn {
    position: relative;
    display: inline-block;
    padding: 0.7rem 4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    color: var(--text-dark);
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85),
        rgba(255, 255, 255, 0.35)
    );
    opacity: 0.0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.btn span,
.btn strong,
.btn b {
    position: relative;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.9);
}

.btn:hover::before {
    opacity: 1;
}

/* Tap/click feedback – mobile & desktop */
.btn:active {
    transform: scale(0.98) translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--white), var(--light-pink));
    color: var(--text-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: #ffffff;
}

.btn-danger {
    background: #f44336;
    color: var(--text-dark);
    border-color: #f44336;
}

.btn-danger:hover {
    background: #d32f2f;
    border-color: #d32f2f;
    color: var(--text-dark);
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.status-pending {
    background: #ff9800;
    color: var(--text-dark);
}

.status-badge.status-approved {
    background: #4caf50;
    color: var(--text-dark);
}

.status-badge.status-cancelled_admin,
.status-badge.status-cancelled_user {
    background: #f44336;
    color: var(--text-dark);
}

.status-badge.status-completed {
    background: #2196f3;
    color: var(--text-dark);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    /* CSS containment for better scroll performance */
    contain: layout style;
    /* Chrome: content-visibility for better scroll performance */
    content-visibility: auto;
}

.product-card {
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.product-card-img-wrap {
    display: block;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.product-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.2s ease;
    /* Chrome performance optimization */
    contain: layout style paint;
}

.product-card:hover img {
    transform: scale(calc(var(--card-zoom, 1) * 1.03));
    will-change: transform;
}

/* Product card tap feedback (mobile) */
.product-card:active img {
    transform: scale(calc(var(--card-zoom, 1) * 1.02));
}

.product-placeholder {
    width: 100%;
    height: 300px;
    background: var(--light-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--text-light);
}

.product-info h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--glass-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid var(--glass-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 179, 217, 0.25);
}

/* Sections */
section {
    padding: 4rem 0;
    /* CSS containment for better scroll performance */
    contain: layout style;
    /* Chrome: content-visibility for off-screen sections */
    content-visibility: auto;
}

/* Home sections – zachte nuances roze/goud per blok met vloeiende overgangen */
.hero-section {
    /* Extra ruimte zodat de gradient mooi kan ademen */
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.featured-products {
    position: relative;
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    /* Semi-transparante overlay over de globale gradient:
       boven iets meer roze, naar beneden toe meer crème/wit */
    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(255, 223, 210, 0.75) 0,
            transparent 55%
        ),
        linear-gradient(
            180deg,
            var(--section-featured-overlay-top) 0%,
            var(--section-featured-overlay-bottom) 100%
        );
}

.featured-products::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Heel subtiel geometrisch/goudaccent voor een luxe, romantische sfeer */
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 170, 0.14) 0, transparent 55%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 170, 0.16) 0, transparent 55%);
    pointer-events: none;
    mix-blend-mode: soft-light;
    opacity: 0.85;
}

/* Headings - Montserrat */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Section titles – scroll-in animation */
.section-title-animate {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title-animate.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.text-center {
    text-align: center;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    /* CSS containment for better scroll performance */
    contain: layout style;
    /* Chrome: content-visibility for better scroll performance */
    content-visibility: auto;
}

.review-card {
    text-align: center;
}

.review-rating {
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 0 2px;
}

.star.filled {
    opacity: 1;
}

.star:not(.filled) {
    opacity: 0.3;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
    display: inline-block;
    line-height: 1;
}

.rating-input .star-label:hover,
.rating-input .star-label:hover ~ .star-label {
    color: #ffd700;
    transform: scale(1.1);
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked ~ .star-label ~ .star-label {
    color: #ffd700;
}

.rating-input input[type="radio"]:checked ~ .star-label {
    transform: scale(1.2);
}

.review-item {
    margin-bottom: 1.5rem;
    position: relative;
    padding-top: 1rem;
}

.review-item .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review-item .review-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.review-item .review-author-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

.review-date-small {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
}

.review-comment {
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-dark);
}

.review-author {
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.review-date-small {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    margin-top: 0.25rem;
}

.review-source-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.google-badge {
    background: #4285F4;
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.review-card {
    position: relative;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    /* Removed backdrop-filter for Chrome performance */
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    /* Specific transitions for better performance */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    /* Chrome performance optimization */
    transform: translate3d(0, 0, 0);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-pink);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(255, 179, 217, 0.25);
    background: rgba(255, 255, 255, 1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(0, 0, 0, 0.25);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Footer */
.main-footer {
    /* Zachte voortzetting van de globale gradient, zodat de onderkant niet \"breekt\" */
    background:
        linear-gradient(
            180deg,
            rgba(255, 244, 250, 0.97) 0%,
            rgba(255, 217, 235, 0.99) 100%
        );
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    /* Chrome: isolate compositing layer */
    isolation: isolate;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-opening-hours-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.footer-opening-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-opening-hours-list li span:first-child {
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-light);
}

.footer-map {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 10px;
    display: block;
}

.google-business-link {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-business-link:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.social-link img {
    display: block;
    width: 22px;
    height: 22px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    background: var(--glass-bg);
}

.newsletter-form button {
    /* use global .btn styles; only spacing tweaks here */
    margin-left: 0.5rem;
}

/* Floating Book Button */
.floating-book-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--white), var(--light-pink));
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 1rem 2rem;
    box-shadow: 0 0 26px rgba(255, 179, 217, 0.55);
    cursor: pointer;
    font-weight: 600;
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: fadeIn 0.5s ease;
    /* Chrome performance optimization */
    transform: translate3d(0, 0, 0);
    /* CSS containment */
    contain: layout style paint;
}

.floating-book-btn:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 0 34px rgba(255, 179, 217, 0.75);
    will-change: transform;
}

.floating-book-btn:active {
    transform: scale(0.97);
}

/* Subtle animation preference hook – currently only initial fade-in */
@media (prefers-reduced-motion: no-preference) {
    .floating-book-btn {
        animation: fadeIn 0.5s ease both;
    }
}

/* Announcements */
.announcements-carousel {
    position: relative;
}

.announcement-banner {
    /* Zachte, bijna transparante achtergrond zodat de pagina-gradient zichtbaar blijft */
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 243, 249, 0.9) 100%
    );
    /* Chrome: Disable backdrop-filter completely */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    /* Chrome performance optimization */
    transform: translate3d(0, 0, 0);
    /* Chrome: isolate compositing layer */
    isolation: isolate;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.announcement-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.announcement-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Error Pages */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-content h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Animations - Optimized for performance */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Extra animations – mobile & desktop */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-24px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(24px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale3d(0.95, 0.95, 1);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Product Detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.gallery-main {
    position: relative;
    min-height: 400px;
}

.gallery-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 15px;
}

.gallery-placeholder {
    width: 100%;
    min-height: 400px;
    background: var(--light-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--text-light);
}

.gallery-placeholder-fallback {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gallery-placeholder-fallback.visible {
    display: flex;
}

.gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-thumbnails .thumbnail {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--primary-pink);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

/* Catalogue Filters */
.catalogue-filters {
    margin: 2rem 0;
}

.filters-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-group input[type="text"],
.filter-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    transform: translate3d(0, 0, 0);
}

.filter-group input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.filter-group input[type="text"]:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-pink);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(255, 179, 217, 0.25);
    background: rgba(255, 255, 255, 1);
}

.filter-group input[type="text"]:hover,
.filter-group select:hover {
    border-color: rgba(0, 0, 0, 0.25);
}

.filter-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.filters-form .btn-clear,
.filters-form .btn-filter {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.product-price {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.5rem 0 0;
}

/* About page */
.about-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 240, 248, 0.5) 50%, rgba(255, 230, 242, 0.4) 100%);
    padding: 2rem 0 4rem;
}
.about-page .container {
    max-width: 900px;
}
.about-page h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.about-page .about-content {
    padding: 2.25rem 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.75;
}
.about-page .about-content p {
    margin-bottom: 1.25rem;
}
.about-page .about-content p:last-child {
    margin-bottom: 0;
}
.about-page .about-owner {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem;
}
.about-page .about-owner-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.about-page .about-owner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
}
.about-page .about-owner-text h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.about-page .about-owner-text p {
    line-height: 1.75;
    margin: 0;
}
@media (max-width: 767px) {
    .about-page .about-owner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
    }
    .about-page .about-owner-img-wrap {
        max-width: 280px;
        margin: 0 auto;
    }
}

.footer-contact-item {
    margin: 0.5rem 0 0;
}
.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}
.footer-contact-item a:hover {
    text-decoration: underline;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: var(--text-dark);
}

.alert-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: var(--text-dark);
}

/* Responsive: 767px (same breakpoint as main mobile block) */
@media (max-width: 767px) {
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .footer-map iframe {
        height: 250px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

@media (max-width: 767px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: left;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--text-dark);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--text-dark);
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}

/* Cookie consent – compact card above footer elements, smooth slide-in */
.cookie-consent {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translate(-50%, 120%);
    width: calc(100% - 2rem);
    max-width: 640px;
    z-index: 9998;
    padding: 1rem 1.25rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 230, 242, 0.96));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 179, 217, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease,
                visibility 0s linear 0.5s;
    will-change: transform;
}

.cookie-consent.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease 0.08s,
                visibility 0s;
}

.cookie-consent.is-hidden {
    transform: translate(-50%, 120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                visibility 0s linear 0.4s;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    flex: 1;
    min-width: 0;
}

.cookie-consent-text a {
    color: var(--primary-pink);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-text a:hover {
    color: var(--gradient-end);
}

.cookie-consent-btn {
    flex-shrink: 0;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-pink), var(--gradient-end));
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(255, 179, 217, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-consent-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(255, 179, 217, 0.45);
}

.cookie-consent-btn:active {
    transform: scale(0.98);
}

