/* 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;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.45) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: var(--heading-1);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: var(--font-size-intro);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 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: var(--shadow-sm), var(--shadow-md);
    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;
}

@media (hover: hover) and (pointer: fine) {
    .btn:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-sm), 0 6px 20px rgba(0, 0, 0, 0.08);
        border-color: rgba(0, 0, 0, 0.3);
    }

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

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

.btn-primary {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.btn-primary:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

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

.btn-outline:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

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

.btn-secondary:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.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: 2.25rem;
    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;
}

.product-card.glass-card {
    overflow: visible;
    contain: layout style;
}

.product-card > a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card > a:hover .product-info h3 {
    color: var(--text-dark);
}

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

.product-card-img,
.product-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.2s ease;
    object-position: var(--card-focus-x, 50%) var(--card-focus-y, 50%);
    transform: scale(var(--card-zoom, 1));
    transform-origin: var(--card-focus-x, 50%) var(--card-focus-y, 50%);
    contain: layout style paint;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-card-img,
    .product-card:hover img {
        transform: scale(calc(var(--card-zoom, 1) * 1.03));
    }
}

.product-card:active .product-card-img,
.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.4rem;
    flex-wrap: wrap;
    margin: 0.35rem 0 0.75rem;
    min-height: 1.6rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    background: var(--surface-muted);
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid var(--border-subtle);
    line-height: 1.35;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover .tag {
        background: var(--surface);
        border-color: rgba(0, 0, 0, 0.35);
    }
}

.product-detail .tag {
    font-size: 0.8rem;
    padding: 0.28rem 0.85rem;
}

/* 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 – neutraal zwart-wit */
.hero-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.featured-products {
    position: relative;
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
    background:
        linear-gradient(
            180deg,
            var(--section-featured-overlay-top) 0%,
            var(--section-featured-overlay-bottom) 100%
        );
}

.featured-products::before {
    content: none;
}

/* 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: var(--heading-2);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

/* 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;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: var(--label-size);
    letter-spacing: var(--label-spacing);
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.65);
}

.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(0, 0, 0, 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 {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3rem 0 1rem;
    isolation: isolate;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-tagline {
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.72);
}

.footer-subheading {
    margin: 1.25rem 0 0.75rem;
    font-size: 1rem;
}

.footer-newsletter-intro {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.72);
}

.footer-section {
    min-width: 0;
    max-width: 100%;
}

.footer-section-newsletter {
    min-width: 0;
}

@media (min-width: 1025px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1.1fr minmax(280px, 1.1fr);
    }
}

.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;
}

.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;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.footer-bottom > p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links a + a::before {
    content: "·";
    margin: 0 0.65rem;
    opacity: 0.45;
    pointer-events: none;
}

.footer-newsletter-embed {
    width: 100%;
    min-width: 0;
}

.footer-newsletter-embed .ml-form-embedContainer,
.footer-newsletter-embed .ml-form-embedWrapper,
.footer-newsletter-embed .ml-form-embedBody,
.footer-newsletter-embed .ml-form-embedContent {
    background: transparent !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.footer-newsletter-embed .ml-form-align-center {
    text-align: left;
}

.footer-newsletter-embed .ml-form-embedWrapper.embedForm {
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
}

.footer-newsletter-embed .ml-form-embedContent h4,
.footer-newsletter-embed .ml-form-embedContent p {
    display: none;
}

.footer-newsletter-embed form.ml-block-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.65rem;
}

.footer-newsletter-embed .ml-form-formContent,
.footer-newsletter-embed .ml-form-fieldRow,
.footer-newsletter-embed .ml-field-group,
.footer-newsletter-embed .ml-form-recaptcha,
.footer-newsletter-embed .ml-form-embedSubmit {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
    box-sizing: border-box;
}

.footer-newsletter-embed .ml-form-formContent {
    margin: 0 !important;
}

.footer-newsletter-embed .ml-form-fieldRow.ml-last-item {
    margin-bottom: 0 !important;
}

.footer-newsletter-embed input[type="email"] {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
    padding: 10px 14px !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    font-family: inherit !important;
    font-size: 0.92rem !important;
}

.footer-newsletter-embed input[type="email"]:focus {
    outline: none !important;
    border-color: var(--primary-pink) !important;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25) !important;
}

.footer-newsletter-embed .ml-form-recaptcha {
    container-type: inline-size;
    overflow: hidden;
    height: calc(78px * (100cqw / 304px));
}

.footer-newsletter-embed .ml-form-recaptcha .g-recaptcha {
    width: 304px !important;
    height: 78px;
    transform: scale(calc(100cqw / 304px));
    transform-origin: 0 0;
}

.footer-newsletter-embed .ml-form-embedSubmit {
    display: block !important;
}

.footer-newsletter-embed .ml-form-embedSubmit button.primary {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0.6rem 1rem !important;
    border: none !important;
    border-radius: 10px !important;
    background: #111111 !important;
    color: #ffffff !important;
    font-family: inherit !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    box-shadow: var(--shadow-sm) !important;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .footer-newsletter-embed .ml-form-embedSubmit button.primary:hover {
        box-shadow: var(--shadow-pink) !important;
    }
}

.footer-newsletter-error {
    margin: 0.65rem 0 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #b42318;
}

/* MailerLite popup above header, cookie banner, and floating button */
iframe[src*="mailerlite"],
.ml-overlay,
.ml-form-overlay,
body > .ml-form-modalContainer {
    z-index: 1000000 !important;
}

@media (max-width: 767px) {
    .footer-section-newsletter {
        grid-column: 1 / -1;
    }

    .footer-opening-hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .footer-map iframe {
        height: 180px;
    }

    .main-footer .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .floating-book-btn {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
        max-width: calc(100% - 2rem);
        text-align: center;
    }

    .cookie-consent.is-visible ~ .floating-book-btn,
    body:has(.cookie-consent.is-visible) .floating-book-btn {
        bottom: 6.5rem;
    }

    .content-page {
        padding: 2rem 0 3rem;
    }

    .content-page .container,
    .legal-page .legal-content {
        padding-left: 0;
        padding-right: 0;
    }

    .announcement-banner {
        font-size: 0.9rem;
        padding: 0.75rem 2.25rem 0.75rem 1rem;
    }
}

.footer-credit {
    text-align: center;
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.75;
    color: rgba(0, 0, 0, 0.72);
}

.footer-credit a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.22);
    text-underline-offset: 0.18em;
    text-decoration-thickness: 1px;
    transition: text-decoration-color 0.25s ease, opacity 0.25s ease;
}

.footer-credit a:hover {
    text-decoration-color: rgba(0, 0, 0, 0.95);
    opacity: 1;
}

/* 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: var(--surface);
    color: var(--text-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    box-shadow: var(--shadow-sm), var(--shadow-pink);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.92rem;
    z-index: 999;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    animation: fadeIn 0.5s ease;
    contain: layout style paint;
}

@media (hover: hover) and (pointer: fine) {
    .floating-book-btn:hover {
        border-color: rgba(0, 0, 0, 0.35);
        box-shadow: var(--shadow-sm), 0 6px 24px rgba(0, 0, 0, 0.22);
    }
}

.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 {
    background: #ffffff;
    /* 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;
}

/* Maintenance page (503 standalone) */
.maintenance-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    position: relative;
    overflow-x: hidden;
    background:
        linear-gradient(
            180deg,
            var(--bg-top) 0%,
            var(--bg-mid) 45%,
            var(--bg-bottom) 100%
        );
}

.maintenance-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.maintenance-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.maintenance-glow-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -80px;
    background: rgba(0, 0, 0, 0.55);
}

.maintenance-glow-2 {
    width: 360px;
    height: 360px;
    right: -60px;
    bottom: -80px;
    background: rgba(0, 0, 0, 0.06);
}

.maintenance-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    animation: maintenanceFadeUp 0.7s ease both;
}

.maintenance-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 2.75rem 2.5rem 2.5rem;
    text-align: center;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.28),
        0 8px 24px rgba(0, 0, 0, 0.04);
}

.maintenance-brand {
    margin-bottom: 1.5rem;
}

.maintenance-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.maintenance-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    color: var(--primary-pink);
}

.maintenance-icon svg {
    width: 100%;
    height: 100%;
}

.maintenance-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.35);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.72);
}

.maintenance-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.15rem);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.maintenance-message {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.78);
    margin-bottom: 0.75rem;
}

.maintenance-note {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.58);
    margin-bottom: 2rem;
}

.maintenance-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.maintenance-contact-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.22);
    border-radius: 18px;
    padding: 1rem 1.1rem;
}

.maintenance-contact-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.45rem;
}

.maintenance-contact-item p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
    color: var(--text-dark);
}

.maintenance-contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.maintenance-contact-item a:hover {
    color: rgba(0, 0, 0, 0.65);
}

.maintenance-hours {
    background: rgba(245, 245, 245, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
}

.maintenance-hours ul {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
}

.maintenance-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
    padding: 0.2rem 0;
    color: rgba(0, 0, 0, 0.78);
}

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
}

.maintenance-btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.maintenance-btn-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
}

.maintenance-btn-home {
    min-width: 160px;
}

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

@media (max-width: 767px) {
    .maintenance-card {
        padding: 2rem 1.35rem 1.75rem;
        border-radius: 24px;
    }

    .maintenance-contact-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-actions {
        flex-direction: column;
    }

    .maintenance-actions .btn {
        width: 100%;
    }
}

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

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

.product-gallery.glass-card,
.product-info.glass-card {
    padding: 1.25rem;
}

.product-detail .product-info h1 {
    font-size: var(--heading-2);
    margin-top: 0;
}

.gallery-main {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--surface-muted);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: var(--surface-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.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;
}

.thumbnail-btn {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    background: none;
    cursor: pointer;
    opacity: 0.65;
    transition: opacity 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
    flex-shrink: 0;
}

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

.gallery-thumbnails .thumbnail {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    object-fit: cover;
    display: block;
}

.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;
    font-size: var(--label-size);
    letter-spacing: var(--label-spacing);
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.65);
}

.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(0, 0, 0, 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;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    color: rgba(0, 0, 0, 0.7);
}

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

