/* NYZLOCKS — Pixel-Perfect Brand Styles */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');
0,400;0,500;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --teal: #222222; /* Dark Grey Primary */
    --teal-dark: #111111;
    --teal-light: #333333;
    --gold: #8F1B1F; /* Deep Red Accent */
    --gold-dark: #4F0F11;
    --gold-light: #EC0101;
    
    --black: #222222; /* Dark Grey Headings */
    --white: #FFFFFF; /* Pure White */
    --surface: #FFFFFF; 
    --surface-hover: #F8F8F8;
    --beige: #FAFAFA;
    --beige-light: #F0F0F0;
    --gray: #878787;
    --gray-light: #DDDDDD;
    --gray-muted: #EEEEEE;
    --cream: #FFFFFF;
    --mint: #FAFAFA;
    --border-color: #DDDDDD;
    --container: 1200px;

    /* Theme Design System Variables */
    --color-bg-primary: #FFFFFF;
    --color-text-primary: #111111;
    --color-text-secondary: #555555;
    --color-accent-primary: #8F1B1F;
    --color-border: #E5E7EB;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--white);
    color-scheme: light;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    padding-top: 0;
}


.container-nyz {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.font-script {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
}

/* ─── Announcement Bar ─── */
.announcement-bar {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    min-height: 28px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    color: #000000 !important;
}

.announcement-bar svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #000000 !important;
    stroke: #000000 !important;
}

/* ─── Header: Fixed Smart Sticky Navbar (Slide Up on Scroll Down, Slide Down on Scroll Up) ─── */
.header-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transform: translateY(0);
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-wrapper.header-hidden {
    transform: translateY(-100%) !important;
}

.site-header {
    position: relative !important;
    width: 100%;
    z-index: 998;
    background: #000000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.header-scrolled {
    background: #000000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

.site-header .container-nyz {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    padding: 0;
    gap: clamp(16px, 2vw, 28px);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    min-height: auto;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
}

.logo-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: block;
}

.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    max-height: 100%;
    display: block;
}

@media (min-width: 768px) {
    .header-logo-img {
        height: 56px;
    }
}

.logo-text {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--white);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.site-header.header-scrolled .logo-text {
    color: var(--white);
}

.logo-tagline {
    font-size: 6.5px;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--gray-muted);
    text-transform: uppercase;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.1vw, 32px);
    overflow: visible;
    min-width: 0;
}

.nav-link {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s ease;
    position: relative;
    padding: 20px 0;
}

.site-header.header-scrolled .nav-link {
    color: #ffffff !important;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 20px);
    flex-shrink: 0;
    overflow: visible;
}

.header-icons a,
.header-icons button {
    color: #ffffff !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: color 0.25s ease;
    text-decoration: none;
    position: relative;
    overflow: visible;
}

.site-header.header-scrolled .header-icons a,
.site-header.header-scrolled .header-icons button {
    color: #ffffff !important;
}

.header-icons a:hover,
.header-icons button:hover {
    color: var(--gold);
}

.header-icons svg {
    width: 20px;
    height: 20px;
}

.cart-badge {
    background: var(--teal);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -6px;
    z-index: 3;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--white);
}

/* ─── Buttons ─── */
.btn-primary {
    background: var(--gold);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 20px 32px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 148, 62, 0.35);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 20px 28px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

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

.btn-white {
    background: var(--white);
    color: var(--teal);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 20px 28px;
    border: 2px solid var(--white);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

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

.btn-teal-outline {
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 20px 28px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

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

.shop-now-link {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--teal);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.shop-now-link:hover {
    gap: 10px;
}

/* ─── Hero Canvas & Spotlight ─── */
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.hero-spotlight {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid rgba(9, 81, 86, 0.4);
    background: transparent;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: opacity 0.3s ease, top 0.1s ease-out, left 0.1s ease-out;
    opacity: 0;
}

/* ─── Hero ─── */
.hero-section {
    background: var(--white);
    overflow: hidden;
    position: relative;
    height: 600px;
    width: 100%;
}

/* ─── Hero Slider Extensions ─── */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.98);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide.active {
    display: flex;
    align-items: center;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
    filter: brightness(0.95) contrast(1.05);
    z-index: 0;
}

.hero-video-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    filter: brightness(0.9) contrast(1.05);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 13, 14, 0.35) 0%, rgba(11, 13, 14, 0.2) 50%, rgba(11, 13, 14, 0.6) 100%);
    z-index: 1;
}

/* Slider Controls */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(20, 23, 28, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.hero-nav-arrow:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(0, 191, 200, 0.4);
}

.hero-nav-arrow.prev { left: 24px; }
.hero-nav-arrow.next { right: 24px; }

/* Slide Pagination & Progress */
/* CTA Dynamic Positioning */
.hero-actions-wrapper[data-mobile-pos="top_left"] { align-items: flex-start; justify-content: flex-start; }
.hero-actions-wrapper[data-mobile-pos="top_center"] { align-items: flex-start; justify-content: center; }
.hero-actions-wrapper[data-mobile-pos="top_right"] { align-items: flex-start; justify-content: flex-end; }
.hero-actions-wrapper[data-mobile-pos="center_left"] { align-items: center; justify-content: flex-start; }
.hero-actions-wrapper[data-mobile-pos="center"] { align-items: center; justify-content: center; }
.hero-actions-wrapper[data-mobile-pos="center_right"] { align-items: center; justify-content: flex-end; }
.hero-actions-wrapper[data-mobile-pos="bottom_left"] { align-items: flex-end; justify-content: flex-start; }
.hero-actions-wrapper[data-mobile-pos="bottom_center"] { align-items: flex-end; justify-content: center; }
.hero-actions-wrapper[data-mobile-pos="bottom_right"] { align-items: flex-end; justify-content: flex-end; }

@media (min-width: 768px) {
    .hero-actions-wrapper[data-desktop-pos="top_left"] { align-items: flex-start; justify-content: flex-start; }
    .hero-actions-wrapper[data-desktop-pos="top_center"] { align-items: flex-start; justify-content: center; }
    .hero-actions-wrapper[data-desktop-pos="top_right"] { align-items: flex-start; justify-content: flex-end; }
    .hero-actions-wrapper[data-desktop-pos="center_left"] { align-items: center; justify-content: flex-start; }
    .hero-actions-wrapper[data-desktop-pos="center"] { align-items: center; justify-content: center; }
    .hero-actions-wrapper[data-desktop-pos="center_right"] { align-items: center; justify-content: flex-end; }
    .hero-actions-wrapper[data-desktop-pos="bottom_left"] { align-items: flex-end; justify-content: flex-start; }
    .hero-actions-wrapper[data-desktop-pos="bottom_center"] { align-items: flex-end; justify-content: center; }
    .hero-actions-wrapper[data-desktop-pos="bottom_right"] { align-items: flex-end; justify-content: flex-end; }
}

.hero-slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
    width: 10px;
    height: 10px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(0, 191, 200, 0.6);
    transform: scale(1.25);
}

/* Decorative background circles */
.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-bg-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9,81,86,0.07) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}
.hero-bg-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(9,81,86,0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

/* Subtle dot grid */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(9,81,86,0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
    height: 100%;
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}
    z-index: 1;
}

.hero-copy {
    position: relative;
    z-index: 1;
    transition: transform 0.15s ease-out;
}

/* Badge pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(9,81,86,0.08);
    border: 1px solid rgba(9,81,86,0.18);
    color: var(--teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 20px 16px;
    border-radius: 999px;
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-heading {
    font-size: clamp(40px, 5.2vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 24px;
}
.hero-heading .hero-line {
    display: block;
}
.hero-heading .line-teal {
    color: var(--teal);
}

.hero-desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 36px;
}

/* Action buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom:24px;
}
.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1.5px solid var(--teal);
    padding-bottom: 2px;
    transition: opacity 0.25s ease;
}
.hero-btn-ghost:hover { opacity: 0.65; }

/* Ingredient pills */
.hero-ingredient-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(9,81,86,0.06);
    border: 1px solid rgba(9,81,86,0.14);
    padding: 20px 12px;
    border-radius: 999px;
    transition: background 0.2s, transform 0.2s;
    cursor: default;
}
.hero-pill:hover {
    background: rgba(9,81,86,0.12);
    transform: translateY(-2px);
}

/* Trust stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}
.hero-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray);
    text-transform: uppercase;
}
.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(9,81,86,0.2);
    flex-shrink: 0;
}

/* Visual column */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 520px;
    transition: transform 0.18s ease-out;
}

/* Glow orb behind model */
.hero-visual-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9,81,86,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-visual img {
    width: auto;
    max-width: min(430px, 100%);
    max-height: 560px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 28px 70px rgba(17,17,17,0.18));
}

/* Floating badge on product */
.hero-floating-tag {
    position: absolute;
    bottom: 60px;
    left: -10px;
    background: var(--white);
    border: 1px solid rgba(9,81,86,0.15);
    box-shadow: 0 8px 24px rgba(9,81,86,0.12);
    border-radius: 2px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.06em;
    animation: float-tag 4s ease-in-out infinite alternate;
    z-index: 2;
}
@keyframes float-tag {
    0%   { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.hero-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(9,81,86,0.4);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.hero-scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--teal);
    border-radius: 4px;
    animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel {
    0%   { opacity: 1; transform: translateY(0); }
    80%  { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(0); }
}


/* ─── Feature Bar ─── */
.features-section {
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    --parallax-y: 0px;
}

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

.feature-block {
    text-align: center;
    padding: 20px 24px;
    position: relative;
}

.feature-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 72px;
    background: var(--gray-light);
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    stroke: var(--teal);
    stroke-width: 1.25;
}

.feature-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 11px;
    font-weight: 400;
    color: var(--gray-muted);
    line-height: 1.5;
}

/* ─── Section Titles ─── */
.section-header {
    text-align: center;
    margin-bottom:24px;
}

.section-title-script {
    color: var(--teal);
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.section-title-main {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 4px;
}

.title-divider::before,
.title-divider::after {
    content: '';
    height: 1px;
    width: 80px;
    background: var(--teal);
    opacity: 0.35;
}

/* ─── Collection Cards ─── */
.collection-section {
    padding:26px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfaf7 42%, #f1eee6 100%);
    position: relative;
    overflow: hidden;
    --parallax-y: 0px;
}

.features-section::before,
.collection-section::before,
.combo-section::before {
    content: '';
    position: absolute;
    inset: -18% 0 auto;
    height: 220px;
    background: radial-gradient(ellipse at 76% 30%, rgba(10, 108, 115, 0.08), transparent 62%);
    transform: translate3d(0, var(--parallax-y), 0);
    pointer-events: none;
    will-change: transform;
}

.features-section>*,
.collection-section>*,
.combo-section>* {
    position: relative;
    z-index: 1;
}

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

.collection-card {
    border-radius: 2px;
    overflow: visible;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    position: relative;
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 20px 60px rgba(17, 17, 17, 0.055);
    transition: box-shadow 0.45s cubic-bezier(.2, .9, .2, 1), border-color 0.45s ease;
    isolation: isolate;
    background-blend-mode: screen;
}

.collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.14) 46%, rgba(255, 255, 255, 0.42)),
        radial-gradient(circle at 72% 74%, rgba(10, 108, 115, 0.16), transparent 36%),
        linear-gradient(180deg, transparent 0%, rgba(17, 17, 17, 0.035) 100%);
    opacity: 0.92;
    pointer-events: none;
    z-index: 0;
}

.collection-card::after {
    content: '';
    position: absolute;
    inset: -45% auto auto -70%;
    width: 56%;
    height: 190%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    transform: rotate(18deg) translateX(0);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    transition: transform 0.85s cubic-bezier(.2, .9, .2, 1), opacity 0.45s ease;
}

.collection-card:hover {
    border-color: rgba(10, 108, 115, 0.16);
    box-shadow: 0 34px 90px rgba(17, 17, 17, 0.13);
}

.collection-card:hover::after {
    opacity: 1;
    transform: rotate(18deg) translateX(360%);
}

.collection-card-inner {
    padding: 20px 34px 0;
    position: relative;
    z-index: 3;
    transform: translateZ(38px);
    min-height: 150px;
}

.collection-card-inner::before {
    content: 'NYZLOCKS CARE';
    display: block;
    color: rgba(17, 17, 17, 0.38);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.collection-card-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.68);
    z-index: 3;
    transform: translateZ(62px);
    transition: transform 0.45s cubic-bezier(.2, .9, .2, 1), background-color 0.35s ease;
}

.collection-card:hover .collection-card-icon {
    transform: translateZ(72px) rotate(10deg) scale(1.06);
    background: rgba(255, 255, 255, 0.92);
}

.collection-card-icon svg {
    width: 19px;
    height: 19px;
    stroke: var(--teal);
    stroke-width: 1.35;
}

.collection-card-title {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
    max-width: calc(100% - 64px);
    line-height: 1.15;
}

.collection-card-title.teal {
    color: var(--teal);
}

.collection-card-desc {
    font-size: 12.5px;
    color: #515653;
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 230px;
}

.collection-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 255px;
    margin: 10px 24px 24px;
    position: relative;
    z-index: 2;
    transform: translateZ(44px);
    border-radius: 2px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.32)),
        radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 58%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    overflow: visible;
}

.collection-card-image::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 64%;
    height: 38px;
    background: radial-gradient(ellipse, rgba(17, 17, 17, 0.18), transparent 72%);
    transform: translateX(-50%);
    filter: blur(3px);
    opacity: 0.72;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.collection-card-image::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 58%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.18), transparent);
    transform: translateX(-50%);
    opacity: 0.6;
}

.collection-card-image img {
    max-height: 238px;
    max-width: 92%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 28px 38px rgba(17, 17, 17, 0.15));
    transform: translate3d(0, 0, 42px);
    transition: transform 0.55s cubic-bezier(.2, .9, .2, 1), filter 0.45s ease;
    will-change: transform;
}

.collection-card:hover .collection-card-image img {
    transform: translate3d(0, -12px, 74px) scale(1.045) rotate(-1deg);
    filter: drop-shadow(0 38px 48px rgba(17, 17, 17, 0.2));
}

.collection-card:hover .collection-card-image::before {
    opacity: 0.52;
    transform: translateX(-50%) scaleX(0.82);
}

.collection-card .shop-now-link {
    transform: translateZ(50px);
}

.collection-card:hover .shop-now-link {
    gap: 12px;
}

/* ─── Best Seller ─── */
.best-seller-section {
    background: #044D52;
    position: relative;
    overflow: visible;
    padding:20px 0;
    --parallax-y: 0px;
}

.best-seller-section::before,
.best-seller-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 2;
    pointer-events: none;
}

.best-seller-section::before {
    top: -39px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C120,10 240,35 360,20 C480,5 600,30 720,15 C840,0 960,25 1080,18 C1200,11 1320,32 1440,8 L1440,40 L0,40 Z' fill='%23044D52'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
}

.best-seller-section::after {
    bottom: -39px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C120,30 240,5 360,20 C480,35 600,10 720,25 C840,40 960,15 1080,22 C1200,29 1320,8 1440,32 L1440,0 L0,0 Z' fill='%23044D52'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
}

.best-seller-section .container-nyz::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 10%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    transform: translate3d(0, var(--parallax-y), 0);
    pointer-events: none;
    will-change: transform;
}

.best-seller-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.best-seller-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.best-seller-title {
    font-size: clamp(32px, 3.5vw, 42px);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.best-seller-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.best-seller-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.benefit-item {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.benefit-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.best-seller-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.best-seller-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 191, 200, 0.25) 0%, rgba(0, 191, 200, 0.05) 40%, transparent 70%);
    z-index: 0;
    left: 50%;
    transform: translateX(-50%);
}

.best-seller-visual img {
    position: relative;
    z-index: 1;
    max-height: 540px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.best-seller-visual:hover img {
    transform: scale(1.05) translateY(-15px);
}

.best-seller-ingredients {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ingredient-card-item {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
    padding: 20px 20px;
    border-radius: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.ingredient-card-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 200, 0.2), transparent);
    transform: skewX(-20deg);
    transition: 0.5s ease;
    pointer-events: none;
}

.ingredient-card-item:hover::after {
    left: 150%;
}

.ingredient-card-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(0, 191, 200, 0.4);
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0, 191, 200, 0.2);
}

.ingredient-circle-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 191, 200, 0.2);
    border: 2px solid var(--gold);
    background: #111;
    transition: all 0.4s ease;
}

.ingredient-card-item:hover .ingredient-circle-img {
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 191, 200, 0.6), 0 0 15px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

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

.ingredient-name {
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--gold);
}

.ingredient-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* ─── Ingredient Story (Premium 4-Card Redesign) ─── */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');
0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

.luxury-cards-section {
    background-color: #0C1117;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    padding:40px 0;
    position: relative;
    overflow: hidden;
}

.luxury-spotlight {
    position: absolute;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 80vw; height: 80vh;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.luxury-header {
    text-align: center;
    margin-bottom:50px;
    position: relative;
    z-index: 1;
}

.luxury-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.luxury-divider-gold {
    width: 60px;
    height: 1px;
    background: #C7A461;
    margin: 0 auto 32px;
}

.luxury-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #9DA5AE;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.8;
}

.luxury-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* Staggered Heights for Editorial Look */
@media (min-width: 1024px) {
    .stagger-down {
        margin-top:40px;
    }
}

.luxury-card {
    background: #141A22;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.luxury-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #4E8B72;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 20px rgba(78,139,114,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

.card-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    position: relative;
    overflow: hidden;
    border-radius: 27px 27px 0 0; /* Match card inner radius */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-card:hover .card-image {
    transform: scale(1.08);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,26,34,0.9) 0%, rgba(20,26,34,0) 50%);
    pointer-events: none;
}

.card-badge {
    position: absolute;
    top: 24px; left: 24px;
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: #FFFFFF;
    transition: transform 0.6s ease;
}

.luxury-card:hover .card-badge {
    transform: rotate(-10deg);
}

.card-content {
    padding: 32px;
    position: relative;
}

.card-origin {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #4E8B72;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.card-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 32px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #9DA5AE;
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 24px;
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.card-benefits li {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 12px;
    opacity: 0.7;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.luxury-card:hover .card-benefits li {
    opacity: 1;
}

/* Add slight delay stagger on hover for benefits */
.luxury-card:hover .card-benefits li:nth-child(1) { transition-delay: 0.1s; }
.luxury-card:hover .card-benefits li:nth-child(2) { transition-delay: 0.15s; }
.luxury-card:hover .card-benefits li:nth-child(3) { transition-delay: 0.2s; }

.card-link {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #C7A461;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.card-link .arrow {
    transition: transform 0.4s ease;
}

.luxury-card:hover .card-link .arrow {
    transform: translateX(8px);
}

/* GSAP utility class for initial clip-path reveal */
.clip-reveal {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

@media (max-width: 1200px) {
    .luxury-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stagger-down {
        margin-top: 0;
    }
    /* Stagger every even child in 2-col layout */
    .luxury-card:nth-child(even) {
        margin-top:30px;
    }
}
@media (max-width: 768px) {
    .luxury-cards-grid {
        grid-template-columns: 1fr;
    }
    .luxury-card:nth-child(even) {
        margin-top: 0;
    }
}

/* ─── Trust Bar ─── */
.trust-section {
    padding: 20px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-block {
    text-align: center;
    padding: 20px 12px;
}

.trust-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    stroke: var(--teal);
    stroke-width: 1.2;
}

.trust-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
}

.trust-desc {
    font-size: 10px;
    color: var(--gray-muted);
    margin-top: 4px;
}

/* ─── Combo Section ─── */
.combo-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.combo-banner-card {
    background: var(--white);
    border-radius: 2px;
    box-shadow: 0 24px 50px rgba(9, 81, 86, 0.08);
    padding:20px;
    margin: 0 20px;
}

.combo-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}

.combo-headline {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--teal);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

.combo-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.combo-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.combo-check-item svg {
    stroke: var(--teal);
    width: 24px;
    height: 24px;
    background: rgba(9, 81, 86, 0.06);
    border-radius: 50%;
    padding: 4px;
}

.combo-promo-middle {
    background: rgba(9, 81, 86, 0.03);
    padding: 20px 24px;
    border-radius: 2px;
    text-align: center;
    border: 1px dashed rgba(9, 81, 86, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    align-self: center;
    max-width: 280px;
    margin: 0 auto;
}

.combo-box-title {
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 24px;
    line-height: 1.5;
}

.combo-box-title strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--teal);
    margin-top: 8px;
    letter-spacing: 0.02em;
}

.combo-action .btn-primary {
    width: 100%;
    padding: 20px 24px;
    font-size: 15px;
    border-radius: 2px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(9, 81, 86, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo-action .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(9, 81, 86, 0.35);
}

.combo-visual-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.combos-showcase-img {
    width: 70%;
    max-width: 300px;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.combo-visual-right:hover .combos-showcase-img {
    transform: scale(1.06);
}

@media (max-width: 992px) {
    .combo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .combo-promo-middle {
        height: auto;
    }
    .combo-banner-card {
        padding: 32px;
    }
}

/* ─── Product Cards ─── */
.product-card {
    background: var(--surface-hover);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.product-card-image {
    background: var(--beige);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ─── Forms ─── */
.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #cbd5e1 !important;
    background-color: #f1f5f9 !important;
    color: #0f172a !important;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 14px !important;
    transition: all 0.25s ease;
    outline: none;
}

.form-input::placeholder {
    color: #64748b !important;
}

.form-input:focus {
    outline: none;
    border-color: #8F1B1F !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(143, 27, 31, 0.15) !important;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0;
}

.footer-heading {
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.25s ease;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--white);
}

/* ─── Animations ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(24px);
    will-change: opacity, transform;
}

.scroll-animate.animate-fade-in-up {
    animation: fadeInUp 0.7s ease forwards;
}

.product-card {
    background: var(--surface-hover);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.product-card-image {
    background: var(--beige);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (hover:none),
(pointer:coarse) {
    .product-card {
        transform: none !important;
    }

    .collection-card {
        transform: none !important;
    }
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

/* ─── Utilities ─── */
[x-cloak] {
    display: none !important;
}

.star-filled {
    color: #F5A623;
}

.star-empty {
    color: #ddd;
}

.zoom-container {
    overflow: hidden;
    cursor: zoom-in;
}

.zoom-container img {
    transition: transform 0.5s ease;
}

.zoom-container:hover img {
    transform: scale(1.4);
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.variant-btn {
    border: 1px solid var(--gray-light);
    padding: 20px 18px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.variant-btn.active,
.variant-btn:hover {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--white);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.alert {
    padding: 20px 20px;
    margin-bottom: 16px;
    font-size: 13px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

.insta-grid img {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.insta-grid a:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
        padding: 24px 0;
    }

    .hero-copy {
        grid-column: 1;
        width: 100%;
        max-width: 620px;
        margin-left: 0;
    }

    .hero-visual {
        grid-column: 1;
        justify-content: center;
        min-height: auto;
    }

    .hero-visual img {
        max-width: 420px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .collection-card {
        min-height: 420px;
    }

    .collection-card-image {
        min-height: 240px;
        margin: 10px 22px 22px;
    }

    .collection-card-image img {
        max-height: 220px;
        max-width: 90%;
    }

    .best-seller-visual {
        order: -1;
    }

    .ingredient-item {
        justify-content: center;
    }

    .combo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .combo-badges {
        justify-content: center;
    }

    .combo-discount-badge {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

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

    .feature-block:nth-child(2)::after {
        display: none;
    }

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

    .hero-heading {
        font-size: 32px;
    }

    .hero-grid {
        padding: 20px 0 48px;
        min-height: 0;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-visual img {
        max-width: 300px;
    }

    .collection-section {
        padding: 36px 0;
    }

    .collection-card {
        min-height: 390px;
    }

    .collection-card-inner {
        padding: 20px 28px 0;
    }

    .collection-card-icon {
        width: 38px;
        height: 38px;
        top: 20px;
        right: 20px;
    }

    .collection-card-title {
        font-size: 16px;
        max-width: calc(100% - 54px);
    }

    .collection-card-desc {
        max-width: 260px;
        margin-bottom: 10px;
    }

    .collection-card-image {
        min-height: 220px;
        margin: 10px 18px 20px;
    }

    .collection-card-image img {
        max-height: 202px;
        max-width: 90%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LUXURY ENHANCEMENT LAYER — NYZ LOCKS PREMIUM EXPERIENCE
   ═══════════════════════════════════════════════════════════════ */

/* ─── Scroll Progress Bar ─── */
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal) 0%, #0d858e 50%, #4ecdc4 100%);
    z-index: 9999;
    width: 0%;
    transition: width 0.05s linear;
    box-shadow: 0 0 8px rgba(10, 108, 115, 0.5);
}

/* ─── Stats Counter Section ─── */
.stats-section {
    padding: 36px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(10, 108, 115, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-block {
    text-align: center;
    padding: 20px 24px;
    position: relative;
}

.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-number {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-block:nth-child(2)::after { display: none; }
    .stat-block { padding: 20px 16px; }
}


/* ─── Before & After Comparison Slider ─── */
.before-after-section {
    padding:24px 0;
    background: var(--black);
    overflow: hidden;
    position: relative;
}

.before-after-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(10, 108, 115, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(13, 133, 142, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.before-after-header {
    text-align: center;
    margin-bottom:28px;
}

.before-after-header .section-title-script {
    color: var(--teal-light);
}

.before-after-header .section-title-main {
    color: var(--white);
}

.ba-container {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    aspect-ratio: 16/9;
    background: #111;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-before {
    z-index: 1;
    width: 50%;
}

.ba-after {
    z-index: 0;
}

.ba-label {
    position: absolute;
    bottom: 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 20px 14px;
    border-radius: 2px;
    z-index: 5;
    pointer-events: none;
}

.ba-label-before {
    left: 16px;
    background: rgba(17, 17, 17, 0.75);
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

.ba-label-after {
    right: 16px;
    background: var(--teal);
    color: var(--white);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: white;
    z-index: 10;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-handle.dragging .ba-handle-circle {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 4px 32px rgba(10, 108, 115, 0.5);
}

.ba-handle-circle svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
}

/* ─── How It Works Timeline ─── */
.how-it-works-section {
    padding:24px 0;
    background: var(--beige-light);
    position: relative;
    overflow: hidden;
}

.hiw-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top:32px;
}

.hiw-timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gray-light);
    z-index: 0;
}

.hiw-timeline-fill {
    position: absolute;
    top: 36px;
    left: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
    z-index: 1;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hiw-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hiw-step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    font-weight: 900;
    color: var(--gray-muted);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hiw-step.active .hiw-step-number {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
    box-shadow: 0 8px 32px rgba(10, 108, 115, 0.35);
    transform: scale(1.1);
}

.hiw-step-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.hiw-step.active .hiw-step-title {
    color: var(--teal);
}

.hiw-step-desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 160px;
    margin: 0 auto;
}

/* ─── FAQ Accordion ─── */
.faq-section {
    padding:24px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    margin-top:28px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    gap: 20px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.faq-question-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.02em;
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--teal);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    background: var(--teal);
}

.faq-item.open .faq-icon svg {
    stroke: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
    padding-bottom: 20px;
}

/* ─── Toast Notification ─── */
#nyz-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--black);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    z-index: 9999;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    border-left: 3px solid var(--teal);
    max-width: 280px;
}

#nyz-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Section Reveal Animations ─── */
.reveal,
.scroll-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible,
.scroll-animate.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1,
.scroll-animate.animate-delay-100 { transition-delay: 0.1s; }
.reveal-delay-2,
.scroll-animate.animate-delay-200 { transition-delay: 0.2s; }
.reveal-delay-3,
.scroll-animate.animate-delay-300 { transition-delay: 0.3s; }
.reveal-delay-4,
.scroll-animate.animate-delay-400 { transition-delay: 0.4s; }

/* ─── Responsive Additions ─── */
@media (max-width: 768px) {
    .ba-container { aspect-ratio: 4/3; }

    .hiw-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hiw-timeline::before,
    .hiw-timeline-fill { display: none; }

    .hiw-step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }

    .hiw-step-number {
        margin: 0;
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        font-size: 16px;
    }

    .hiw-step-desc {
        max-width: none;
        margin: 0;
    }

    .before-after-section,
    .how-it-works-section,
    .faq-section { padding: 32px 0; }
}

/* ─── Premium Form Inputs ─── */
.form-input {
    width: 100%;
    background-color: #f1f5f9 !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    padding: 14px 18px;
    border-radius: 14px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    letter-spacing: 0.01em;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.form-input::placeholder {
    color: #64748b !important;
}

.form-input:hover {
    background-color: #e2e8f0 !important;
    border-color: #94a3b8 !important;
}

.form-input:focus {
    border-color: #8F1B1F !important;
    box-shadow: 0 0 0 4px rgba(143, 27, 31, 0.15) !important;
    background-color: #ffffff !important;
    color: #0f172a !important;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23334155'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 42px;
}

/* ─── Breadcrumbs ─── */
.breadcrumb-container {
    padding: 20px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-muted);
}

.breadcrumb-container a {
    color: var(--gray-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumb-container a:hover {
    color: var(--teal);
}

.breadcrumb-separator {
    margin: 0 8px;
    opacity: 0.5;
}

/* ─── Variant and Quantity Pickers ─── */
.variant-btn {
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: transparent;
    padding: 20px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 2px;
}

.variant-btn.active,
.variant-btn:hover {
    border-color: var(--teal);
    color: var(--white);
    background: var(--teal);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ─── Premium Product Cards ─── */
.product-card {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--surface-hover);
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), border-color 0.45s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.product-card-image {
    aspect-ratio: 1;
    background: var(--beige-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card-image img {
    transition: transform 0.5s ease;
}

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

/* ─── Luxury D2C Grooming Visual Enhancements ─── */

/* Global & Layout Effects */
html {
    scroll-behavior: smooth;
}
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
    z-index: 9999;
    width: 0%;
    box-shadow: 0 0 10px rgba(9, 81, 86, 0.3);
    transition: width 0.05s linear;
}

/* Announcement Bar Aligning */
.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-single-bottle-img {
    animation: heroFloat 6s ease-in-out infinite alternate;
}

@keyframes heroFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* Collection Cards Editorial Reset */
.collection-card {
    background: var(--beige);
    border: 1px solid var(--cream);
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--teal);
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.06);
}

.collection-card-inner {
    transition: none;
}

/* Ingredients Premium Cards Reset */
.ingredient-card-premium {
    background: var(--white);
    border: 1px solid var(--cream);
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card-premium:hover {
    background: var(--white);
    border-color: var(--teal);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(9, 81, 86, 0.06);
}

/* Combo Section Side-by-Side Presentation */
.combo-side-by-side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.combo-product-preview {
    background: var(--white);
    border: 1px solid var(--cream);
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.combo-product-preview:hover {
    transform: translateY(-2px);
    border-color: var(--teal);
}

.combo-product-preview img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

.combo-product-preview span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--black);
    text-transform: uppercase;
}

.combo-plus-separator {
    font-size: 24px;
    font-weight: 300;
    color: var(--teal);
}

.combo-discount-badge {
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(9, 81, 86, 0.2);
    flex-shrink: 0;
}

/* Testimonial Static Grid Layout */
.testimonial-grid-wrapper {
    width: 100%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

@media (max-width: 640px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card-premium {
    background: var(--white);
    border: 1px solid var(--cream);
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card-premium:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--teal);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

/* How It Works Section */
.how-it-works-section {
    position: relative;
}

/* FAQ Accordion */
.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
    opacity: 0;
}

.faq-item.open .faq-answer {
    opacity: 1;
}

/* Premium Editorial Footer */
.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    overflow: hidden;
    padding: 32px 0 32px;
}

.site-footer .container-nyz {
    position: relative;
    z-index: 1;
}

.footer-link {
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link:hover {
    color: var(--teal-light);
    transform: translateX(4px);
}

.footer-heading {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

/* ─── Global SVG Size Hard Reset for Specific Contexts ─── */
/* Prevents SVGs without explicit width/height from rendering at full container width */
.benefit-item > svg,
.combo-check-item > svg,
.combo-badge-item > svg { 
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
    display: inline-block;
}

.trust-block .trust-icon {
    width: 28px !important;
    height: 28px !important;
    display: inline-block;
    flex-shrink: 0;
}

.feature-block .feature-icon {
    width: 32px !important;
    height: 32px !important;
    display: block;
    margin: 0 auto 12px;
}

/* ─── Pixel-Perfect Recreation Overrides ─── */

/* Collection Card: Horizontal Row Layout */
.collection-card {
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: row !important;
    min-height: 190px !important;
    padding: 20px 24px !important;
    border-radius: 6px !important;
    border: none !important;
    box-shadow: none !important;
    background-image: none !important;
    background-blend-mode: normal !important;
}

.collection-card::before,
.collection-card::after {
    display: none !important;
}

.collection-card-inner {
    padding: 0 !important;
    flex: 1 !important;
    max-width: 56% !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    transform: none !important;
    z-index: 2;
}

.collection-card-inner::before {
    display: none !important;
}

.collection-card-image {
    position: absolute !important;
    right: 10px !important;
    bottom: 10px !important;
    width: 120px !important;
    height: 140px !important;
    background: none !important;
    border: none !important;
    transform: none !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
}

.collection-card-image::before,
.collection-card-image::after {
    display: none !important;
}

.collection-card-image img {
    max-height: 130px !important;
    max-width: 110px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: none !important;
    transform: none !important;
}

.collection-card-icon {
    position: absolute !important;
    top: 16px !important;
    right: 148px !important;
    width: 28px !important;
    height: 28px !important;
    border: 1px solid rgba(17, 17, 17, 0.15) !important;
    background: rgba(255, 255, 255, 0.7) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transform: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 3;
}

.collection-card-icon svg {
    width: 14px !important;
    height: 14px !important;
    stroke: var(--teal) !important;
}

.collection-card:hover .collection-card-icon,
.collection-card:hover .collection-card-image img {
    transform: none !important;
}

.collection-card .shop-now-link {
    font-size: 9px !important;
    font-weight: 700 !important;
    padding: 20px 12px !important;
    border: 1px solid rgba(17, 17, 17, 0.18) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 2px !important;
    width: fit-content !important;
    color: var(--black) !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

/* Best Seller: New Column Classes */
.best-seller-info {
    display: flex;
    flex-direction: column;
}

.best-seller-action {
    margin-top: 4px;
}

.best-seller-benefits {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.benefit-item {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-teal {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    padding: 20px 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: background 0.3s ease;
}

.btn-primary-teal:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

.best-seller-ingredients {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    justify-content: center;
}

.ingredient-card-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.ingredient-circle-img {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.ingredient-circle-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.ingredient-info {
    text-align: left;
}



/* Logo Alignment */
.logo-link {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 5px 0 !important;
    margin: 0 !important;
}

.logo-icon {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 2px !important;
}

/* ─── Responsive Queries ─── */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 32px !important;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-visual {
        justify-content: center !important;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    .feature-block:not(:last-child)::after {
        display: none !important;
    }
    .collection-grid {
        grid-template-columns: 1fr !important;
    }
    .best-seller-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .best-seller-img {
        max-height: 200px !important;
    }
    .best-seller-ingredients {
        align-items: center;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    .combo-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 32px !important;
    }
    .combo-info-left {
        align-items: center;
    }
    .combo-promo-middle {
        align-items: center;
    }
    .combo-visual-right {
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    .trust-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─── Mobile-only Additional Responsive Queries ─── */
@media (max-width: 480px) {
    .hero-heading {
        font-size: clamp(28px, 8vw, 40px) !important;
    }
    .collection-card {
        min-height: 160px !important;
        padding: 20px 18px !important;
    }
    .collection-card-image {
        width: 90px !important;
        height: 110px !important;
    }
    .collection-card-image img {
        max-height: 100px !important;
        max-width: 80px !important;
    }
    .best-seller-grid {
        gap: 32px !important;
    }
    .combo-headline {
        font-size: 17px !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   NEW HOMEPAGE SECTIONS CSS
═══════════════════════════════════════════════════════════ */

/* ── Shared Utilities ── */
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    border: 1.5px solid var(--black);
    color: var(--black);
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s;
}
.btn-outline-dark:hover { background: var(--black); color: #fff; }
.section-cta-row { text-align: center; margin-top:24px; }
.stars-filled { color: #F5A623; font-size: 14px; letter-spacing: 2px; }

/* ── Best Sellers Section ── */
.hp-bestsellers-section {
    padding:20px 0;
    background: #FAF8F5;
}
.hp-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
/* Premium Product Card Redesign (Apple/Aesop Style) */
.luxury-product-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.luxury-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 191, 200, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 191, 200, 0.1);
}

.card-top-layer {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect ratio box */
    background: #0E1014;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #E5E7EB;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 20px 12px;
    border-radius: 4px;
    z-index: 2;
}

.luxury-badge.new {
    background: rgba(0, 191, 200, 0.2);
    color: var(--gold);
    border: 1px solid rgba(0, 191, 200, 0.3);
}

.luxury-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(20, 23, 28, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.45s ease;
}

.luxury-product-card:hover .luxury-wishlist-btn {
    color: var(--gold);
    border-color: var(--gold);
    fill: rgba(0, 191, 200, 0.2);
}

.card-image-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.4));
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-product-card:hover .card-product-img {
    transform: scale(1.05);
}

.luxury-quick-view {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translate(-50%, 20px);
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 20px 24px;
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-product-card:hover .luxury-quick-view {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.card-middle-layer {
    padding: 20px 24px 16px;
    flex-grow: 1;
}

.luxury-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.luxury-product-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 52px;
}

.luxury-tagline {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.card-bottom-layer {
    padding: 0 24px 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.luxury-price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.luxury-price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    transition: color 0.45s ease;
}

.luxury-product-card:hover .luxury-price-current {
    color: var(--gold);
}

.luxury-price-original-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.luxury-price-old {
    font-size: 13px;
    color: var(--gray-muted);
    text-decoration: line-through;
}

.luxury-price-save {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.15);
    padding: 20px 6px;
    border-radius: 4px;
    margin-top: 2px;
}

.luxury-add-form {
    margin: 0;
}

.luxury-add-btn {
    background: var(--surface-hover);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    padding: 20px 20px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.45s ease;
}

.luxury-product-card:hover .luxury-add-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
    transform: translateY(-2px);
}

/* ── Why NYZLOCKS ── */
.hp-why-section {
    padding:20px 0;
    background: #fff;
}
.hp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hp-why-card {
    border: 1px solid #EBEBEB;
    border-radius: 2px;
    padding: 20px 28px;
    background: #FAFAFA;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.hp-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--teal);
    opacity: 0;
    transition: opacity 0.3s;
}
.hp-why-card:hover {
    box-shadow: 0 8px 32px rgba(9,81,86,0.1);
    transform: translateY(-3px);
    border-color: rgba(9,81,86,0.2);
}
.hp-why-card:hover::before { opacity: 1; }
.hp-why-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #E8F4F5 0%, #C8E6E8 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    stroke: var(--teal);
}
.hp-why-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.hp-why-desc {
    font-size: 12px;
    color: #5A5A5A;
    line-height: 1.7;
}

/* ── Ingredient Story ── */
.hp-ingredients-section {
    padding:20px 0;
    background: #0A1628;
}
.hp-ingredients-section .section-label-tag { color: rgba(255,255,255,0.6); }
.hp-ingredients-section .section-heading-xl { color: #fff; }
.hp-ingredients-section .section-subheading { color: rgba(255,255,255,0.65); }
.hp-ingredient-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.hp-ingredient-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
    padding: 20px 24px 28px;
    position: relative;
    transition: background 0.3s, transform 0.3s;
}
.hp-ingredient-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-4px);
}
.hp-ing-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid rgba(255,255,255,0.2);
}
.hp-ing-image img { width: 100%; height: 100%; object-fit: cover; }
.hp-ing-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
}
.hp-ing-name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 4px;
}
.hp-ing-origin {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hp-ing-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}
.hp-ing-benefits {
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hp-ing-benefits li {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    padding-left: 14px;
    position: relative;
    letter-spacing: 0.06em;
}
.hp-ing-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal);
}

/* ── How It Works ── */
.hp-howitworks-section {
    padding:20px 0;
    background: #FAF8F5;
}
.premium-timeline-section {
    padding:25px 0;
    background: #F8F5EF;
}
.timeline-container {
    max-width: 900px;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Tracker */
.timeline-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}
.timeline-progress-bg,
.timeline-progress-fill {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 1;
}
.timeline-progress-bg {
    background: rgba(0, 91, 86, 0.15);
}
.timeline-progress-fill {
    background: var(--gold);
    z-index: 2;
    width: 0%; /* JS will update this */
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.timeline-node {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 120px;
    height: 120px; /* Fixed height ensures equal vertical distribution */
    margin: 0;
    padding: 0;
    gap: 12px;
    position: relative;
    z-index: 3;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}
.node-circle {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin: 4px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(0, 91, 86, 0.2);
    font-size: 14px;
    font-weight: 700;
    color: #555;
    transition: all 0.3s ease;
}
.node-title {
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-align: center;
    transition: color 0.3s ease;
    margin: 0;
    padding: 0;
}
.timeline-node:hover .node-circle,
.timeline-node:focus-visible .node-circle {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(0, 91, 86, 0.1);
}
.timeline-node.active .node-circle {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    width: 56px;
    height: 56px;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0, 91, 86, 0.4);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.timeline-node.active .node-title {
    color: #111;
}
@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 91, 86, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 91, 86, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 91, 86, 0);
    }
}

/* Content Panel */
.timeline-content-wrapper {
    position: relative;
    background: #fff;
    border-radius: 2px;
    padding:24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
}
.timeline-panel {
    display: flex;
    gap: 40px;
    align-items: center;
}
.panel-left {
    flex: 0 0 120px;
    display: flex;
    justify-content: center;
}
.panel-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #F8F5EF;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.panel-right {
    flex: 1;
}
.panel-step-num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.panel-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.panel-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}
.panel-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.chip {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    background: #F4F4F4;
    padding: 20px 16px;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .premium-timeline-section {
        padding: 30px 0;
    }
    .timeline-tracker {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-left: 16px;
    }
    .timeline-progress-bg,
    .timeline-progress-fill {
        top: 0;
        bottom: 0;
        /* Calculation to exactly center the vertical line behind .node-circle:
           Tracker padding-left (16px) + Circle footprint center (56px / 2 = 28px) - Half of Line width (2px / 2 = 1px) */
        left: calc(16px + 28px - 1px);
        right: auto;
        width: 2px;
        height: auto;
        transform: none;
    }
    .timeline-progress-fill {
        height: 0%; /* JS will update this */
        width: 2px !important;
        transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .timeline-node {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 64px; /* Fixed height guarantees no layout shift on text wrap */
        gap: 16px;
    }
    .node-title {
        text-align: left;
    }
    .timeline-content-wrapper {
        padding: 20px 24px;
    }
    .timeline-panel {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .panel-chips {
        justify-content: center;
    }
}

/* ── Before & After ── */
.hp-results-section {
    padding:20px 0;
    background: #fff;
}
/* ── Premium Transformation Showcase ── */
.luxury-transformation-container {
    background: #fff;
    border-radius: 28px;
    padding:32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.trans-nav-controls {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}
.trans-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111;
    transition: all 0.3s ease;
}
.trans-nav-btn:hover, .trans-nav-btn:focus-visible {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 91, 86, 0.2);
    outline: none;
}

.trans-info-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.trans-user-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.trans-avatar-wrap {
    position: relative;
}
.trans-verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-verified 2s infinite;
}
@keyframes pulse-verified {
    0% { box-shadow: 0 0 0 0 rgba(0, 91, 86, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(0, 91, 86, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 91, 86, 0); }
}
.trans-user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.trans-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}
.trans-duration {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}
.trans-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.trans-quote {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 32px;
}
.trans-results-box {
    margin-bottom:20px;
}
.trans-results-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 16px;
}
.trans-results-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.trans-results-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}
.trans-cta {
    align-self: flex-start;
    padding: 20px 32px;
    border-radius: 100px;
}
.trans-cta:hover svg {
    transform: translateX(4px);
}

.trans-visual-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.trans-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 2px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    background: #EBEBEB;
}
.trans-img-before,
.trans-img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.trans-img-before {
    z-index: 1;
}
.trans-img-after {
    z-index: 2;
    /* JS handles clip-path */
}
.trans-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none;
}
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}
.trans-slider-handle.dragging .handle-circle {
    transform: translate(-50%, -50%) scale(1.15);
}
.trans-img-label {
    position: absolute;
    bottom: 20px;
    padding: 20px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #fff;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    z-index: 4;
}
.label-before { left: 20px; }
.label-after { right: 20px; }
.trans-slider-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 20px 16px;
    background: #fff;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 100px;
    z-index: 4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.trans-products-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.trans-products-title {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.trans-products-grid {
    display: flex;
    gap: 16px;
}
.trans-product-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #F8F5EF;
    border-radius: 2px;
    flex: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}
.trans-product-card:hover {
    background: #F0EBE1;
    transform: translateY(-2px);
}
.tp-img-placeholder {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 2px;
    background-image: url("../images/products/beard-growth-oil_0.142fb279faf9.webp");
    background-size: cover;
    background-position: center;
}
.tp-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tp-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}
.tp-desc {
    font-size: 11px;
    color: #666;
}

/* ── Customer Reviews ── */
/* Video Showcase */
/* ── NYZLOCKS Journey Section ── */
.journey-section {
    position: relative;
    background: #F8F5EF;
    overflow: hidden;       /* clip vertical overflow on desktop */
    overflow-x: hidden;     /* prevent .journey-bg-text horizontal bleed */
    padding:25px 0;
}
.journey-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 800;
    color: #111;
    opacity: 0.03;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
    font-family: var(--font-serif, 'Playfair Display', serif);
}
.journey-pin-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 80vh; /* Fixed height during pin */
    z-index: 2;
}
.journey-timeline-line {
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(17,17,17,0.1);
    transform: translateX(-50%);
    z-index: 3;
}
.journey-timeline-progress {
    width: 100%;
    background: var(--gold);
    height: 0%;
}

.journey-split-layout {
    display: flex;
    height: 100%;
    width: 100%;
}
.journey-visuals {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:20px;
}
.journey-img-wrap {
    position: relative;
    width: 100%;
    /* Constrain max width by 85%, 400px, OR 45vh to ensure height (4/3 of width) never exceeds 60vh */
    max-width: min(85%, 400px, 45vh); 
    aspect-ratio: 3/4;
    border-radius: 2px;
    overflow: visible;
    box-shadow: none;
}
.j-img-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: visible !important;
}
.j-img-group.active {
    opacity: 1;
}
.j-img-primary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.j-img-secondary {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50%;
    height: auto;
    object-fit: contain;
    border: 6px solid #F8F5EF;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 10;
}

.journey-content {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.j-step {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 80px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
}
.j-step.active {
    opacity: 1;
    pointer-events: auto;
}
.j-milestone {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.j-text {
    font-size: clamp(24px, 3.5vw, 42px);
    line-height: 1.3;
    font-weight: 400;
    color: #111;
    font-family: var(--font-serif, 'Playfair Display', serif);
}

.journey-finale {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F8F5EF;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}
.finale-title {
    font-size: 48px;
    font-family: var(--font-serif, 'Playfair Display', serif);
    color: #111;
    margin-bottom:30px;
}

/* Responsive visibility utilities */
@media (min-width: 992px) {
    .mobile-only { display: none !important; }
}
@media (max-width: 991px) {
    .desktop-only { display: none !important; }
}

/* Desktop: Curved Product Lineup */
.finale-product-arc {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 450px;
}
.f-prod {
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.f-prod img {
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}
.f-prod:hover {
    transform: translateY(-15px) !important;
    z-index: 20;
}
/* Arc Positioning */
.pos-1 { bottom: 0; left: 0; transform: rotate(-15deg); }
.pos-2 { bottom: 50px; left: 20%; transform: rotate(-8deg); }
.pos-3 { bottom: 100px; left: 50%; transform: translateX(-50%); }
.pos-3 img { height: 380px; } /* Hero product bigger */
.pos-4 { bottom: 50px; right: 20%; transform: rotate(8deg); }
.pos-5 { bottom: 0; right: 0; transform: rotate(15deg); }
/* Animated List Magic UI Demo */
.animated-list-demo {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 500px;
    width: 100%;
    overflow: hidden;
    padding: 8px;
    margin: 0 auto;
    max-width: 450px;
}
.animated-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    /* We want items to push down */
}
.animated-notification-card {
    position: relative;
    margin: 10px auto;
    min-height: fit-content;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
    padding: 16px;
    background-color: white;
    box-shadow: 0 0 0 1px rgba(0,0,0,.03), 0 2px 4px rgba(0,0,0,.05), 0 12px 24px rgba(0,0,0,.05);
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    /* Entrance Animation defaults */
    opacity: 0;
    max-height: 0;
    transform: scale(0.9) translateY(-10px);
    will-change: opacity, transform, max-height;
}
.animated-notification-card.show {
    animation: animate-in 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes animate-in {
    0% {
        opacity: 0;
        max-height: 0;
        transform: scale(0.9) translateY(-20px);
        margin: 0 auto;
        padding: 0 16px;
    }
    100% {
        opacity: 1;
        max-height: 120px;
        transform: scale(1) translateY(0);
        margin: 10px auto;
        padding: 16px;
    }
}
.animated-notification-card:hover {
    transform: scale(1.03);
}
.anc-icon {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 18px;
    flex-shrink: 0;
}
.anc-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.anc-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    color: #111;
}
.anc-time {
    font-size: 12px;
    color: #888;
}
.anc-desc {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
    margin-top: 2px;
}
.fade-bottom-gradient {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 25%;
    background: linear-gradient(to top, #F8F5EF 0%, transparent 100%);
    z-index: 10;
}

.finale-cta {
    margin-top:30px;
    text-align: center;
}
.finale-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
    font-style: italic;
    font-family: var(--font-serif, 'Playfair Display', serif);
}

.hp-reviews-section {
    padding:20px 0;
    background: #F4F7F7;
}
.hp-reviews-aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}
.hp-agg-rating {
    font-size: 48px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}
.hp-reviews-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 2px 18px;
    scrollbar-width: thin;
    scrollbar-color: rgba(9, 81, 86, 0.35) transparent;
}
.hp-review-card {
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 2px;
    padding: 28px;
    transition: box-shadow 0.3s, transform 0.3s;
    flex: 0 0 calc((100% - 40px) / 3);
    scroll-snap-align: start;
}
.hp-review-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.hp-review-stars {
    font-size: 16px;
    color: #F5A623;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.hp-review-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.35;
}
.hp-review-text {
    font-size: 13px;
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 20px;
}
.hp-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #F0F0F0;
    padding-top: 16px;
}
.hp-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A6C73 0%, #095156 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hp-review-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}
.hp-review-product {
    font-size: 10px;
    color: #888;
    margin: 0;
}
.hp-review-verified {
    margin-left: auto;
    font-size: 9px;
    color: #00A67E;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

/* ── Brand Story ── */
/* Instagram / Community */
.hp-community-section {
    padding:22px 0;
    background: #fff;
}
.hp-community-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.hp-community-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.16;
    border-radius: 2px;
    background: #F8F6F2;
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 16px 42px rgba(17, 17, 17, 0.055);
    text-decoration: none;
    display: block;
}
.hp-community-card:nth-child(2n) {
    transform: translateY(18px);
}
.hp-community-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.hp-community-card:hover img {
    transform: scale(1.06);
}
.hp-community-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 20px 14px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.72));
    transform: translateY(8px);
    opacity: 0.92;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.hp-community-card:hover .hp-community-overlay {
    transform: translateY(0);
    opacity: 1;
}
.hp-community-overlay span {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.78;
}
.hp-community-overlay strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-top: 3px;
}
.hp-community-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top:27px;
    padding: 20px 28px;
    background: #FAF8F5;
    border: 1px solid #EBEBEB;
    border-radius: 2px;
}
.hp-community-cta p {
    margin: 0;
    font-size: 13px;
    color: #4A4A4A;
}
.hp-community-cta strong {
    color: var(--teal);
    letter-spacing: 0.08em;
}

.hp-brand-section {
    padding:24px 0;
    background: #fff;
}
.hp-brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hp-brand-visual { position: relative; }
.hp-brand-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 2px;
    display: block;
    margin: 0 auto;
}
.hp-brand-badge-float {
    position: absolute;
    bottom: 24px;
    right: 16px;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(9,81,86,0.4);
}
.hp-brand-badge-year { font-size: 18px; font-weight: 800; line-height: 1; }
.hp-brand-badge-label { font-size: 9px; letter-spacing: 0.14em; opacity: 0.8; }
.hp-brand-para {
    font-size: 14px;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 16px;
}
.hp-brand-values { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.hp-brand-value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: #F8F6F2;
    border-radius: 2px;
    border-left: 3px solid var(--teal);
}
.hp-brand-value-icon { font-size: 22px; flex-shrink: 0; }
.hp-brand-value-title { font-size: 12px; font-weight: 800; color: var(--black); margin-bottom: 3px; letter-spacing: 0.06em; }
.hp-brand-value-desc { font-size: 12px; color: #5A5A5A; line-height: 1.6; margin: 0; }

/* ── FAQ Section ── */
.hp-faq-section {
    padding:20px 0;
    background: #F8F6F2;
}
.hp-faq-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.hp-faq-accordion { display: flex; flex-direction: column; gap: 2px; }
.hp-faq-item { background: #fff; border-radius: 6px; overflow: hidden; border: 1px solid #E8E8E8; }
.hp-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    gap: 16px;
    transition: background 0.2s;
}
.hp-faq-question:hover { background: #F8F8F8; }
.hp-faq-item.open .hp-faq-question { color: var(--teal); }
.hp-faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--teal);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.hp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.hp-faq-answer p {
    padding: 0 24px 20px;
    font-size: 13px;
    color: #5A5A5A;
    line-height: 1.8;
}
.hp-faq-cta-panel { position: sticky; top: 100px; }
.hp-faq-cta-inner {
    background: #FFFFFF;
    color: var(--black);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.hp-faq-cta-icon { font-size: 42px; margin-bottom: 16px; display: inline-block; }
.hp-faq-cta-title { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 12px; letter-spacing: 0.02em; }
.hp-faq-cta-desc { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 24px; }
.hp-faq-cta-hours { font-size: 11px; color: #777777; margin-top: 16px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.hp-faq-cta-inner .btn-primary {
    width: 100%;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    padding: 16px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(143, 27, 31, 0.25);
}
.hp-faq-cta-inner .btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143, 27, 31, 0.4);
}

/* ── Newsletter ── */
.hp-newsletter-section {
    padding: 0;
    background: linear-gradient(135deg, #084148 0%, #0A5C65 50%, #095156 100%);
}
.hp-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 480px;
}
.hp-newsletter-copy {
    padding:20px 64px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hp-newsletter-heading {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.hp-newsletter-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 400px;
}
.hp-newsletter-perks {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hp-newsletter-perks li {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}
.hp-newsletter-form-wrap {
    background: rgba(255,255,255,0.06);
    border-left: 1px solid rgba(255,255,255,0.1);
    padding:20px 0 80px 64px;
    display: flex;
    align-items: center;
}
.hp-newsletter-form { width: 100%; max-width: 360px; }
.hp-form-group { margin-bottom: 16px; }
.hp-form-label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.hp-form-input {
    width: 100%;
    padding: 20px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 13px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.hp-form-input::placeholder { color: rgba(255,255,255,0.4); }
.hp-form-input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.hp-newsletter-submit {
    width: 100%;
    padding: 15px;
    background: #fff;
    color: var(--teal);
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}
.hp-newsletter-submit:hover { background: #E8F4F5; transform: translateY(-1px); }
.hp-newsletter-privacy {
    text-align: center;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   NEW SECTIONS RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hp-product-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-ingredient-showcase { grid-template-columns: repeat(2, 1fr); }
    .hp-results-grid { grid-template-columns: 1fr 1fr 1fr; }
    .hp-results-stats { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
    .hp-video-grid { grid-template-columns: 1fr; gap: 40px; }
    .hp-community-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .hp-why-grid { grid-template-columns: repeat(2, 1fr); }
    .hp-steps-grid { flex-direction: column; }
    .hp-step-arrow { transform: rotate(90deg); padding: 20px 0; }
    .hp-brand-grid { grid-template-columns: 1fr; gap: 40px; }
    .hp-brand-img { max-width: 320px; }
    .hp-faq-grid { grid-template-columns: 1fr; }
    .hp-faq-cta-panel { position: static; }
    .hp-newsletter-inner { grid-template-columns: 1fr; }
    .hp-newsletter-copy { padding: 28px 40px 32px; }
    .hp-newsletter-form-wrap { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 40px 56px; }
    .hp-results-grid { grid-template-columns: 1fr; }
    .hp-review-card { flex-basis: calc((100% - 20px) / 2); }
    .hp-community-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .hp-product-grid { grid-template-columns: 1fr; }
    .hp-why-grid { grid-template-columns: 1fr; }
    .hp-ingredient-showcase { grid-template-columns: 1fr; }
    .hp-review-card { flex-basis: 86%; }
    .hp-community-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hp-community-card:nth-child(2n) { transform: none; }
    .hp-video-media,
    .hp-video-media img { min-height: 300px; }
    .hp-video-overlay { align-items: flex-end; gap: 16px; padding: 20px; }
    .hp-video-caption { text-align: left; }
    .hp-video-mini-grid { grid-template-columns: 1fr; }
    .hp-newsletter-copy,
    .hp-newsletter-form-wrap { padding-left: 20px; padding-right: 20px; }
    .hp-result-compare { height: 200px; }
}

/* ==========================================================================
   LUXURY INTERACTIVE REDESIGN (GSAP & 3D)
   ========================================================================== */

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(17, 17, 17, 0.05);
}

.glass-panel-dark {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* 3D and Hover Lift */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.12);
}

/* 3D Tilt Wrapper */
.tilt-wrapper {
    perspective: 1000px;
    transform-style: preserve-3d;
}
.tilt-element {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Glow Effects */
.glow-on-hover {
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.glow-on-hover:hover {
    box-shadow: 0 0 25px rgba(10, 108, 115, 0.4);
    border-color: rgba(10, 108, 115, 0.8);
}

/* Floating Animation */
@keyframes float-subtle {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
.animate-float {
    animation: float-subtle 6s ease-in-out infinite;
}

/* Particles / Leaves */
.ambient-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 108, 115, 0.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(8px);
}

/* Sticky Add To Cart Bar */
.sticky-cart-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    transition: bottom 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.sticky-cart-bar.visible {
    bottom: 0;
}
.sticky-cart-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sticky-cart-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}
.sticky-cart-title {
    font-size: 14px;
    font-weight: 700;
}
.sticky-cart-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
}

/* Text Reveals */
.gsap-reveal-text {
    /* Removed clip-path and opacity to let GSAP handle the reveal */
}

/* Enhanced CTA */
.btn-luxury {
    background: var(--teal);
    color: var(--white);
    padding: 20px 36px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.4s ease;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}
.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(10, 108, 115, 0.3);
}
.btn-luxury:hover::before {
    transform: translateX(100%);
}

/* Trust Signals */
.trust-signal-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px !important;
    background: rgba(10, 108, 115, 0.08);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.05em;
}

/* ─── Premium Features Card (Based on New Design) ─── */
.features-section {
    padding: 30px 0;
    margin-bottom:32px;
}

.features-card {
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 16px 48px rgba(10, 108, 115, 0.06);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.feature-block {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.feature-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: rgba(13, 74, 77, 0.08);
}

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f0f7f7, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(13, 74, 77, 0.08), 0 12px 24px rgba(13, 74, 77, 0.04);
    position: relative;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px dashed rgba(13, 74, 77, 0.25);
}

.feature-block .feature-icon {
    width: 28px !important;
    height: 28px !important;
    color: var(--gold-dark);
    position: relative;
    z-index: 2;
    margin: 0 !important;
}

.feature-block .feature-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.feature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.feature-divider::before, .feature-divider::after {
    content: '';
    height: 1px;
    width: 16px;
    background: rgba(13, 74, 77, 0.3);
}

.feature-divider .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-dark);
}

.feature-block .feature-desc {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
        gap: 48px;
    }
    .feature-block:not(:last-child)::after {
        display: none;
    }
}

/* ─── Custom Collection Section (New Design) ─── */
.collection-section {
    padding:20px 0;
    position: relative;
    background: transparent;
}
.section-header.center {
    text-align: center;
    margin-bottom:25px;
}
.section-title-script {
    font-size: 24px;
    font-style: italic;
    color: #1b5b5c;
    margin-bottom: 4px;
}
.title-divider.fancy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}
.title-divider.fancy h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0b4e53;
    letter-spacing: 1px;
    margin: 0;
}
.title-divider.fancy .dot-line {
    display: flex;
    align-items: center;
}
.title-divider.fancy .dot-line::after {
    content: '';
    width: 60px;
    height: 1px;
    background: #6ca144;
}
.title-divider.fancy .dot-line.left::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #6ca144;
    margin-right: 8px;
}
.title-divider.fancy .dot-line.right::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #6ca144;
    margin-left: 8px;
    order: 2;
}
.title-divider.fancy .dot-line.right::before {
    content: '';
    width: 60px;
    height: 1px;
    background: #6ca144;
    order: 1;
}

.section-header.center .section-subheading {
    color: #777;
    font-size: 14px;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.custom-card {
    display: flex;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
}
.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.card-green {
    background: linear-gradient(135deg, #f1f8ee, #e4eedb);
}
.card-blue {
    background: linear-gradient(135deg, #f0f7fd, #e0eff8);
}
.card-beige {
    background: linear-gradient(135deg, #fdf8f0, #faeee1);
}

.custom-card-content {
    flex: 1;
    padding: 20px 16px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.custom-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.card-green .custom-card-icon { color: #6ca144; }
.card-blue .custom-card-icon { color: #2e7a9e; }
.card-beige .custom-card-icon { color: #d68748; }

.custom-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #113c3e;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.custom-card-line {
    width: 24px;
    height: 2px;
    background: #6ca144;
    margin-bottom: 16px;
}
.card-blue .custom-card-line { background: #2e7a9e; }
.card-beige .custom-card-line { background: #d68748; }

.custom-card-desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.4;
}

.custom-shop-btn {
    display: inline-block;
    padding: 20px 16px;
    background: #113c3e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    width: fit-content;
}

.custom-card-img {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 55%;
    height: 90%;
    z-index: 1;
}
.custom-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    mix-blend-mode: multiply;
}

@media (max-width: 992px) {
    .custom-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .custom-grid { grid-template-columns: 1fr; }
    .title-divider.fancy h2 { font-size: 28px; }
}





/* ═══════════════ FEATURES ROW (4 CARDS) ═══════════════ */
.features-section {
    padding: 30px 0;
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.features-card {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    overflow: visible !important;
}

.feature-block {
    background: linear-gradient(145deg, #ffffff, #f9fbfb);
    border-radius: 2px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    min-width: 0;
    box-shadow: 0 15px 45px rgba(16, 59, 50, 0.06);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 55px rgba(16, 59, 50, 0.1);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #103B32;
    background: linear-gradient(135deg, rgba(16, 59, 50, 0.03), rgba(16, 59, 50, 0.12));
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.8);
}

.feature-icon {
    width: 28px;
    height: 28px;
    stroke: #103B32;
}

.feature-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #103B32;
    text-transform: uppercase;
    margin-bottom: 12px;
    word-break: break-word;
    text-align: center;
}

.feature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.feature-divider .dot {
    width: 4px;
    height: 4px;
    background-color: #103B32;
    border-radius: 50%;
}

.feature-desc {
    font-size: 13px;
    color: #767676;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ═══════════════ HERO 3D MODEL VIEWER ═══════════════ */
.hero-model-viewer {
    width: 100%;
    height: 600px;
    outline: none;
    --poster-color: transparent;
    display: block;
    margin: 0 auto;
    transform: translateX(5%) scale(0.85);
}

@media (max-width: 991px) {
    .hero-model-viewer {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .hero-model-viewer {
        height: 350px;
    }
}

/* Responsive Transformations */
@media (max-width: 992px) {
    .luxury-transformation-container {
        flex-direction: column;
        padding: 20px 24px;
        gap: 48px;
    }
    .trans-info-panel, .trans-visual-panel {
        width: 100%;
    }
    .trans-nav-controls {
        bottom: -60px;
    }
}
@media (max-width: 576px) {
    .trans-products-grid {
        flex-direction: column;
    }
    .trans-quote {
        font-size: 24px;
    }
}

/* ── NYZLOCKS Journey: Mobile (≤992px) ── */
/* ═══════════════════════════════════════════════════════════════
   JOURNEY SECTION — MOBILE REDESIGN (≤ 992px)
   Design: Vertical step-cards. Each step = full-width card with
   its own image + milestone label + story text.
   No pinning, no sticky, no GSAP conflicts.
═══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {

/* ── Section shell ── */
    section#journey-section {
        padding: 30px 0 40px !important;
        overflow: hidden !important;
        height: auto !important;
    }
    /* Kill the GSAP pin spacer height that causes the 2040px gap */
    .gsap-pin-spacer {
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
    }
    .journey-bg-text {
        font-size: 15vw !important;
        opacity: 0.03;
        top: 50%;
        left: 0 !important;
        width: 100% !important;
        text-align: center !important;
        transform: translateY(-50%) !important;
    }
    .journey-pin-container {
        height: auto !important;
        min-height: 0 !important;
        padding-inline: 20px !important;
    }
    .journey-timeline-line {
        display: none !important;
    }

    /* ── Hide the old split layout wrappers ── */
    .journey-split-layout {
        display: block;
    }
    .journey-visuals {
        display: none !important; /* images are per-card now */
    }

    /* ── Journey content: vertical stack of cards ── */
    .journey-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 0 32px !important;
        position: static !important;
        height: auto !important;
        align-items: stretch !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* ── Each step = a self-contained card ── */
    .j-step {
        /* Reset all desktop GSAP/absolute positioning */
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        translate: none !important;
        rotate: none !important;
        scale: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box;

        /* Card styling */
        background: #fff;
        border-radius: 2px;
        overflow: hidden;
        box-shadow: 0 2px 16px rgba(0, 91, 86, 0.08);
        border: 1px solid rgba(0, 91, 86, 0.08);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    .j-step:hover {
        box-shadow: 0 8px 32px rgba(0, 91, 86, 0.14);
    }

    /* ── Card image: pulled from data-img attribute via CSS attr() ──
       We inject the matching image as a pseudo-element background.
       The actual images are shown via .j-step-img helper divs
       added by JS below. ── */
    .j-step-img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
    }

    /* ── Card text body ── */
    .j-step-body {
        padding: 20px;
    }

    /* ── Milestone label ── */
    .j-milestone {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        font-size: 10px !important;
        font-weight: 800 !important;
        letter-spacing: 0.18em !important;
        text-transform: uppercase;
        color: var(--gold) !important;
        background: rgba(0, 91, 86, 0.07);
        padding: 20px 10px;
        border-radius: 2px;
        margin-bottom: 12px !important;
    }

    /* ── Step text ── */
    .j-text {
        font-size: 16px !important;
        line-height: 1.55 !important;
        font-weight: 400 !important;
        color: #2a2a2a;
        font-family: var(--font-serif, 'Playfair Display', serif);
        margin: 0;
    }

    /* ── Finale section ── */
    .journey-finale {
        position: relative !important;
        inset: auto !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        padding: 20px 16px 20px;
        text-align: center;
        background: transparent;
    }
    .finale-title {
        font-size: 24px;
        margin-bottom: 24px;
        text-align: center;
    }
    .finale-product-arc {
        position: static;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 24px;
    }
    .f-prod {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        transition: transform 0.3s ease;
    }
    .f-prod:hover {
        transform: translateY(-6px) !important;
    }
    .f-prod img,
    .pos-3 img {
        height: 90px;
        font-size: 26px;
        text-align: center;
        margin-bottom: 20px;
    }
    .finale-cta {
        text-align: center;
    }
}

/* ── NYZLOCKS Journey: Small Mobile (≤576px) ── */
@media (max-width: 576px) {
    section#journey-section {
        padding: 20px 0 60px;
        overflow-x: hidden; /* belt-and-suspenders: clips bg-text bleed */
    }
    /* Fix: shrink watermark from 28vw → 12vw to stop horizontal overflow */
    .journey-bg-text {
        font-size: 12vw;
        opacity: 0.04; /* slightly more visible at smaller size */
    }
    .journey-img-wrap {
        aspect-ratio: 1 / 1;
        max-height: 240px;
    }
    /* Fix: explicit 100% width so steps don't collapse to intrinsic width */
    .journey-content,
    .j-step {
        width: 100% !important;
        box-sizing: border-box;
    }
    .j-milestone {
        font-size: 10px;
        letter-spacing: 0.15em;
        margin-bottom: 8px;
    }
    .j-text {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
    }
    .j-img-secondary {
        width: 50%;
        bottom: -8%;
        right: -8%;
        border: 3px solid white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }
}

/* ── Journey: DevTools Diagnostic Fixes (≤ 768px) ──
   Targets the 2040px pin-spacer height, layout collapse,
   and background text overflow identified in DevTools. */
@media (max-width: 768px) {
    section#journey-section {
        padding: 20px 0 !important;
        overflow: hidden !important;
        height: auto !important;
    }
    /* Collapse the GSAP pin spacer that creates the huge gap */
    .gsap-pin-spacer {
        height: auto !important;
        min-height: 0 !important;
        padding-bottom: 0 !important;
    }
    .journey-bg-text {
        font-size: 15vw !important;
        width: 100% !important;
        text-align: center !important;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        opacity: 0.05 !important;
    }
    .journey-split-layout,
    .journey-content {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
    }
    .journey-img-wrap,
    .j-step-img {
        width: 100% !important;
        height: 220px !important;
        aspect-ratio: unset !important;
        object-fit: cover !important;
    }
    .j-step {
        width: 100% !important;
        display: block !important;
        margin-bottom: 20px !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        position: relative !important;
    }
    .journey-timeline-line,
    .journey-visuals {
        display: none !important;
    }
}

/* ─── Premium Footer ─── */
.pf-footer {
    background: #09090b;
    color: #a1a1aa;
    padding:20px 0 0;
    font-family: 'Poppins', sans-serif;
}

.pf-top {
    padding-bottom:30px;
}

.pf-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.pf-col-brand .pf-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pf-logo-name {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1;
}

.pf-logo-tagline {
    font-size: 11px;
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-top: 6px;
}

.pf-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 320px;
    color: #a1a1aa;
}

.pf-social {
    display: flex;
    gap: 12px;
}

.pf-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #e4e4e7;
    transition: all 0.3s ease;
}

.pf-social-link:hover {
    background: #0d9488;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
}

.pf-heading {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08); /* section separator */
}

.pf-nav {
    display: flex;
    flex-direction: column;
    gap: 10px; /* tighter than current large gap */
}

.pf-link {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.pf-link:hover {
    color: #0d9488;
    padding-left: 4px;
}

.pf-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pf-contact-item {
    display: flex;
    align-items: center;   /* not center-stacked, inline-centered */
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.pf-contact-item svg {
    flex-shrink: 0;
    color: #0d9488;
}

.pf-link-text {
    color: #a1a1aa;
}

.pf-contact-item a.pf-link {
    padding-left: 0;
}

.pf-badges {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.pf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 20px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #e4e4e7;
    font-weight: 600;
}

.pf-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    background: #000000;
}

.pf-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #71717a;
}

.pf-copyright {
    margin: 0;
}

.pf-payment-icons {
    display: flex;
    gap: 8px;
}

.pf-pay-badge {
    background: rgba(255,255,255,0.1);
    padding: 20px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #a1a1aa;
    text-transform: uppercase;
}

.pf-bottom-links {
    display: flex;
    gap: 16px;
}

.pf-policy-link {
    color: #71717a;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.pf-policy-link:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -12px;
    opacity: 0.4;
}

.pf-policy-link:hover {
    color: #e4e4e7;
}

@media (max-width: 992px) {
    .pf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 576px) {
    .pf-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pf-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .pf-policy-links {
        justify-content: center;
    }
}

@keyframes vibrate-subtle {
  0%, 20%, 100% { transform: translateX(0) rotate(0); }
  5% { transform: translateX(-2px) rotate(-1deg); }
  10% { transform: translateX(2px) rotate(1deg); }
  15% { transform: translateX(-2px) rotate(-1deg); }
}
.btn-attractive {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(200, 148, 62, 0.1);
  border-radius: 9999px !important;
  border: 2px solid var(--color-accent-primary) !important;
  animation: vibrate-subtle 2.5s ease-in-out infinite;
}
.btn-attractive:hover {
  box-shadow: 0 0 25px rgba(200, 148, 62, 0.4);
  background-color: rgba(200, 148, 62, 0.1) !important;
}
.btn-attractive:active {
  box-shadow: 0 0 40px 10px rgba(200, 148, 62, 0.8), inset 0 0 15px rgba(200, 148, 62, 0.5) !important;
  transform: scale(0.95);
  background-color: rgba(200, 148, 62, 0.3) !important;
}
.btn-attractive::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}
.btn-attractive:hover::after {
  left: 150%;
}

@media (max-width: 768px) {
    .sticky-cart-bar {
        padding: 4px 10px !important;
        gap: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        z-index: 9999 !important;
        bottom: -150px;
        min-height: 44px !important;
    }
    .sticky-cart-bar.visible {
        bottom: 0 !important;
    }
    .sticky-cart-info {
        gap: 6px !important;
    }
    .sticky-cart-img {
        width: 28px !important;
        height: 28px !important;
    }
    .sticky-cart-title {
        font-size: 11px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 110px !important;
        line-height: 1.2 !important;
    }
    .trust-signal-badge {
        font-size: 8px !important;
        line-height: 1 !important;
        padding: 1px 4px !important;
    }
    .sticky-cart-price {
        font-size: 11.5px !important;
        font-weight: 700 !important;
    }
    .sticky-cart-bar .btn-luxury {
        padding: 5px 10px !important;
        font-size: 9px !important;
        letter-spacing: 0.05em !important;
        white-space: nowrap !important;
        height: auto !important;
        min-height: unset !important;
    }
    .sticky-cart-bar > div:last-child {
        gap: 6px !important;
    }
}
\n
/* ZOFO FEATURED COLLECTION LAYOUT */
/* ═══════════ ZOFO / FEATURED COLLECTION ═══════════ */
.zofo-layout {
    background-color: #F9D9B9;
    padding: 40px 24px 60px;
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
}
/* The outer section needs bottom padding too */
.zofo-section {
    background-color: #F9D9B9;
    width: 100%;
    position: relative;
    padding-bottom: 40px;
}
@media (max-width: 768px) {
    .zofo-layout {
        padding: 40px 24px 50px;
    }
}
.zofo-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
}
.zofo-see-all {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    line-height: 1;
    text-underline-offset: 3px;
    z-index: 10;
}
@media (max-width: 768px) {
    .zofo-see-all {
        top: 18px;
        right: 24px;
        font-size: 14px;
    }
}
/* Flexbox grid — cards are fixed-size and centered */
.zofo-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    clear: both;
    margin-top: 24px;
}
/* On mobile: 2 per row */
.zofo-products .zofo-product-item {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    min-width: 0;
}
/* Tablet+: fixed 220px width, centers automatically */
@media (min-width: 640px) {
    .zofo-products .zofo-product-item {
        flex: 0 0 220px;
        max-width: 220px;
        min-width: 0;
    }
}
/* Desktop: 230px */
@media (min-width: 1024px) {
    .zofo-products .zofo-product-item {
        flex: 0 0 230px;
        max-width: 230px;
        min-width: 0;
    }
}
.zofo-product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}
.zofo-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
/* Placeholder div for missing images */
div.image-container {
    background-color: #e5e7eb;
}
.zofo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background-color: #fff !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    border-radius: 2px;
}
.zofo-badge h5 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
    color: #000 !important;
}
.zofo-product-details {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 6px;
}
/* ── Stars ── */
.t4s-product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
}
.jdgm-prev-badge__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    line-height: 1;
}
.jdgm-star {
    font-style: normal;
    font-size: 13px;
    color: #8F1B1F;
    line-height: 1;
}
.jdgm-prev-badge__text {
    font-size: 11px;
    color: #8F1B1F;
    margin-left: 3px;
    line-height: 1;
}
/* ── Product info ── */
.zofo-product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0;
}
.zofo-product-info a {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}
.zofo-product-subtitle {
    font-size: 11.5px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
/* ── Footer (price + Add) ── */
.zofo-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}
.zofo-product-price .active {
    font-size: 13.5px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}
/* Add button – works for both <button> and <a> */
.zofo-add-to-cart-btn a.t4s-pr-addtocart,
.zofo-add-to-cart-btn button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 7px 16px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s;
    line-height: 1;
    white-space: nowrap;
}
.zofo-add-to-cart-btn a.t4s-pr-addtocart:hover,
.zofo-add-to-cart-btn button:hover {
    background-color: #333;
    color: #fff;
}
.t4s-text-pr {
    pointer-events: none;
}

/* ── Attractive Add to Cart Button Hover ── */
.btn-attractive {
    background-color: #000000 !important;
    color: #ffffff !important;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

.btn-attractive:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

/* ─── Premium Product Detail Page (PDP) Button Styles ─── */
.pdp-btn-primary {
    position: relative;
    background: #F2F2F2 !important;
    color: #030303 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 16px 28px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.pdp-btn-primary svg {
    color: #030303 !important;
    stroke: #030303 !important;
}

.pdp-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    transform: skewX(-20deg);
    transition: left 0.75s ease;
}

.pdp-btn-primary:hover {
    background: #E5E5E5 !important;
    color: #030303 !important;
    border-color: #D4D4D4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pdp-btn-primary:hover::before {
    left: 150%;
}

.pdp-btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.pdp-btn-outline {
    position: relative;
    background: #030303 !important;
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 16px 28px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px -4px rgba(3, 3, 3, 0.6), 0 4px 10px -2px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.pdp-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.75s ease;
}

.pdp-btn-outline:hover {
    background: #111111 !important;
    border-color: #8F1B1F;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.8);
}

.pdp-btn-outline:hover::before {
    left: 150%;
}

.pdp-btn-outline:active {
    transform: translateY(0) scale(0.98);
}


/* Wishlist and Share Action Buttons */
.pdp-action-icon-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e4e4e7;
    background: #ffffff;
    color: #27272a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pdp-action-icon-btn:hover {
    border-color: #8F1B1F;
    color: #8F1B1F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(143, 27, 31, 0.15);
    background: #fff8f8;
}

.pdp-action-icon-btn.in-wishlist {
    border-color: #8F1B1F;
    background: #8F1B1F;
    color: #ffffff;
}

.pdp-action-icon-btn.in-wishlist:hover {
    background: #701215;
    color: #ffffff;
}

/* Wishlist Button Overlay on Product Image */
.pdp-wishlist-overlay-btn,
.luxury-wishlist-btn {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 30 !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    aspect-ratio: 1 / 1 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    margin: 0 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
}

.pdp-wishlist-overlay-btn:hover,
.luxury-wishlist-btn:hover {
    background: #ffffff !important;
    color: #ef4444 !important;
    transform: scale(1.08) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.25) !important;
}

.pdp-wishlist-overlay-btn.in-wishlist,
.luxury-wishlist-btn.in-wishlist {
    background: #ffffff !important;
    color: #ef4444 !important;
    border-color: rgba(239, 68, 68, 0.25) !important;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2) !important;
}

.pdp-wishlist-overlay-btn.in-wishlist svg,
.luxury-wishlist-btn.in-wishlist svg {
    fill: #ef4444 !important;
    color: #ef4444 !important;
    stroke: #ef4444 !important;
}

.pdp-wishlist-overlay-btn.in-wishlist:hover,
.luxury-wishlist-btn.in-wishlist:hover {
    background: #ffffff !important;
    color: #dc2626 !important;
    transform: scale(1.1) !important;
}



/* Modern Quantity Counter Widget */
.pdp-qty-widget {
    display: inline-flex;
    align-items: center;
    background: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    padding: 4px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.pdp-qty-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: none;
    background: #ffffff;
    color: #18181b;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.pdp-qty-btn:hover {
    background: #8F1B1F;
    color: #ffffff;
    transform: scale(1.05);
}

.pdp-qty-btn:active {
    transform: scale(0.95);
}

.pdp-qty-input {
    width: 48px;
    height: 38px;
    text-align: center;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: #18181b;
    font-family: 'Poppins', sans-serif;
}

/* Variant selection chip */
.pdp-variant-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #e4e4e7;
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #27272a;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* ─── Order Button Slide & Tick Animation ─── */
@keyframes checkoutCartSlide {
    0% {
        left: -12%;
        opacity: 0;
        transform: translateY(-50%) scale(0.8) rotate(-5deg);
    }
    15% {
        opacity: 1;
        transform: translateY(-50%) scale(1.15) rotate(0deg);
    }
    85% {
        opacity: 1;
        transform: translateY(-50%) scale(1.15) rotate(0deg);
    }
    100% {
        left: 108%;
        opacity: 0;
        transform: translateY(-50%) scale(0.8) rotate(5deg);
    }
}

.animate-cart-slide-across {
    animation: checkoutCartSlide 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0.3) rotate(-20deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.2) rotate(5deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.animate-checkmark-pop {
    animation: checkmarkPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.pdp-variant-chip:hover {
    border-color: #8F1B1F;
    color: #8F1B1F;
    transform: translateY(-1px);
}

.pdp-variant-chip.active {
    border-color: #8F1B1F;
    background: rgba(143, 27, 31, 0.05);
    color: #8F1B1F;
    box-shadow: 0 4px 12px rgba(143, 27, 31, 0.15);
}

