/* adanapelet — merged from mirror index + product + iletisim inline styles (018 parity) */

:root {
            --primary: #4A5D4A;
            --primary-dark: #3A4A3A;
            --secondary: #1C2526;
            --accent: #D4AF37;
            --green: #4A5D4A;
            --green-dark: #3A4A3A;
            --bg-light: #FAFAF8;
            --bg-cream: #F5F3EF;
            --text-dark: #1A1A1A;
            --text-muted: #6B6B6B;
            --white: #FFFFFF;
            --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
            --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
            --motion-duration-ui: 220ms;
            --motion-duration-entrance: 480ms;
            /* Sticky header + nav; JS syncHeaderOffset() overrides with measured px */
            --ap-header-offset: 5.75rem;
            --ap-bottom-nav-offset: 0px;
        }

        /* Contact widget brand: FAB + action icons always use theme green */
        .deamon-contact-widget {
            --deamon-cw-color: var(--green);
        }

        .deamon-contact-widget-fab,
        .deamon-contact-widget-action-icon {
            background: var(--green) !important;
        }

        .deamon-contact-widget-fab {
            color: var(--white) !important;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Header */
        #header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        }

        #header.scrolled {
            box-shadow: 0 2px 16px rgba(0,0,0,0.1);
        }

        .header-top {
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            line-height: 0;
        }

        .logo-img {
            display: block;
            height: 36px;
            width: auto;
            max-width: min(240px, 52vw);
            object-fit: contain;
        }

        .logo-img--footer {
            height: 42px;
            max-width: min(220px, 70vw);
            filter: brightness(0) invert(1);
            opacity: 0.92;
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .header-contact a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 13px;
            transition: all 0.3s;
        }

        .header-contact a i {
            width: 32px;
            height: 32px;
            background: var(--bg-cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--green);
            transition: all 0.3s;
        }

        .header-contact a:hover {
            color: var(--primary);
        }

        .header-contact a:hover i {
            background: var(--green);
            color: var(--white);
            transform: scale(1.1);
        }

        /* Primary navigation (inside sticky header) */
        #header > nav {
            background: var(--green);
        }

        #header nav ul {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 5px;
        }

        #header nav a {
            display: block;
            padding: 11px 22px;
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }

        #header nav a::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 25px;
            height: 2px;
            background: var(--accent);
            transition: transform 0.3s ease;
        }

        #header nav a:hover::before,
        #header nav a.active::before {
            transform: translateX(-50%) scaleX(1);
        }

        #header nav a:hover,
        #header nav a.active {
            color: var(--white);
            background: rgba(255,255,255,0.05);
        }

        #header nav li.has-sub {
            position: relative;
        }

        #header nav li.has-sub > .nav-label,
        #header nav li.has-sub > a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
        }

        #header nav .nav-label {
            display: block;
            padding: 11px 22px;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
            font-size: 14px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
            user-select: none;
        }

        #header nav .nav-label::before {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 25px;
            height: 2px;
            background: var(--accent);
            transition: transform 0.3s ease;
        }

        #header nav li.has-sub:hover > .nav-label,
        #header nav li.has-sub:focus-within > .nav-label,
        #header nav li.has-sub.is-open > .nav-label,
        #header nav li.has-sub.is-active > .nav-label {
            color: var(--white);
            background: rgba(255,255,255,0.05);
        }

        #header nav li.has-sub:hover > .nav-label::before,
        #header nav li.has-sub:focus-within > .nav-label::before,
        #header nav li.has-sub.is-open > .nav-label::before,
        #header nav li.has-sub.is-active > .nav-label::before,
        #header nav li.has-sub.is-active > a::before {
            transform: translateX(-50%) scaleX(1);
        }

        #header nav .nav-chevron {
            font-size: 10px;
            opacity: 0.75;
            transition: transform 0.3s ease;
        }

        #header nav li.has-sub:hover > .nav-label .nav-chevron,
        #header nav li.has-sub:focus-within > .nav-label .nav-chevron,
        #header nav li.has-sub.is-open > .nav-label .nav-chevron,
        #header nav li.has-sub:hover > a .nav-chevron,
        #header nav li.has-sub:focus-within > a .nav-chevron,
        #header nav li.has-sub.is-open > a .nav-chevron {
            transform: rotate(180deg);
        }

        #header nav li.has-sub > ul {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            min-width: 260px;
            list-style: none;
            margin: 0;
            padding: 12px 8px;
            background: var(--white);
            border: 1px solid var(--bg-cream);
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            z-index: 100;
            flex-direction: column;
            gap: 4px;
        }

        #header nav li.has-sub:hover > ul,
        #header nav li.has-sub:focus-within > ul,
        #header nav li.has-sub.is-open > ul {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        #header nav li.has-sub > ul a {
            padding: 16px 22px;
            color: var(--green);
            background: transparent;
            font-size: 12px;
            letter-spacing: 1.2px;
            line-height: 1.5;
            text-transform: uppercase;
            white-space: nowrap;
            border-radius: 8px;
        }

        #header nav li.has-sub > ul a::before {
            display: none;
        }

        #header nav li.has-sub > ul a:hover,
        #header nav li.has-sub > ul a.active {
            color: var(--green-dark);
            background: var(--bg-cream);
        }

        #header nav li.has-sub > ul li {
            width: 100%;
        }

        /* Intro band (below fullscreen slider — no longer first-viewport hero) */
        .hero {
            min-height: 0;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, #E8E6E0 100%);
            position: relative;
            overflow: hidden;
            padding: 64px 0 56px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 64px;
            background: linear-gradient(to top, var(--white), transparent);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: fadeInUp 1s ease;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(74, 93, 74, 0.12);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
            color: var(--green);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .hero-badge i {
            font-size: 10px;
            animation: pulse 2s infinite;
        }

        .hero-text h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            color: var(--secondary);
            line-height: 1.15;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .hero-text h1 span {
            color: var(--primary);
            position: relative;
        }

        .hero-text h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(184, 134, 11, 0.2);
            z-index: -1;
        }

        .hero-text p {
            font-size: 17px;
            color: var(--text-muted);
            margin-bottom: 28px;
            font-weight: 300;
            line-height: 1.7;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 38px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--green);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--green-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(74, 93, 74, 0.28);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--white);
            transform: translateY(-3px);
        }

        .hero-visual {
            position: relative;
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        .hero-image-wrapper {
            position: relative;
            background: linear-gradient(145deg, #E8E4DC 0%, #D4D0C8 100%);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 24px 48px rgba(0,0,0,0.1);
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100px;
            height: 100px;
            border: 3px solid var(--accent);
            border-radius: 20px;
            opacity: 0.5;
        }

        .hero-placeholder {
            width: 100%;
            aspect-ratio: 1 / 1;
            max-height: 420px;
            background: linear-gradient(180deg, #C4BFB5 0%, #A89F91 100%);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-placeholder::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .hero-placeholder i {
            font-size: 80px;
            margin-bottom: 20px;
            opacity: 0.9;
            animation: float 3s ease-in-out infinite;
        }

        .hero-placeholder span {
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero-placeholder--has-image {
            background: transparent;
        }

        .hero-placeholder--has-image::before {
            display: none;
        }

        .hero-placeholder img,
        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: inherit;
        }

        .floating-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: var(--white);
            padding: 20px 25px;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: float 4s ease-in-out infinite;
        }

        .floating-badge i {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
        }

        .floating-badge div strong {
            display: block;
            font-size: 22px;
            color: var(--secondary);
        }

        .floating-badge div span {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Features */
        .features {
            padding: 120px 50px;
            background: var(--white);
        }

        .section-header {
            position: static;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 70px;
        }

        .section-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            color: var(--secondary);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 17px;
            line-height: 1.8;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            padding: 45px 35px;
            background: var(--bg-light);
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: var(--white);
            border-color: var(--bg-cream);
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 32px;
            color: var(--white);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-size: 22px;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Mission */
        .mission {
            padding: 120px 50px;
            background: var(--bg-cream);
            position: relative;
            overflow: hidden;
        }

        .mission::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, rgba(74, 93, 74, 0.04) 0%, transparent 100%);
        }

        .mission-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 100px;
            align-items: center;
            position: relative;
        }

        .mission-image {
            position: relative;
        }

        .mission-placeholder {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(145deg, #B8B4AC 0%, #9A958C 100%);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .mission-placeholder i {
            font-size: 60px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .mission-placeholder span {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .mission-placeholder--has-image {
            background: transparent;
            overflow: hidden;
        }

        .mission-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: inherit;
        }

        .mission-text h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 44px;
            color: var(--secondary);
            margin-bottom: 30px;
            font-weight: 600;
        }

        .mission-text p {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 1.9;
        }

        .mission-list {
            list-style: none;
            margin: 30px 0;
        }

        .mission-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 18px;
            font-size: 16px;
            color: var(--text-dark);
        }

        .mission-list li i {
            width: 24px;
            height: 24px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Contact */
        .contact {
            padding: 120px 50px;
            background: var(--white);
        }

        .contact-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-box {
            padding: 50px;
            background: var(--bg-light);
            border-radius: 20px;
            border: 1px solid var(--bg-cream);
        }

        .contact-box h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 35px;
            font-weight: 600;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 28px;
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: var(--green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact-item div strong {
            display: block;
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-item a,
        .contact-item p {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 17px;
            line-height: 1.6;
            margin: 0;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 18px 30px;
            background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
            color: var(--white);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s ease;
        }

        .social-link:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(225, 48, 108, 0.4);
        }

        .social-link i {
            font-size: 24px;
        }

        /* Footer */
        footer {
            background: var(--secondary);
            padding: 48px 50px 40px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 32px 48px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            line-height: 0;
        }

        footer p {
            color: rgba(255,255,255,0.62);
            font-size: 14px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-copy {
            margin: 0;
            max-width: 420px;
        }

        .footer-nav {
            flex: 1 1 320px;
            min-width: 0;
        }

        .footer-nav-list {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
            gap: 10px 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-nav-list li {
            margin: 0;
        }

        .footer-nav-list a {
            display: inline-block;
            color: rgba(255,255,255,0.78);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.4px;
            line-height: 1.5;
            transition: color 0.3s ease;
        }

        .footer-nav-list a:hover,
        .footer-nav-list a:focus-visible {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 52px;
            }
        }

        @media (max-width: 992px) {
            .hero-content,
            .mission-content,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .hero-text h1 {
                font-size: 44px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            #header nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 28px;
            }

            .footer-brand {
                align-items: center;
            }

            .footer-nav-list {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 10px;
                padding: 10px 15px;
            }

            .header-contact {
                gap: 12px;
            }

            .header-contact a {
                font-size: 13px;
            }

            .header-contact a i {
                width: 30px;
                height: 30px;
            }

            .logo-img {
                height: 31px;
                max-width: min(180px, 48vw);
            }

            .logo-img--footer {
                height: 32px;
            }

            #header nav ul {
                padding: 0 10px;
                gap: 0;
            }

            #header nav a {
                padding: 10px 8px;
                font-size: 9px;
                letter-spacing: 0.3px;
            }

            .hero {
                padding: 40px 0 36px;
            }

            .hero-content {
                padding: 0 20px;
            }

            .hero-text h1 {
                font-size: 32px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                justify-content: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .features,
            .mission,
            .contact {
                padding: 60px 20px;
            }

            .floating-badge {
                display: none;
            }
        }

/* ========== Product detail (merkur/relax) ========== */

.product-detail {
            padding: 140px 50px 100px;
            background: var(--white);
        }

        .product-detail-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        /* Product Gallery */
        .product-gallery {
            position: relative;
        }

        .main-image {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 16px;
            overflow: hidden;
            background: var(--bg-cream);
            margin-bottom: 15px;
            position: relative;
        }

        .main-image img,
        .main-image video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: none;
        }

        .main-image img.active,
        .main-image video.active {
            display: block;
        }

        .main-image video {
            object-fit: contain;
            background: #000;
        }

        .thumbnail-list {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .thumbnail-list::-webkit-scrollbar {
            height: 6px;
        }

        .thumbnail-list::-webkit-scrollbar-track {
            background: var(--bg-cream);
            border-radius: 3px;
        }

        .thumbnail-list::-webkit-scrollbar-thumb {
            background: var(--green);
            border-radius: 3px;
        }

        .thumbnail {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .thumbnail.active {
            border-color: var(--green);
        }

        .thumbnail:hover {
            border-color: var(--primary);
        }

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

        .thumbnail.video-thumb::after {
            content: '\f04b';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--white);
            font-size: 16px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }

        .thumbnail.video-thumb::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.3);
        }

        /* Product Info */
        .product-info {
            padding-top: 20px;
        }

        .product-badge-top {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green);
            color: var(--white);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .product-info h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.2;
        }

        .product-info h1 span {
            color: var(--primary);
        }

        .product-tagline {
            font-size: 20px;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-tagline i {
            color: var(--green);
        }

        .product-description {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 35px;
        }

        .product-description p {
            margin-bottom: 15px;
        }

        /* Features List */
        .features-list {
            list-style: none;
            margin-bottom: 35px;
            background: var(--bg-light);
            border-radius: 12px;
            padding: 25px 30px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            font-size: 15px;
            color: var(--text-dark);
            border-bottom: 1px solid var(--bg-cream);
        }

        .features-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .features-list li:first-child {
            padding-top: 0;
        }

        .features-list li i {
            width: 24px;
            height: 24px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 10px;
            flex-shrink: 0;
        }

        /* Specs Grid */
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 35px;
        }

        .spec-item {
            background: var(--bg-cream);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }

        .spec-item i {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .spec-item strong {
            display: block;
            font-size: 20px;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .spec-item span {
            font-size: 13px;
            color: var(--text-muted);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 38px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--green);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--green-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(74, 93, 74, 0.28);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            margin-left: 10px;
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--white);
        }

        /* Slogans */
        .slogans-section {
            padding: 60px 50px;
            background: var(--green);
        }

        .slogans-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .slogan-item {
            color: var(--white);
            font-size: 18px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .slogan-item i {
            color: var(--accent);
        }

/* ========== Contact page (page-hero / map / contact-section) ========== */

/* Page Hero */
        .page-hero {
            padding: 180px 50px 80px;
            background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero.ap-page-hero--video {
            padding: calc(var(--ap-header-offset, 5.75rem) + 56px) 50px 72px;
            background: #1a1410;
            color: #fff;
            min-height: clamp(280px, 42vh, 460px);
            display: flex;
            align-items: center;
            justify-content: center;
            isolation: isolate;
        }

        .page-hero.ap-page-hero--video::before {
            display: none;
        }

        .page-hero.ap-page-hero--video.ap-page-hero--compact,
        .page-hero.ap-page-hero--video.ap-page-hero--band {
            min-height: clamp(140px, 22vh, 220px);
            padding: calc(var(--ap-header-offset, 5.75rem) + 28px) 40px 48px;
        }

        .ap-page-hero__media {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .ap-page-hero__poster,
        .ap-page-hero__video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .ap-page-hero__poster {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }

        .ap-page-hero__video {
            z-index: 1;
            opacity: 0;
            transition: opacity 0.7s ease;
        }

        .ap-page-hero__video.is-active {
            opacity: 1;
            z-index: 2;
        }

        .ap-page-hero__scrim,
        .ap-page-hero__veil {
            position: absolute;
            inset: 0;
            z-index: 2;
            background:
                linear-gradient(180deg, rgba(18, 12, 8, 0.58) 0%, rgba(28, 37, 38, 0.62) 48%, rgba(18, 12, 8, 0.78) 100%),
                radial-gradient(ellipse at 50% 18%, rgba(212, 175, 55, 0.16) 0%, transparent 55%);
            pointer-events: none;
        }

        .ap-page-hero__copy,
        .ap-page-hero__content {
            position: relative;
            z-index: 3;
            max-width: 760px;
            margin: 0 auto;
        }

        .page-hero.ap-page-hero--video h1 {
            color: #fff;
            text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
            margin-bottom: 14px;
        }

        .page-hero.ap-page-hero--video p {
            color: rgba(255, 255, 255, 0.88);
            text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
        }

        @media (prefers-reduced-motion: reduce) {
            .page-hero.ap-page-hero--video .ap-page-hero__video {
                display: none !important;
            }

            .page-hero.ap-page-hero--video .ap-page-hero__poster {
                z-index: 1;
            }
        }

        @media (max-width: 767px) {
            .page-hero.ap-page-hero--video {
                padding: calc(var(--ap-header-offset, 5.75rem) + 28px) 24px 48px;
                min-height: clamp(220px, 38vh, 340px);
            }

            .page-hero.ap-page-hero--video.ap-page-hero--compact,
            .page-hero.ap-page-hero--video.ap-page-hero--band {
                min-height: 120px;
                padding: calc(var(--ap-header-offset, 5.75rem) + 16px) 20px 32px;
            }
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .page-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 56px;
            color: var(--secondary);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .page-hero p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 50px;
            background: var(--white);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            background: var(--bg-light);
            padding: 50px;
            border-radius: 20px;
            border: 1px solid var(--bg-cream);
        }

        .contact-info h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 40px;
            font-weight: 600;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 35px;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item i {
            width: 60px;
            height: 60px;
            background: var(--green);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 22px;
            flex-shrink: 0;
        }

        .contact-item div {
            padding-top: 5px;
        }

        .contact-item div strong {
            display: block;
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-item a,
        .contact-item p {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 18px;
            line-height: 1.6;
            margin: 0;
            transition: color 0.3s;
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        /* Social Media */
        .social-section {
            background: var(--bg-light);
            padding: 50px;
            border-radius: 20px;
            border: 1px solid var(--bg-cream);
        }

        .social-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .social-section > p {
            color: var(--text-muted);
            margin-bottom: 35px;
            line-height: 1.8;
            font-size: 16px;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 20px 30px;
            color: var(--white);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.4s ease;
        }

        .social-link:hover {
            transform: translateY(-4px);
        }

        .social-link i {
            font-size: 26px;
        }

        .social-link.instagram {
            background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
        }

        .social-link.instagram:hover {
            box-shadow: 0 15px 40px rgba(225, 48, 108, 0.4);
        }

        .social-link.tiktok {
            background: linear-gradient(135deg, #000000, #25F4EE, #FE2C55);
        }

        .social-link.tiktok:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .social-link.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .social-link.whatsapp:hover {
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        }

        /* Map Section */
        .map-section {
            padding: 0 50px 100px;
            background: var(--white);
        }

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

        .map-container h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 30px;
            font-weight: 600;
            text-align: center;
        }

        .map-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

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

/* ========== Extra responsive (product / contact) ========== */

@media (max-width: 992px) {
            .product-detail-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }


            .product-info h1 {
                font-size: 38px;
            }

            .specs-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            #header nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 28px;
            }

            .footer-brand {
                align-items: center;
            }

            .footer-nav-list {
                justify-content: center;
            }
        }
@media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 10px;
                padding: 10px 15px;
            }

            .header-contact {
                gap: 12px;
            }

            .header-contact a {
                font-size: 13px;
            }

            .header-contact a i {
                width: 30px;
                height: 30px;
            }

            .logo-img {
                height: 31px;
                max-width: min(180px, 48vw);
            }

            .logo-img--footer {
                height: 32px;
            }

            #header nav ul {
                padding: 0 10px;
                gap: 0;
            }

            #header nav a {
                padding: 10px 8px;
                font-size: 9px;
                letter-spacing: 0.3px;
            }

            .product-detail {
                padding: 30px 15px 60px;
            }

            .product-info h1 {
                font-size: 32px;
            }

            .specs-grid {
                grid-template-columns: 1fr;
            }

            .btn {
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }

            .btn-outline {
                margin-left: 0;
            }

            .slogans-content {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .thumbnail {
                width: 55px;
                height: 55px;
            }

            .thumbnail-list {
                flex-wrap: nowrap;
                justify-content: flex-start;
            }
        }
@media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .page-hero h1 {
                font-size: 42px;
            }

            #header nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 28px;
            }

            .footer-brand {
                align-items: center;
            }

            .footer-nav-list {
                justify-content: center;
            }
        }
@media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 10px;
                padding: 10px 15px;
            }

            .header-contact {
                gap: 12px;
            }

            .header-contact a {
                font-size: 13px;
            }

            .header-contact a i {
                width: 30px;
                height: 30px;
            }

            .logo-img {
                height: 31px;
                max-width: min(180px, 48vw);
            }

            .logo-img--footer {
                height: 32px;
            }

            #header nav ul {
                padding: 0 10px;
                gap: 0;
            }

            #header nav a {
                padding: 10px 8px;
                font-size: 9px;
                letter-spacing: 0.3px;
            }

            .page-hero {
                padding: 40px 20px;
            }

            .page-hero h1 {
                font-size: 32px;
            }

            .contact-section,
            .map-section {
                padding: 60px 20px;
            }

            .contact-info,
            .social-section {
                padding: 30px;
            }

            .contact-item i {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
        }

/* ========== Nav dropdown — mobile / tablet ========== */

@media (max-width: 992px) {
    #header nav li.has-sub > ul {
        position: static;
        transform: none;
        min-width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(0,0,0,0.12);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        transition: max-height 0.3s ease;
    }

    #header nav li.has-sub.is-open > ul {
        max-height: 480px;
        pointer-events: auto;
        padding: 4px 0 8px;
    }

    #header nav li.has-sub > ul a {
        color: rgba(255,255,255,0.9);
        padding: 12px 20px;
        font-size: 11px;
    }

    #header nav li.has-sub > ul a:hover,
    #header nav li.has-sub > ul a.active {
        color: var(--white);
        background: rgba(255,255,255,0.08);
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-nav-list {
        justify-content: center;
    }
}

/* ========== Shared page layouts (faq, blog, gallery, testimonials, category) ========== */

.content-section {
    width: 100%;
    box-sizing: border-box;
    padding: 80px 50px;
    background: var(--white);
}

.content-section--cream {
    background: var(--bg-cream);
}

.content-section .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

/* FAQ */
.faq-toolbar {
    max-width: 820px;
    margin: 0 auto 28px;
}

.faq-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1px solid var(--bg-cream);
    border-radius: 14px;
}

.faq-search i {
    color: var(--primary);
    flex-shrink: 0;
}

.faq-search input {
    width: 100%;
    border: 0;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--secondary);
    outline: none;
}

.faq-search-meta {
    margin: 12px 4px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.faq-empty-filter {
    margin-top: 12px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--bg-cream);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.is-open {
    border-color: rgba(74, 93, 74, 0.22);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
}

.faq-question i {
    color: var(--green);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

/* ========== Blog — editorial Read mode ========== */

.blog-hero-lead {
    max-width: 640px;
    margin-inline: auto;
}

.blog-hero-count {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
}

/* Featured wide band */
.blog-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 0;
    margin-bottom: 64px;
    background: var(--bg-light);
    border: 1px solid rgba(74, 93, 74, 0.12);
    border-radius: 20px;
    overflow: hidden;
}

html.blog-reveal-enabled .blog-featured {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity var(--motion-duration-entrance) var(--ease-out),
        transform var(--motion-duration-entrance) var(--ease-out);
}

html.blog-reveal-enabled .blog-featured.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.blog-featured-media {
    display: block;
    min-height: 320px;
    overflow: hidden;
    background: var(--bg-cream);
}

.blog-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform var(--motion-duration-ui) var(--ease-out);
}

.blog-featured:hover .blog-featured-media img {
    transform: scale(1.03);
}

.blog-featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 48px 44px;
}

.blog-featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--secondary);
    margin: 0;
}

.blog-featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--motion-duration-ui) var(--ease-out);
}

.blog-featured-title a:hover {
    color: var(--green);
}

.blog-featured-excerpt {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.blog-featured-cta {
    margin-top: 8px;
}

/* Meta row + chips */
.blog-card-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 4px;
}

.blog-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(74, 93, 74, 0.08);
    border: 1px solid rgba(74, 93, 74, 0.16);
    border-radius: 999px;
}

.blog-meta-date,
.blog-meta-reading,
.blog-meta-author {
    font-size: 13px;
    color: var(--text-muted);
}

/* Asymmetric editorial grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px 28px;
}

.blog-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid--related .blog-card,
.blog-grid--related .blog-card:nth-child(odd),
.blog-grid--related .blog-card:nth-child(even) {
    grid-column: auto;
}

.blog-card {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    border: 1px solid rgba(74, 93, 74, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--motion-duration-ui) var(--ease-out);
}

html.blog-reveal-enabled .blog-card {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity var(--motion-duration-entrance) var(--ease-out),
        transform var(--motion-duration-entrance) var(--ease-out),
        border-color var(--motion-duration-ui) var(--ease-out);
}

.blog-card:nth-child(odd) {
    grid-column: span 7;
}

.blog-card:nth-child(even) {
    grid-column: span 5;
}

.blog-card--horizontal {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
}

html.blog-reveal-enabled .blog-card.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.blog-grid .blog-card:nth-child(1) { transition-delay: 0ms; }
.blog-grid .blog-card:nth-child(2) { transition-delay: 40ms; }
.blog-grid .blog-card:nth-child(3) { transition-delay: 80ms; }
.blog-grid .blog-card:nth-child(4) { transition-delay: 40ms; }
.blog-grid .blog-card:nth-child(5) { transition-delay: 80ms; }
.blog-grid .blog-card:nth-child(6) { transition-delay: 0ms; }
.blog-grid .blog-card:nth-child(n+7) { transition-delay: 0ms; }

.blog-card:hover {
    border-color: rgba(74, 93, 74, 0.22);
    transform: translateY(-4px);
}

html.blog-reveal-enabled .blog-card.is-inview:hover {
    transform: translateY(-4px);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-cream);
    flex-shrink: 0;
}

.blog-card--horizontal .blog-card-image {
    width: 42%;
    aspect-ratio: auto;
    min-height: 240px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--motion-duration-ui) var(--ease-out);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 28px 32px;
}

.blog-card--horizontal .blog-card-body {
    justify-content: center;
    padding: 36px 40px;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 600;
    color: var(--secondary);
    margin: 0 0 10px;
    line-height: 1.25;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--motion-duration-ui) var(--ease-out);
}

.blog-card-title a:hover {
    color: var(--green);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 18px;
    flex: 1;
}

.blog-card-link,
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color var(--motion-duration-ui) var(--ease-out), opacity var(--motion-duration-ui) var(--ease-out);
}

.blog-card-link:hover,
.blog-back-link:hover {
    color: var(--primary-dark);
}

.blog-card-link:focus-visible,
.blog-back-link:focus-visible,
.blog-featured-title a:focus-visible,
.blog-card-title a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Article detail */
.blog-detail-section {
    padding-top: 120px;
}

.blog-article-wrap {
    max-width: 920px;
}

.blog-back-link {
    margin-bottom: 32px;
}

.blog-article-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.12;
    color: var(--secondary);
    margin: 12px 0 20px;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-article-cover {
    margin: 0 0 48px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-cream);
    box-shadow: 0 24px 64px rgba(28, 37, 38, 0.08);
}

.blog-article-cover img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.blog-article-body {
    max-width: 68ch;
    margin-inline: auto;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-dark);
}

.blog-article-body > * + * {
    margin-top: 1.25em;
}

.blog-article-body h2,
.blog-article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--secondary);
    line-height: 1.25;
    margin-top: 2em;
    margin-bottom: 0.6em;
}

.blog-article-body h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 600;
}

.blog-article-body h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
}

.blog-article-body p {
    margin: 0;
}

.blog-article-body ul,
.blog-article-body ol {
    padding-left: 1.35em;
    margin: 0;
}

.blog-article-body li + li {
    margin-top: 0.5em;
}

.blog-article-body a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--motion-duration-ui) var(--ease-out);
}

.blog-article-body a:hover {
    color: var(--primary-dark);
}

.blog-article-body a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.blog-article-body blockquote {
    margin: 1.5em 0;
    padding: 20px 24px;
    border-left: 3px solid var(--accent);
    background: rgba(212, 175, 55, 0.06);
    color: var(--text-muted);
    font-style: italic;
}

.blog-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Related posts */
.blog-related-section {
    border-top: 1px solid rgba(74, 93, 74, 0.1);
}

.blog-related-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-related-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: var(--secondary);
    margin: 8px 0 0;
}

@media (prefers-reduced-motion: reduce) {
    html.blog-reveal-enabled .blog-featured,
    html.blog-reveal-enabled .blog-card,
    .blog-featured,
    .blog-card {
        opacity: 1;
        transform: none;
        transition: border-color var(--motion-duration-ui) var(--ease-out);
    }

    .blog-featured:hover,
    .blog-card:hover,
    html.blog-reveal-enabled .blog-card.is-inview:hover {
        transform: none;
    }

    .blog-featured-media img,
    .blog-card-image img {
        transition: none;
    }

    .blog-featured:hover .blog-featured-media img,
    .blog-card:hover .blog-card-image img {
        transform: none;
    }

    .blog-grid .blog-card {
        transition-delay: 0ms !important;
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-cream);
    border: 1px solid var(--bg-cream);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.gallery-item--video {
    background: #1a1410;
}

/* Ambient story section (home / about) */
.ap-ambient-story {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0;
    align-items: stretch;
    min-height: clamp(360px, 52vh, 560px);
    background: #1a1410;
    color: #fff;
    overflow: hidden;
}

.ap-ambient-story__media {
    position: relative;
    min-height: 280px;
}

.ap-ambient-story__poster,
.ap-ambient-story__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ap-ambient-story__poster {
    background-size: cover;
    background-position: center;
}

.ap-ambient-story__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 12, 8, 0.15) 0%, rgba(18, 12, 8, 0.35) 100%);
    pointer-events: none;
}

.ap-ambient-story__copy {
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(160deg, #221910 0%, #2c2418 55%, #1c1812 100%);
}

.ap-ambient-story__copy .section-tag {
    align-self: flex-start;
}

.ap-ambient-story__copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

.ap-ambient-story__lead,
.ap-ambient-story__copy > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 38rem;
}

.ap-ambient-story__list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.ap-ambient-story__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.ap-ambient-story__list i {
    color: var(--color-t-accent, #d4af37);
    margin-top: 4px;
}

.ap-ambient-story__copy .btn {
    margin-top: 12px;
    align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
    .ap-ambient-story__video {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .ap-ambient-story {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ap-ambient-story__media {
        min-height: 240px;
        aspect-ratio: 16 / 10;
    }
}


.gallery-item-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(28, 37, 38, 0.85));
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-grid--photo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-grid--video {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(74, 93, 74, 0.12);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(26, 32, 26, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(26, 32, 26, 0.1);
}

.testimonial-card--photo .testimonial-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-cream);
}

.testimonial-card--photo .testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card--video .testimonial-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a201a;
}

.testimonial-card--video .testimonial-media iframe,
.testimonial-card--video .testimonial-media video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #000;
}

.ap-video-trigger {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #1a201a;
    overflow: hidden;
    color: inherit;
}

.ap-video-trigger:focus-visible {
    outline: 3px solid var(--accent, #c4a35a);
    outline-offset: 3px;
}

.ap-video-trigger__poster,
.gallery-item__video-trigger .ap-video-trigger__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ap-video-trigger__fallback {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    background:
        radial-gradient(circle at 30% 20%, rgba(196, 163, 90, 0.28), transparent 45%),
        linear-gradient(160deg, #2a332a 0%, #1a201a 100%);
}

.ap-video-trigger__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.ap-video-trigger__play i {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(26, 32, 26, 0.72);
    color: #f7f4ec;
    font-size: 22px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, background 0.25s ease;
}

.ap-video-trigger:hover .ap-video-trigger__play i,
.ap-video-trigger:focus-visible .ap-video-trigger__play i {
    transform: scale(1.06);
    background: rgba(196, 163, 90, 0.92);
    color: #1a201a;
}

.gallery-item--video {
    position: relative;
}

.gallery-item__video-trigger {
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: inherit;
}

html.ap-lightbox-open,
html.ap-lightbox-open body {
    overflow: hidden;
}

.ap-lightbox[hidden] {
    display: none !important;
}

.ap-lightbox {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.ap-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 20, 16, 0.78);
    backdrop-filter: blur(2px);
}

.ap-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    outline: none;
}

.ap-lightbox__close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: #f7f4ec;
    color: #1a201a;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.ap-lightbox__close:focus-visible {
    outline: 3px solid var(--accent, #c4a35a);
    outline-offset: 2px;
}

.ap-lightbox__stage {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.ap-lightbox__stage video,
.ap-lightbox__stage iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

@media (max-width: 720px) {
    .ap-lightbox {
        padding: 16px;
        align-items: end;
    }

    .ap-lightbox__close {
        top: 8px;
        right: 8px;
    }

    .ap-lightbox__stage {
        border-radius: 12px;
    }
}

.testimonial-video-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    min-height: 220px;
    color: #f5f7f4;
    text-decoration: none;
    font-weight: 600;
}

.testimonial-video-link i {
    font-size: 28px;
    color: var(--accent);
}

.testimonial-card-main {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 24px 8px;
    flex: 1;
}

.testimonial-card--text .testimonial-card-main,
.testimonial-card--text .testimonial-stars,
.testimonial-card--text .testimonial-quote {
    padding-left: 24px;
    padding-right: 24px;
}

.testimonial-card--text {
    padding-top: 28px;
}

.testimonial-card--text .testimonial-stars {
    padding-top: 0;
}

.testimonial-card--text .testimonial-quote {
    padding-bottom: 8px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    font-style: italic;
}

.testimonial-quote p {
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding: 18px 24px;
    background: #1f2a1f;
    color: #f4f6f3;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: #ffffff;
    font-weight: 650;
}

.testimonial-author span {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    color: rgba(244, 246, 243, 0.78);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 2px;
}

/* Product listing — image-dominant cards */
.product-listing .section-inner {
    max-width: 1200px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(74, 93, 74, 0.12);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 28px rgba(26, 32, 26, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(26, 32, 26, 0.1);
}

.product-card-media {
    aspect-ratio: 4 / 3;
    background: var(--bg-cream);
    overflow: hidden;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.product-card:hover .product-card-media img {
    transform: scale(1.04);
}

.product-card-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 42px;
    background: linear-gradient(135deg, rgba(74, 93, 74, 0.12), rgba(74, 93, 74, 0.04));
}

.product-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 24px 26px;
}

.product-card-title {
    margin: 0;
    font-size: 22px;
    font-weight: 650;
    color: var(--secondary);
}

.product-card-summary {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-cta {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 650;
    color: var(--primary);
}

/* Related products (product detail) */
.related-products {
    border-top: 1px solid rgba(74, 93, 74, 0.1);
}

.related-products-header {
    text-align: center;
    margin-bottom: 48px;
}

.related-products-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}

.ap-related-carousel .ap-product-carousel__controls {
    justify-content: center;
}

.ap-related-carousel.is-carousel .ap-product-carousel__slide {
    flex: 0 0 min(82%, 300px);
}

@media (min-width: 769px) {
    .ap-related-carousel.is-carousel .ap-product-carousel__slide {
        flex: 0 0 calc((100% - 40px) / 2.5);
    }
}

@media (min-width: 1024px) {
    .ap-related-carousel.is-carousel .ap-product-carousel__slide {
        flex: 0 0 calc((100% - 60px) / 3.2);
    }
}

/* Empty state */
.empty-state {
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--bg-light);
    border: 1px dashed rgba(74, 93, 74, 0.28);
    border-radius: 20px;
}

.empty-state-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
}

.empty-state h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-media,
    .blog-featured-media img {
        min-height: 260px;
    }

    .blog-featured-body {
        padding: 36px 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card,
    .blog-card:nth-child(odd),
    .blog-card:nth-child(even),
    .blog-card--horizontal {
        grid-column: 1 / -1;
    }

    .blog-card--horizontal {
        flex-direction: column;
    }

    .blog-card--horizontal .blog-card-image {
        width: 100%;
        min-height: auto;
        aspect-ratio: 16 / 10;
    }

    .blog-grid--related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-grid--related .blog-card {
        grid-column: auto;
    }

    .blog-detail-section {
        padding-top: 100px;
    }
}

@media (max-width: 992px) {
    .blog-grid--related,
    .gallery-grid,
    .testimonial-grid,
    .testimonial-grid--photo,
    .testimonial-grid--video,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-section {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .blog-featured-body {
        padding: 28px 24px;
    }

    .blog-card-body,
    .blog-card--horizontal .blog-card-body {
        padding: 24px 22px 28px;
    }

    .blog-article-wrap {
        max-width: 100%;
    }

    .blog-article-cover {
        margin-bottom: 32px;
        border-radius: 14px;
    }

    .blog-article-body {
        font-size: 16px;
    }

    .blog-grid--related,
    .gallery-grid,
    .testimonial-grid,
    .testimonial-grid--photo,
    .testimonial-grid--video,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 50px 20px;
    }

    .product-card-title {
        font-size: 20px;
    }

    .testimonial-card-main {
        padding: 20px 18px 6px;
    }

    .testimonial-author {
        padding: 16px 18px;
    }

    .blog-detail-section {
        padding-top: 80px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 375px) {
    .blog-hero-count {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .blog-featured-title {
        font-size: 26px;
    }

    .blog-card-title {
        font-size: 22px;
    }

    .blog-article-title {
        font-size: 32px;
    }
}

/* ===== Hero Slider (fullscreen) ===== */
.ap-hero-slider {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--secondary);
    color: var(--white);
}

.ap-hero-slider--viewport {
    /* Fit remaining viewport under sticky header so bottom tabs stay visible */
    min-height: calc(100vh - var(--ap-header-offset));
    min-height: calc(100svh - var(--ap-header-offset));
    height: calc(100vh - var(--ap-header-offset));
    height: calc(100dvh - var(--ap-header-offset));
    max-height: calc(100vh - var(--ap-header-offset));
    max-height: calc(100dvh - var(--ap-header-offset));
}

.ap-hero-slide,
.ap-hero-slide__media,
.ap-hero-slide__overlay {
    position: absolute;
    inset: 0;
}

.ap-hero-slide {
    z-index: 0;
    display: flex;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 680ms var(--ease-out), visibility 0s linear 680ms;
}

.ap-hero-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 680ms var(--ease-out), visibility 0s linear 0s;
}

.ap-hero-slide__media {
    z-index: -2;
    background-color: var(--secondary);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.01);
    will-change: transform;
}

.ap-hero-slide.is-active .ap-hero-slide__media {
    animation: ap-hero-ken-burns 9s linear both;
}

.ap-hero-slide__overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(28, 37, 38, var(--ap-hero-overlay-strong)) 0%, rgba(28, 37, 38, var(--ap-hero-overlay-middle)) 52%, rgba(28, 37, 38, 0.3) 100%),
        linear-gradient(0deg, rgba(12, 17, 17, 0.48) 0%, transparent 48%);
}

.ap-hero-slide__inner {
    width: min(1400px, 100%);
    height: 100%;
    margin: 0 auto;
    padding: clamp(112px, 13vh, 168px) clamp(24px, 5vw, 72px) clamp(156px, 18vh, 224px);
    display: flex;
    align-items: center;
}

.ap-hero-slide__copy {
    width: min(660px, 100%);
}

.ap-hero-slide__badge,
.ap-hero-slide__title,
.ap-hero-slide__description,
.ap-hero-slide__actions {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

.ap-hero-slide.is-active .ap-hero-slide__badge,
.ap-hero-slide.is-active .ap-hero-slide__title,
.ap-hero-slide.is-active .ap-hero-slide__description,
.ap-hero-slide.is-active .ap-hero-slide__actions {
    opacity: 1;
    transform: translateY(0);
}

.ap-hero-slide.is-active .ap-hero-slide__badge {
    transition-delay: 80ms;
}

.ap-hero-slide.is-active .ap-hero-slide__title {
    transition-delay: 140ms;
}

.ap-hero-slide.is-active .ap-hero-slide__description {
    transition-delay: 200ms;
}

.ap-hero-slide.is-active .ap-hero-slide__actions {
    transition-delay: 260ms;
}

.ap-hero-slide__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.9px;
    text-transform: uppercase;
}

.ap-hero-slide__badge i {
    font-size: 12px;
}

.ap-hero-slide__title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6.2vw, 84px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--white);
    text-wrap: balance;
}

.ap-hero-slide__title span {
    color: var(--accent);
}

.ap-hero-slide__description {
    max-width: 56ch;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 400;
    line-height: 1.7;
}

.ap-hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.ap-hero-slide__button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0.35px;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.ap-hero-slide__button--primary {
    background: var(--primary);
    color: var(--white);
}

.ap-hero-slide__button--ghost {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(28, 37, 38, 0.18);
    color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
    .ap-hero-slide__button--primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    .ap-hero-slide__button--ghost:hover {
        border-color: var(--white);
        background: var(--white);
        color: var(--secondary);
        transform: translateY(-2px);
    }

    .ap-hero-slider__arrow:hover {
        border-color: var(--accent);
        background: var(--accent);
        color: var(--secondary);
        transform: translateY(-2px);
    }
}

.ap-hero-slide__button:active,
.ap-hero-slider__arrow:active,
.ap-hero-slider__tab:active,
.ap-hero-slider__dot:active {
    transform: scale(0.97);
}

.ap-hero-slide__button:focus-visible,
.ap-hero-slider__arrow:focus-visible,
.ap-hero-slider__tab:focus-visible,
.ap-hero-slider__dot:focus-visible,
.ap-hero-slider__scroll-cue:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.ap-hero-slider__arrows {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: clamp(18px, 3vw, 52px);
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
}

.ap-hero-slider__arrow {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    background: rgba(28, 37, 38, 0.42);
    color: var(--white);
    cursor: pointer;
    transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
}

.ap-hero-slider__controls {
    position: absolute;
    z-index: 3;
    right: clamp(24px, 5vw, 72px);
    bottom: clamp(28px, 4vw, 60px);
    left: clamp(24px, 5vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 22px 36px;
}

.ap-hero-slider__tabs {
    display: flex;
    align-items: stretch;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.ap-hero-slider__tabs::-webkit-scrollbar {
    display: none;
}

.ap-hero-slider__tab {
    min-width: 150px;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 0 18px 11px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: rgba(255, 255, 255, 0.66);
    font-family: 'Outfit', sans-serif;
    text-align: left;
    cursor: pointer;
    transition: border-color 200ms var(--ease-out), color 200ms var(--ease-out), transform 180ms var(--ease-out);
}

.ap-hero-slider__tab + .ap-hero-slider__tab {
    padding-left: 18px;
}

.ap-hero-slider__tab.is-active {
    border-color: var(--accent);
    color: var(--white);
}

.ap-hero-slider__tab-index {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ap-hero-slider__tab-label {
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ap-hero-slider__meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ap-hero-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ap-hero-slider__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.ap-hero-slider__dot.is-active {
    border-color: var(--accent);
    background: var(--accent);
}

.ap-hero-slider__counter {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.ap-hero-slider__counter span:first-child {
    color: var(--accent);
}

.ap-hero-slider__progress {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(var(--ap-hero-slide-count, 3), minmax(0, 1fr));
    gap: 6px;
}

.ap-hero-slider__progress-segment {
    position: relative;
    display: block;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.24);
}

.ap-hero-slider__progress-segment::after {
    position: absolute;
    inset: 0;
    content: '';
    background: var(--accent);
    transform: translateX(-101%);
}

.ap-hero-slider__progress-segment.is-active::after {
    animation: ap-hero-progress var(--ap-hero-interval, 7000ms) linear forwards;
}

.ap-hero-slider.is-paused .ap-hero-slider__progress-segment.is-active::after,
.ap-hero-slider[data-autoplay="false"] .ap-hero-slider__progress-segment.is-active::after {
    animation-play-state: paused;
}

.ap-hero-slider__scroll-cue {
    position: absolute;
    z-index: 3;
    right: clamp(24px, 5vw, 72px);
    bottom: clamp(28px, 4vw, 60px);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.25px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.ap-hero-slider__controls + .ap-hero-slider__scroll-cue {
    bottom: auto;
    top: clamp(24px, 4vw, 48px);
}

@media (hover: hover) and (pointer: fine) {
    .ap-hero-slider__scroll-cue:hover {
        color: var(--accent);
        transform: translateY(2px);
    }
}

@keyframes ap-hero-ken-burns {
    from {
        transform: scale(1.01);
    }
    to {
        transform: scale(1.075);
    }
}

@keyframes ap-hero-progress {
    from {
        transform: translateX(-101%);
    }
    to {
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .ap-hero-slide__inner {
        padding-right: clamp(88px, 13vw, 144px);
    }

    .ap-hero-slider__tab {
        min-width: 132px;
    }
}

@media (max-width: 768px) {
    .ap-hero-slider--viewport {
        min-height: calc(100vh - var(--ap-header-offset));
        min-height: calc(100svh - var(--ap-header-offset));
        height: calc(100vh - var(--ap-header-offset));
        height: calc(100dvh - var(--ap-header-offset));
        max-height: calc(100vh - var(--ap-header-offset));
        max-height: calc(100dvh - var(--ap-header-offset));
    }

    .ap-hero-slide__overlay {
        background:
            linear-gradient(90deg, rgba(28, 37, 38, var(--ap-hero-overlay-strong)) 0%, rgba(28, 37, 38, var(--ap-hero-overlay-mobile-middle)) 100%),
            linear-gradient(0deg, rgba(12, 17, 17, 0.58) 0%, transparent 56%);
    }

    .ap-hero-slide__inner {
        align-items: center;
        padding: 96px 24px 168px;
    }

    .ap-hero-slide__title {
        font-size: clamp(42px, 11vw, 62px);
        line-height: 1.02;
    }

    .ap-hero-slide__description {
        font-size: 16px;
        line-height: 1.65;
    }

    .ap-hero-slide__actions {
        margin-top: 28px;
    }

    .ap-hero-slider__arrows {
        top: auto;
        right: 24px;
        bottom: 114px;
        grid-auto-flow: column;
        transform: none;
    }

    .ap-hero-slider__arrow {
        width: 44px;
        height: 44px;
    }

    .ap-hero-slider__controls {
        right: 24px;
        bottom: 28px;
        left: 24px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ap-hero-slider__tabs {
        display: none;
    }

    .ap-hero-slider__meta {
        justify-content: space-between;
    }

    .ap-hero-slider__progress {
        grid-row: 1;
    }

    .ap-hero-slider__scroll-cue,
    .ap-hero-slider__controls + .ap-hero-slider__scroll-cue {
        top: 24px;
        right: 24px;
        bottom: auto;
    }
}

@media (max-width: 375px) {
    .ap-hero-slide__inner {
        padding: 88px 20px 160px;
    }

    .ap-hero-slide__badge {
        margin-bottom: 16px;
        font-size: 10px;
    }

    .ap-hero-slide__title {
        font-size: 40px;
    }

    .ap-hero-slide__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ap-hero-slide__button {
        width: 100%;
    }

    .ap-hero-slider__arrows {
        right: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ap-hero-slide {
        transition: opacity 180ms linear, visibility 0s linear 180ms;
    }

    .ap-hero-slide.is-active {
        transition: opacity 180ms linear, visibility 0s linear 0s;
    }

    .ap-hero-slide__badge,
    .ap-hero-slide__title,
    .ap-hero-slide__description,
    .ap-hero-slide__actions {
        transform: none;
        transition: opacity 180ms linear;
    }

    .ap-hero-slide.is-active .ap-hero-slide__media,
    .ap-hero-slider__progress-segment.is-active::after {
        animation: none;
    }
}

/* ===== Mobile shell: compact header, drawer and bottom navigation ===== */
.ap-menu-toggle,
.ap-bottom-nav,
#ap-drawer {
    display: none;
}

.ap-product-cta--after-desc {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --ap-bottom-nav-offset: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    body {
        padding-bottom: var(--ap-bottom-nav-offset);
    }

    body.ap-drawer-open {
        overflow: hidden;
    }

    .header-top {
        flex-direction: row;
        gap: 0;
        min-height: 56px;
        padding: 8px 15px;
    }

    .header-contact,
    #header > nav {
        display: none;
    }

    .ap-menu-toggle {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 50%;
        background: var(--bg-cream);
        color: var(--green);
        cursor: pointer;
        transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out);
    }

    .ap-menu-toggle:hover,
    .ap-menu-toggle:focus-visible {
        background: var(--green);
        color: var(--white);
        outline: none;
    }

    .ap-menu-toggle:focus-visible,
    .ap-drawer-close:focus-visible,
    .ap-bottom-nav__item:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 3px;
    }

    .ap-menu-toggle-bars,
    .ap-menu-toggle-bars::before,
    .ap-menu-toggle-bars::after {
        width: 20px;
        height: 2px;
        display: block;
        border-radius: 999px;
        background: currentColor;
        content: '';
        transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
    }

    .ap-menu-toggle-bars {
        position: relative;
    }

    .ap-menu-toggle-bars::before,
    .ap-menu-toggle-bars::after {
        position: absolute;
        left: 0;
    }

    .ap-menu-toggle-bars::before {
        top: -6px;
    }

    .ap-menu-toggle-bars::after {
        top: 6px;
    }

    .ap-menu-toggle[aria-expanded='true'] .ap-menu-toggle-bars {
        background: transparent;
    }

    .ap-menu-toggle[aria-expanded='true'] .ap-menu-toggle-bars::before {
        transform: translateY(6px) rotate(45deg);
    }

    .ap-menu-toggle[aria-expanded='true'] .ap-menu-toggle-bars::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    #ap-drawer {
        position: fixed;
        z-index: 1200;
        inset: 0;
    }

    #ap-drawer:not([hidden]) {
        display: block;
    }

    .ap-drawer-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(28, 37, 38, 0.52);
        opacity: 0;
        transition: opacity 220ms var(--ease-out);
    }

    .ap-drawer-panel {
        position: absolute;
        top: 0;
        right: 0;
        width: min(88vw, 380px);
        height: 100%;
        padding: 20px 20px calc(24px + env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        background: var(--white);
        box-shadow: -18px 0 48px rgba(28, 37, 38, 0.18);
        transform: translateX(100%);
        transition: transform 220ms var(--ease-out);
    }

    .ap-drawer.is-open .ap-drawer-backdrop {
        opacity: 1;
    }

    .ap-drawer.is-open .ap-drawer-panel {
        transform: translateX(0);
    }

    .ap-drawer-head {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
    }

    .ap-drawer-close {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(74, 93, 74, 0.16);
        border-radius: 50%;
        background: var(--bg-light);
        color: var(--green);
        cursor: pointer;
    }

    .ap-drawer-contact {
        display: grid;
        gap: 10px;
        margin-bottom: 24px;
        padding: 16px;
        background: var(--bg-cream);
        border-radius: 12px;
    }

    .ap-drawer-contact a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 44px;
        color: var(--secondary);
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
    }

    .ap-drawer-nav ul {
        display: grid;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .ap-drawer-nav li {
        list-style: none;
    }

    .ap-drawer-nav a,
    .ap-drawer-nav .nav-label {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 14px;
        border-radius: 8px;
        color: var(--secondary);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-decoration: none;
        text-transform: uppercase;
    }

    .ap-drawer-nav a:hover,
    .ap-drawer-nav a.active,
    .ap-drawer-nav .nav-label:hover {
        background: rgba(74, 93, 74, 0.1);
        color: var(--green-dark);
    }

    .ap-drawer-nav li.has-sub > ul {
        display: none;
        gap: 2px;
        margin: 0 0 4px 14px;
        padding-left: 10px;
        border-left: 1px solid rgba(74, 93, 74, 0.18);
    }

    .ap-drawer-nav li.has-sub.is-open > ul {
        display: grid;
    }

    .ap-drawer-nav li.has-sub > .nav-label .nav-chevron {
        transition: transform 180ms var(--ease-out);
    }

    .ap-drawer-nav li.has-sub.is-open > .nav-label .nav-chevron {
        transform: rotate(180deg);
    }

    .ap-drawer-nav li.has-sub > ul a {
        min-height: 44px;
        font-size: 13px;
        font-weight: 500;
        text-transform: none;
    }

    .ap-bottom-nav {
        position: fixed;
        z-index: 1100;
        right: 0;
        bottom: 0;
        left: 0;
        height: var(--ap-bottom-nav-offset);
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: start;
        padding: 6px 4px env(safe-area-inset-bottom, 0px);
        background: var(--white);
        border-top: 1px solid rgba(74, 93, 74, 0.14);
        box-shadow: 0 -8px 24px rgba(28, 37, 38, 0.1);
    }

    .ap-bottom-nav__item {
        min-width: 0;
        min-height: 56px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 4px 2px;
        border: 0;
        background: transparent;
        color: var(--text-muted);
        font-family: inherit;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.1;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .ap-bottom-nav__item i {
        font-size: 17px;
    }

    .ap-bottom-nav__item.is-active {
        color: var(--green);
    }

    .ap-bottom-nav__item--home {
        position: relative;
        z-index: 1;
        width: 64px;
        height: 64px;
        min-height: 64px;
        justify-self: center;
        margin-top: -14px;
        border: 0;
        border-radius: 50%;
        background: var(--green);
        color: var(--white);
        box-shadow: 0 8px 18px rgba(58, 74, 58, 0.28);
        gap: 2px;
        padding: 8px 4px 6px;
    }

    .ap-bottom-nav__item--home.is-active {
        background: var(--green-dark);
        color: var(--white);
    }

    .ap-bottom-nav__item--home i {
        font-size: 20px;
    }

    .ap-bottom-nav__item--home span {
        font-size: 9px;
        color: inherit;
    }

    /* Powered by Deamon: core injection unchanged; theme only restacks under
       fixed mobile chrome (bottom nav + contact widget). Cookie consent stays above. */
    #deamon-powered-bar.deamon-powered-bar {
        z-index: 1000 !important;
    }

    .ap-bottom-nav {
        z-index: 1100;
    }

    .deamon-contact-widget {
        z-index: 1200 !important;
        bottom: calc(var(--ap-bottom-nav-offset) + 12px) !important;
        min-height: 0;
    }

    /* FAB is hidden on mobile — closed widget must not steal taps from hero arrows/controls */
    .deamon-contact-widget:not(.is-open) {
        pointer-events: none !important;
    }

    .deamon-contact-widget.is-open {
        pointer-events: auto !important;
    }

    .deamon-contact-widget .deamon-contact-widget-fab {
        display: none !important;
    }

    .deamon-contact-widget.is-open .deamon-contact-widget-actions {
        margin-bottom: 0;
    }

    .ap-product-cta--after-desc {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: -8px 0 28px;
    }

    .ap-product-cta--after-desc .btn {
        width: 100%;
        margin: 0;
        justify-content: center;
    }

    .product-detail {
        padding-bottom: 32px;
    }

    /* footer-nav flex:1 was stretching empty space on stacked mobile footer */
    footer {
        padding: 36px 20px 20px;
    }

    .footer-content {
        gap: 20px;
        align-items: center;
    }

    .footer-nav {
        flex: 0 1 auto;
        width: 100%;
        min-height: 0;
    }

    .footer-nav-list {
        justify-content: center;
        gap: 8px 14px;
    }
}

@media (min-width: 769px) {
    .ap-menu-toggle,
    .ap-bottom-nav,
    #ap-drawer {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ap-menu-toggle,
    .ap-menu-toggle-bars,
    .ap-menu-toggle-bars::before,
    .ap-menu-toggle-bars::after,
    .ap-drawer-backdrop,
    .ap-drawer-panel {
        transition-duration: 1ms;
    }
}

/* Home marketing sections */

/* Home: products carousel */
.ap-home-products .section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 40px;
}

.ap-home-products__header {
    position: relative;
}

.ap-home-products__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-weight: 650;
    color: var(--primary);
    text-decoration: none;
}

.ap-product-carousel.is-grid .ap-product-carousel__viewport {
    overflow: visible;
}

.ap-product-carousel.is-grid .ap-product-carousel__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.ap-product-carousel.is-carousel .ap-product-carousel__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ap-product-carousel.is-carousel .ap-product-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.ap-product-carousel.is-carousel .ap-product-carousel__track {
    display: flex;
    gap: 20px;
}

.ap-product-carousel.is-carousel .ap-product-carousel__slide {
    flex: 0 0 min(78%, 320px);
    scroll-snap-align: start;
}

@media (min-width: 769px) {
    .ap-product-carousel.is-carousel .ap-product-carousel__slide {
        flex: 0 0 calc((100% - 60px) / 3.2);
    }
}

.ap-product-carousel__controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.ap-product-carousel__controls[hidden] {
    display: none !important;
}

.ap-product-carousel__btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(74, 93, 74, 0.2);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.ap-product-carousel__btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Home: testimonials */
.ap-home-testimonials .section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 40px;
}

.ap-home-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ap-testimonial-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(74, 93, 74, 0.12);
    border-radius: 18px;
}

.ap-testimonial-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.ap-testimonial-card__media {
    flex: 0 0 72px;
}

.ap-testimonial-card__media img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.ap-testimonial-card__stars {
    color: var(--accent);
    margin-bottom: 8px;
}

.ap-testimonial-card__stars .is-empty {
    opacity: 0.25;
}

.ap-testimonial-card__quote {
    margin: 0 0 12px;
}

.ap-testimonial-card__quote p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Reset global `footer { background: var(--secondary) }` — card author is not page footer */
.ap-testimonial-card__author {
    background: transparent;
    padding: 14px 0 0;
    margin: 12px 0 0;
    border-top: 1px solid rgba(74, 93, 74, 0.1);
}

.ap-testimonial-card__author strong {
    display: block;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 650;
}

.ap-testimonial-card__author span {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    color: var(--text-muted);
}

.ap-home-testimonials__footer {
    margin-top: 28px;
    text-align: center;
}

/* Home: sales CTA */
.ap-home-cta {
    background: var(--secondary);
    color: var(--white);
    padding: 72px 40px;
}

.ap-home-cta__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ap-home-cta__tag {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.ap-home-cta__title {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 650;
    color: var(--white);
}

.ap-home-cta__lead {
    margin: 0 auto 28px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.78);
}

.ap-home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.ap-home-cta__btn-secondary {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.ap-home-cta__btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

@media (max-width: 900px) {
    .ap-home-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .ap-product-carousel.is-grid .ap-product-carousel__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ap-home-products .section-inner,
    .ap-home-testimonials .section-inner,
    .ap-home-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ap-testimonial-card {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ap-product-carousel__viewport {
        scroll-behavior: auto;
    }
}

/* TRY glyph: Cormorant Garamond subset often lacks ₺ */
.money,
.product-price,
.price,
.ap-product-card__price {
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
}

/* ========== References: logo rail (home) + logo grid (about /referanslar) ========== */
/* Tokens: --primary sage, --accent gold, --bg-cream, --white, --ease-out. No new palette. */

.ap-logo-rail__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-weight: 650;
    color: var(--primary);
    text-decoration: none;
}

.ap-logo-rail__viewport {
    position: relative;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.ap-logo-rail__track {
    display: flex;
    width: max-content;
    align-items: stretch;
    animation: ap-logo-rail-scroll 40s linear infinite;
    will-change: transform;
}

.ap-logo-rail:hover .ap-logo-rail__track,
.ap-logo-rail:focus-within .ap-logo-rail__track {
    animation-play-state: paused;
}

.ap-logo-rail__set {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 4px 8px;
    list-style: none;
}

.ap-logo-rail__set > li,
.ap-logo-rail__set > a {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 88px;
    min-height: 44px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(74, 93, 74, 0.12);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(26, 32, 26, 0.05);
}

.ap-logo-rail__set > li {
    padding: 0;
    align-items: stretch;
}

.ap-logo-rail__set a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 160px;
    min-height: 44px;
    height: 100%;
    padding: 16px 20px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 16px;
    outline: none;
    transition: box-shadow var(--motion-duration-ui) var(--ease-out);
}

.ap-logo-rail__set > li > a,
.ap-logo-rail__set .ap-logo-card {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.ap-logo-rail__set .ap-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 160px;
    min-height: 44px;
    height: 100%;
    padding: 16px 20px;
}

.ap-logo-card__name {
    font-size: 13px;
    font-weight: 650;
    color: var(--primary);
    text-align: center;
}

.ap-logo-rail__set a:focus-visible {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--accent);
}

.ap-logo-rail__set img {
    display: block;
    width: auto;
    max-width: 148px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(1) contrast(1.05);
    opacity: 0.78;
    transition: filter var(--motion-duration-ui) var(--ease-out), opacity var(--motion-duration-ui) var(--ease-out);
}

.ap-logo-rail__set li:hover img,
.ap-logo-rail__set a:hover img,
.ap-logo-rail__set a:focus-visible img {
    filter: none;
    opacity: 1;
}

@keyframes ap-logo-rail-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ap-ref-grid {
    width: 100%;
}

.ap-ref-grid__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ap-ref-grid__list > li,
.ap-ref-grid__list > a,
.ap-ref-grid__list > .ap-ref-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: var(--white);
    border: 1px solid rgba(74, 93, 74, 0.12);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(26, 32, 26, 0.05);
    transition: transform var(--motion-duration-ui) var(--ease-out),
        box-shadow var(--motion-duration-ui) var(--ease-out),
        border-color var(--motion-duration-ui) var(--ease-out);
}

.ap-ref-grid__list > li,
.ap-ref-grid__list > .ap-ref-card {
    padding: 0;
    align-items: stretch;
}

.ap-ref-grid__list > li:hover,
.ap-ref-grid__list > a:hover,
.ap-ref-grid__list > .ap-ref-card:hover {
    border-color: rgba(74, 93, 74, 0.22);
    box-shadow: 0 16px 36px rgba(26, 32, 26, 0.08);
    transform: translateY(-2px);
}

.ap-ref-card__link,
.ap-ref-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 120px;
    padding: 20px 24px;
}

.ap-ref-card__title {
    margin: 0;
    font-size: 13px;
    font-weight: 650;
    color: var(--primary);
    text-align: center;
}

.ap-ref-card__fallback {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--primary);
    opacity: 0.45;
}

.ap-ref-grid__footer {
    margin-top: 28px;
    text-align: center;
}

.ap-ref-grid__list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
    padding: 20px 24px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 16px;
    outline: none;
}

.ap-ref-grid__list > li > a,
.ap-ref-grid__list .ap-ref-card__link {
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
}

.ap-ref-grid__list a:focus-visible {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--accent);
}

.ap-ref-grid__list img {
    display: block;
    width: auto;
    max-width: 168px;
    max-height: 64px;
    object-fit: contain;
    filter: grayscale(1) contrast(1.05);
    opacity: 0.82;
    transition: filter var(--motion-duration-ui) var(--ease-out), opacity var(--motion-duration-ui) var(--ease-out);
}

.ap-ref-grid__list li:hover img,
.ap-ref-grid__list a:hover img,
.ap-ref-grid__list a:focus-visible img,
.ap-ref-grid__list .ap-ref-card:hover img {
    filter: none;
    opacity: 1;
}

.ap-ref-grid [data-ap-ref-item][hidden],
.ap-ref-grid [data-ap-ref-item].is-pending {
    display: none;
}

.ap-ref-grid [data-ap-ref-more] {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.ap-ref-grid [data-ap-ref-more][hidden] {
    display: none;
}

@media (min-width: 360px) {
    .ap-ref-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 768px) {
    .ap-ref-grid__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (min-width: 1100px) {
    .ap-ref-grid__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .ap-logo-rail__set {
        gap: 10px;
        padding: 4px 6px;
    }

    .ap-logo-rail__set > li,
    .ap-logo-rail__set > a {
        min-width: 144px;
        height: 78px;
    }

    .ap-logo-rail__set a {
        min-width: 144px;
        padding: 14px 16px;
    }

    .ap-logo-rail__set img {
        max-width: 128px;
        height: 34px;
    }

    .ap-logo-rail__track {
        animation-duration: 28s;
    }
}

@media (max-width: 359px) {
    .ap-ref-grid__list {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ap-logo-rail__viewport {
        margin-inline: 0;
        width: auto;
        max-width: none;
        -webkit-mask-image: none;
        mask-image: none;
        overflow: visible;
    }

    .ap-logo-rail__track {
        animation: none;
        transform: none;
        will-change: auto;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        row-gap: 10px;
    }

    .ap-logo-rail__set[aria-hidden="true"],
    .ap-logo-rail__set[aria-hidden="true"][hidden] {
        display: none;
    }

    .ap-ref-grid__list > li,
    .ap-ref-grid__list > a,
    .ap-ref-grid__list > .ap-ref-card,
    .ap-ref-grid__list > li:hover,
    .ap-ref-grid__list > a:hover,
    .ap-ref-grid__list > .ap-ref-card:hover {
        transform: none;
    }
}
