/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
*:focus-visible { outline: 2px solid #000; outline-offset: 2px; }

:root {
    /* Greens */
    --forest: #1f3a2c;          /* deep dark green - primary brand */
    --forest-deep: #142a1f;     /* darker variant for hover */
    --forest-soft: #2e5340;     /* medium green */
    --sage: #88a991;            /* light/dusty sage green */
    --sage-pale: #d8e3d3;       /* very pale sage */
    --mint-pale: #eaf2e6;       /* very pale mint background */

    /* Gold */
    --gold: #c9a96e;            /* warm gold */
    --gold-light: #d9bf85;      /* light gold */
    --gold-deep: #a8884e;       /* deeper gold */

    /* Neutrals */
    --black: var(--forest-deep);
    --text: #1a2820;
    --text-soft: #4a5a52;
    --muted: #7d8a82;
    --border: #e3eae0;
    --bg: #ffffff;
    --bg-soft: #f7f9f4;
    --bg-cream: #fbf8ef;

    /* Accents kept for compatibility */
    --accent: var(--gold);
    --accent-blue: var(--sage);
    --accent-pink: var(--gold);
    --red: #b8453a;             /* muted red for discount badges */

    --radius: 18px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 12px rgba(31,58,44,.05);
    --shadow-md: 0 8px 30px rgba(31,58,44,.1);
    --container: 1340px;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: all .25s ease;
    border: 1.5px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.btn-dark { background: var(--forest); color: #fff; }
.btn-dark:hover { background: var(--forest-deep); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s ease;
}
.btn-pill-dark { background: var(--forest); color: #fff; }
.btn-pill-dark:hover { background: var(--forest-deep); }

/* ===== Announcement bar ===== */
.announcement-bar {
    background: var(--black);
    color: #fff;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
}
.announcement-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    padding-left: 100%;
}
.announcement-track span { flex-shrink: 0; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== Header ===== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.header-container {
    display: flex;
    align-items: center;
    height: 76px;
    gap: 32px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -1px;
    color: var(--black);
}
.logo-tag {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--gold-deep);
    margin-top: 2px;
    font-weight: 600;
}
.logo-light .logo-text { color: #fff; }
.logo-light .logo-tag { color: var(--gold-light); }

.main-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
    display: inline-block;
    padding: 12px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    transition: color .2s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 1.5px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.nav-item:hover .nav-link::after { transform: scaleX(1); }

/* Mega menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 32px;
    min-width: 600px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease;
    z-index: 90;
}
.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.mega-menu-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mega-menu-grid-4 { grid-template-columns: repeat(4, 1fr); min-width: 880px; }
.mega-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 14px;
    font-weight: 600;
}
.mega-col ul li { margin-bottom: 8px; }
.mega-col ul li a {
    font-size: 14px;
    color: var(--text);
    transition: color .15s;
    display: inline-block;
    padding: 2px 0;
}
.mega-col ul li a:hover { color: var(--gold-deep); }
.see-all {
    font-weight: 600;
    color: var(--black) !important;
}
.mega-col-feature h4 { color: var(--black); font-size: 14px; text-transform: none; letter-spacing: 0; }
.mega-card {
    margin-top: 8px;
    height: 200px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--mint-pale), var(--bg-cream));
}
.mega-card-pink { background: linear-gradient(135deg, #f0e3c2, #d9bf85); }
.mega-card-peach { background: linear-gradient(135deg, #f5ecd2, #e8d8b0); }
.mega-card-green { background: linear-gradient(135deg, #d8e3d3, #88a991); }
.mega-card-blue { background: linear-gradient(135deg, #c4d8b8, #5a7d56); }
.mega-card-lavender { background: linear-gradient(135deg, #e7eee0, #2e5340); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    position: relative;
}
.icon-btn:hover { background: var(--bg-soft); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--black);
    color: #fff;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}
.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all .2s;
}

/* ===== Hero Main (fullscreen image) ===== */
.hero-main {
    position: relative;
    height: 100vh;
    min-height: 640px;
    width: 100%;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}
.hero-main-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.02);
    animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
    0%   { transform: scale(1.02); }
    100% { transform: scale(1.08); }
}
.hero-main-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20,42,31,0.55) 0%, rgba(20,42,31,0.25) 35%, rgba(20,42,31,0) 65%),
        linear-gradient(180deg, rgba(20,42,31,0) 70%, rgba(20,42,31,0.4) 100%);
    z-index: 2;
}
.hero-main-content {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero-main-text {
    max-width: 620px;
    padding-top: 40px;
}
.hero-main-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 24px;
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hero-main-eyebrow::before {
    content: '';
    width: 36px;
    height: 1.5px;
    background: var(--gold-light);
    display: inline-block;
}
.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 6.5vw, 88px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 28px;
    text-shadow: 0 2px 32px rgba(0,0,0,.35);
}
.hero-main-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold-light);
    display: block;
    margin-top: 4px;
}
.hero-main-subtitle {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.55;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    text-shadow: 0 1px 12px rgba(0,0,0,.4);
    max-width: 480px;
    font-weight: 400;
}
.hero-main-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-main-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-main-scroll svg {
    width: 18px;
    height: 18px;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
    .hero-main { min-height: 560px; height: 90vh; }
    .hero-main-overlay {
        background:
            linear-gradient(180deg, rgba(20,42,31,0) 30%, rgba(20,42,31,0.55) 70%, rgba(20,42,31,0.85) 100%);
    }
    .hero-main-text { padding-top: 0; }
    .hero-main-content > .container {
        display: flex;
        align-items: flex-end;
        height: 100%;
        padding-bottom: 80px;
    }
    .hero-main-scroll { bottom: 16px; }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 540px;
    overflow: hidden;
    background: var(--bg-soft);
}
.hero-slider { position: relative; height: 100%; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; visibility: visible; }

.hero-slide[data-bg="yellow-blue"] { background: linear-gradient(135deg, #f4ead0 0%, #faf6e6 50%, #d8e3d3 100%); }
.hero-slide[data-bg="cream"] { background: linear-gradient(135deg, #fbf6e7 0%, #f0e3c2 100%); }
.hero-slide[data-bg="pink"] { background: linear-gradient(135deg, #eef3e8 0%, #d8e3d3 100%); }
.hero-slide[data-bg="lilac"] { background: linear-gradient(135deg, #e7eee0 0%, #c5d4be 100%); }
.hero-slide[data-bg="mint"] { background: linear-gradient(135deg, #d4e3d0 0%, #b8cdb1 100%); }

.hero-content {
    width: 100%;
    z-index: 2;
    position: relative;
}
.hero-text {
    max-width: 540px;
    padding-top: 40px;
}
.hero-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 16px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 8px;
}
.hero-tag {
    display: inline-block;
    background: var(--forest);
    color: var(--gold-light);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}
.hero-visual-pouch {
    background:
        radial-gradient(circle at 30% 50%, transparent 60px, transparent 100px),
        radial-gradient(ellipse at 60% 50%, var(--gold) 80px, transparent 120px),
        linear-gradient(135deg, var(--forest-soft) 0%, var(--forest) 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 24px;
    margin: 30px;
    width: calc(50% - 60px);
    position: absolute;
    box-shadow: var(--shadow-md);
}
.hero-visual-pouch::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 30px;
    background: var(--gold);
    border-radius: 0 0 18px 18px;
}
.hero-visual-pouch::after {
    content: 'Meisani';
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--forest);
}

.hero-visual-eye {
    background:
        radial-gradient(circle at 70% 50%, #fff 80px, transparent 120px),
        radial-gradient(circle at 70% 50%, var(--mint-pale) 130px, transparent 180px);
}
.hero-visual-eye::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 200px;
    height: 280px;
    background: linear-gradient(180deg, #faf6e6 0%, var(--gold-light) 100%);
    border-radius: 12px 12px 100px 100px;
    box-shadow: var(--shadow-md);
}
.hero-visual-eye::after {
    content: 'Caffein-E';
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 200px;
    text-align: center;
    color: var(--forest);
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    margin-top: -50px;
}

.hero-visual-testers {
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.5) 100px, transparent 130px),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,.4) 80px, transparent 110px);
}
.hero-visual-testers::before {
    content: '';
    position: absolute;
    inset: 60px;
    background: linear-gradient(135deg, #f7f9f4 0%, var(--sage-pale) 100%);
    border-radius: 200px;
    box-shadow: var(--shadow-md);
}
.hero-visual-testers::after {
    content: '✨ TESTERS ✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-deep);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 4px;
}

.hero-visual-app {
    background: radial-gradient(circle at 60% 50%, var(--sage) 100px, transparent 200px);
}
.hero-visual-app::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 360px;
    background: linear-gradient(180deg, #fff 0%, var(--mint-pale) 100%);
    border-radius: 32px;
    box-shadow: var(--shadow-md), inset 0 0 0 6px var(--forest);
}
.hero-visual-app::after {
    content: 'M';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 700;
    color: var(--forest);
    z-index: 2;
}

.hero-visual-skin {
    background: radial-gradient(circle at 60% 50%, rgba(255,255,255,.4) 150px, transparent 250px);
}
.hero-visual-skin::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--sage) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.hero-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 100px;
}
.hero-prev, .hero-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}
.hero-prev:hover, .hero-next:hover { transform: scale(1.1); }
.hero-prev svg, .hero-next svg { width: 16px; height: 16px; }
.hero-dots { display: flex; gap: 6px; }
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,.3);
    transition: all .2s;
    cursor: pointer;
}
.hero-dot.active { background: var(--black); width: 24px; border-radius: 4px; }

/* ===== Sections ===== */
.section { padding: 64px 0; }
.section-narrow { padding: 48px 0 0; }
.section-title-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    text-align: center;
    letter-spacing: -1px;
}
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.section-header-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: -1px;
}
.section-sub {
    color: var(--text-soft);
    font-size: 16px;
    max-width: 580px;
    margin-top: 8px;
    margin-bottom: 16px;
}
.section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    border-bottom: 1.5px solid var(--black);
    padding-bottom: 2px;
    transition: opacity .2s;
}
.section-link:hover { opacity: .6; }

/* ===== Categories ===== */
.section-categories { padding: 32px 0 48px; }
.categories-row {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: none;
    justify-content: center;
}
.categories-row::-webkit-scrollbar { display: none; }
.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform .25s;
}
.category-item:hover { transform: translateY(-4px); }
.category-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.category-1 { background: linear-gradient(135deg, #f0e7d0, #d9bf85); }
.category-1::after { content: '👜'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.category-2 { background: linear-gradient(135deg, #eaf2e6, #c4d8b8); }
.category-2::after { content: '🌿'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.category-3 { background: linear-gradient(135deg, #f5ecd2, #d9bf85); }
.category-3::after { content: '⭐'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.category-4 { background: linear-gradient(135deg, #d8e3d3, #88a991); }
.category-4::after { content: '🎁'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.category-5 { background: linear-gradient(135deg, #e7eee0, #b8cdb1); }
.category-5::after { content: '🌸'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.category-6 { background: linear-gradient(135deg, #f0e6d0, #c9a96e); }
.category-6::after { content: '✨'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.category-item span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* ===== Product cards ===== */
.product-row-wrapper {
    position: relative;
}
.product-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 24px;
    scrollbar-width: none;
}
.product-row::-webkit-scrollbar { display: none; }

.product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-image {
    aspect-ratio: 1;
    background: var(--bg-soft);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    transition: transform .4s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 2;
    color: var(--text);
}
.wishlist-btn:hover { background: #fff; transform: scale(1.05); }
.wishlist-btn.active { color: var(--red); }
.wishlist-btn.active svg { fill: var(--red); }
.wishlist-btn svg { width: 18px; height: 18px; }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}
.product-badge-discount { background: var(--red); color: #fff; }

.product-info {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.product-brand {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}
.product-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    min-height: 42px;
}
.product-desc {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.4;
    min-height: 36px;
    margin-bottom: 8px;
}
.product-price {
    margin-top: auto;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}
.price-old {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--red);
}
.discount {
    background: var(--mint-pale);
    color: var(--forest);
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

/* Promo card */
.product-card-promo {
    background: linear-gradient(135deg, #f0e3c2 0%, #d9bf85 100%);
    border: none;
}
.promo-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.promo-badge {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-soft);
    font-weight: 600;
    margin-bottom: 16px;
}
.promo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    flex: 1;
}
.promo-card .btn { align-self: flex-start; z-index: 2; }
.promo-illustration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background:
        radial-gradient(circle at 50% 30%, var(--gold) 30px, transparent 50px),
        linear-gradient(135deg, var(--forest-soft), var(--forest));
    border-radius: 24px;
    transform: rotate(15deg);
    box-shadow: var(--shadow-sm);
}

/* Row arrows */
.row-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all .2s;
}
.row-arrow:hover { transform: translateY(-50%) scale(1.05); }
.row-arrow svg { width: 18px; height: 18px; }
.row-prev { left: -22px; }
.row-next { right: -22px; }

/* ===== Launch + Callback ===== */
.section-launch {
    padding: 88px 0 72px;
}
.launch-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
}
.launch-info { padding: 8px 0; }
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--forest-deep);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
}
.launch-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--forest);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.3); }
}
.section-launch .section-title-h1 {
    text-align: left;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--forest-deep);
}
.launch-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 24px;
    max-width: 540px;
}
.launch-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.launch-feat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--mint-pale);
    color: var(--forest);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}
.launch-feat::before {
    content: '✓';
    color: var(--gold-deep);
    font-weight: 700;
}

/* Callback card */
.callback-card {
    background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
    color: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 20px 50px rgba(31,58,44,.18);
    position: relative;
    overflow: hidden;
}
.callback-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(201,169,110,.18) 0%, transparent 70%);
    pointer-events: none;
}
.callback-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--forest-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(201,169,110,.35);
}
.callback-icon svg { width: 24px; height: 24px; }
.callback-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 8px;
}
.callback-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 12px;
}
.callback-sub {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}
.callback-sub strong { color: var(--gold-light); font-weight: 700; }

.callback-form { position: relative; z-index: 2; }
.callback-input-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 4px 4px 4px 20px;
    margin-bottom: 12px;
    transition: all .2s;
}
.callback-input-row:focus-within {
    background: rgba(255,255,255,0.12);
    border-color: var(--gold);
}
.callback-prefix {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 15px;
    margin-right: 10px;
    flex-shrink: 0;
}
.callback-input-row input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    padding: 12px 0;
    min-width: 0;
}
.callback-input-row input::placeholder { color: rgba(255,255,255,0.45); }
.callback-form .btn-dark {
    background: var(--gold);
    color: var(--forest-deep);
    border-color: var(--gold);
}
.callback-form .btn-dark:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}
.callback-note {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    margin-top: 14px;
}

@media (max-width: 900px) {
    .launch-grid { grid-template-columns: 1fr; gap: 32px; }
    .section-launch { padding: 56px 0 48px; }
    .callback-card { padding: 32px 28px; }
}

/* ===== Featured products grid ===== */
.section-featured {
    padding: 88px 0 96px;
}
.section-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--gold-deep);
    margin-bottom: 12px;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 16px;
}
.featured-grid .product-card {
    flex: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .35s ease;
}
.featured-grid .product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.featured-grid .product-image {
    aspect-ratio: 4/5;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.featured-grid .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}
.featured-grid .product-card:hover .product-image img {
    transform: scale(1.04);
}
.featured-grid .product-info {
    padding: 20px 22px 24px;
    gap: 8px;
}
.featured-grid .product-title {
    font-size: 17px;
    min-height: 44px;
}
.featured-grid .product-desc {
    min-height: 40px;
}
.featured-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

@media (max-width: 1100px) {
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .featured-grid { grid-template-columns: 1fr; gap: 20px; }
    .section-featured { padding: 56px 0 64px; }
}

/* ===== Fullscreen Model Block ===== */
.model-block {
    position: relative;
    height: 100vh;
    min-height: 640px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}
.model-block-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 8s ease-out;
}
.model-block:hover .model-block-image {
    transform: scale(1.06);
}
.model-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
}
.model-block-right .model-block-overlay {
    background: linear-gradient(270deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0) 100%);
}
.model-block-content {
    position: relative;
    z-index: 3;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}
.model-block-right .model-block-content {
    text-align: right;
}
.model-block-content > * {
    max-width: 560px;
}
.model-block-right .model-block-content > * {
    margin-left: auto;
}
.model-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--gold-light);
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.model-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--gold-light);
    display: inline-block;
}
.model-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.model-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
    margin-bottom: 36px;
    text-shadow: 0 1px 12px rgba(0,0,0,.4);
    font-weight: 400;
}
.model-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.model-block-right .model-actions {
    justify-content: flex-end;
}

.btn-light {
    background: #fff;
    color: var(--forest-deep);
}
.btn-light:hover {
    background: var(--gold);
    color: var(--forest-deep);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    padding: 14px 24px;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

@media (max-width: 768px) {
    .model-block { min-height: 520px; height: 80vh; }
    .model-block-content { padding: 0 24px; }
    .model-block-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    }
    .model-block-right .model-block-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    }
    .model-block-right .model-block-content { text-align: left; }
    .model-block-right .model-block-content > * { margin-left: 0; }
    .model-block-right .model-actions { justify-content: flex-start; }
}

/* ===== Virals ===== */
.section-virals { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.virals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.viral-card {
    aspect-ratio: 9/16;
    border-radius: var(--radius);
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: transform .3s;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.viral-card:hover { transform: translateY(-6px); }
.viral-1 { background: linear-gradient(135deg, #88a991 0%, #1f3a2c 100%); }
.viral-2 { background: linear-gradient(135deg, #d9bf85 0%, #a8884e 100%); }
.viral-3 { background: linear-gradient(135deg, #2e5340 0%, #142a1f 100%); }
.viral-4 { background: linear-gradient(135deg, #c4d8b8 0%, #5a7d56 100%); }
.viral-5 { background: linear-gradient(135deg, #e8d8b0 0%, #c9a96e 100%); }
.viral-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
}
.viral-title {
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
}

/* ===== Brands ===== */
.section-brands { padding-top: 80px; padding-bottom: 80px; }
.brands-marquee {
    overflow: hidden;
    margin-top: 48px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.brands-track {
    display: flex;
    gap: 24px;
    animation: marquee-brands 35s linear infinite;
    width: fit-content;
}
@keyframes marquee-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-card {
    flex: 0 0 200px;
    height: 120px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    transition: all .25s;
    border: 1px solid var(--border);
}
.brand-card:hover {
    background: var(--black);
    color: #fff;
    transform: translateY(-4px);
}

/* ===== Why ===== */
.section-why {
    background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.25;
}
.why-card p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== Routine ===== */
.section-routine .section-title { text-align: left; }
.routine-step { margin-bottom: 80px; }
.routine-step:last-child { margin-bottom: 0; }
.routine-step-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}
.routine-step-info-reverse { direction: rtl; }
.routine-step-info-reverse > * { direction: ltr; }

.routine-image {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}
.routine-image-1 {
    background:
        radial-gradient(circle at 30% 40%, #fff 30px, transparent 50px),
        linear-gradient(135deg, #f0e3c2 0%, #c9a96e 100%);
}
.routine-image-1::before {
    content: '🧴';
    font-size: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.routine-image-2 {
    background: linear-gradient(135deg, #d8e3d3 0%, #88a991 100%);
}
.routine-image-2::before {
    content: '💧';
    font-size: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.routine-image-3 {
    background: linear-gradient(135deg, #c4d8b8 0%, #2e5340 100%);
}
.routine-image-3::before {
    content: '☀️';
    font-size: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.routine-text { padding: 16px 0; }
.routine-number {
    font-size: 14px;
    color: var(--gold-deep);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.routine-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}
.routine-text p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== Create Routine ===== */
.section-create-routine { padding: 48px 0; }
.create-routine-banner {
    display: block;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
    background: var(--bg-soft);
}
.create-routine-banner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.create-routine-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s ease;
}
.create-routine-banner:hover img {
    transform: scale(1.015);
}

/* ===== Blog ===== */
.section-blog { background: var(--bg-soft); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-image {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-soft);
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
    display: block;
}
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-card h3 {
    padding: 20px 20px 8px;
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
}
.blog-card h3 a:hover { color: var(--gold-deep); }
.blog-card p {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}
.blog-link {
    display: inline-block;
    padding: 0 20px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    border-bottom: none;
}
.blog-link:hover { color: var(--gold-deep); }

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s;
    border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-image {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
}
.service-card-shops .service-image { background: linear-gradient(135deg, #f0e3c2 0%, #c9a96e 100%); }
.service-card-treatments .service-image { background: linear-gradient(135deg, #d8e3d3 0%, #88a991 100%); }
.service-card-workshops .service-image { background: linear-gradient(135deg, #c4d8b8 0%, #2e5340 100%); }
.service-content { padding: 24px; }
.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}
.service-content p {
    color: var(--text-soft);
    margin-bottom: 12px;
}
.service-link {
    font-weight: 600;
    color: var(--black);
}

/* ===== Newsletter ===== */
.section-newsletter { padding-top: 32px; padding-bottom: 80px; }
.newsletter-card {
    background: var(--black);
    color: #fff;
    border-radius: 32px;
    padding: 64px;
    text-align: center;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(201,169,110,.18) 0, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(136,169,145,.18) 0, transparent 40%);
}
.newsletter-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.newsletter-sub {
    color: rgba(255,255,255,.85);
    max-width: 580px;
    margin: 0 auto 12px;
    font-size: 15px;
}
.newsletter-cta {
    color: rgba(255,255,255,.85);
    margin-bottom: 24px;
    font-size: 14px;
}
.newsletter-form {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 15px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.12);
}
.checkbox-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    font-size: 12px;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
    cursor: pointer;
}
.checkbox-row input { margin-top: 3px; flex-shrink: 0; }
.checkbox-row a { color: #fff; text-decoration: underline; }
.newsletter-form .btn {
    align-self: center;
    background: #fff;
    color: var(--black);
    margin-top: 8px;
    padding: 14px 40px;
}
.newsletter-form .btn:hover { background: var(--gold); color: var(--forest-deep); }

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,.8);
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 16px 0;
    color: rgba(255,255,255,.95);
}
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    color: #fff;
}
.social-icons a:hover { background: #fff; color: var(--black); transform: translateY(-2px); }
.social-icons svg { width: 16px; height: 16px; }

.footer-col h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    transition: color .15s;
}
.footer-col ul li a:hover { color: #fff; }

.app-badges {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}
.app-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}
.app-badge:hover { background: rgba(255,255,255,.12); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}
.payment-methods {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.payment-label { font-size: 13px; color: rgba(255,255,255,.6); }
.pay-method {
    background: #fff;
    color: var(--black);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.copyright { font-size: 13px; color: rgba(255,255,255,.6); }

.footer-glow {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 14vw, 220px);
    font-weight: 700;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,.15) 0%, transparent 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    padding: 32px 0 8px;
    letter-spacing: -2px;
}

/* ===== Mobile menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform .3s ease;
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    font-size: 18px;
}
.menu-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-soft);
    font-size: 24px;
    line-height: 1;
}
.mobile-nav { padding: 20px 24px; }
.mobile-nav li { border-bottom: 1px solid var(--border); }
.mobile-nav li a {
    display: block;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 500;
}

/* ===== Chat / Callback widget ===== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}
.chat-bubble {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--forest-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(201,169,110,.5), 0 2px 8px rgba(20,42,31,.15);
    transition: transform .25s, box-shadow .25s;
    align-self: flex-end;
}
.chat-bubble:hover { transform: scale(1.06); box-shadow: 0 10px 30px rgba(201,169,110,.6); }
.chat-bubble svg { width: 26px; height: 26px; transition: opacity .2s, transform .2s; }
.chat-bubble .chat-icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(-45deg);
}
.chat-widget.open .chat-bubble .chat-icon-open { opacity: 0; transform: rotate(45deg); }
.chat-widget.open .chat-bubble .chat-icon-close { opacity: 1; transform: rotate(0); }
.chat-widget.open .chat-bubble {
    background: var(--forest);
    color: #fff;
    box-shadow: 0 8px 24px rgba(20,42,31,.4);
}

/* Pulse animation when closed */
.chat-bubble::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0;
    animation: chatPulse 2.4s ease-out infinite;
}
.chat-widget.open .chat-bubble::before { display: none; }
@keyframes chatPulse {
    0% { opacity: .6; transform: scale(.95); }
    100% { opacity: 0; transform: scale(1.4); }
}

/* Panel */
.chat-panel {
    width: 360px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(20,42,31,.18), 0 4px 12px rgba(20,42,31,.08);
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(.85) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s cubic-bezier(.2,.9,.3,1.2);
    border: 1px solid var(--border);
    order: -1;
}
.chat-widget.open .chat-panel {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.chat-panel-header {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-soft) 100%);
    color: #fff;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.chat-panel-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(201,169,110,.2), transparent 60%);
    pointer-events: none;
}
.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--forest-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.chat-avatar svg { width: 20px; height: 20px; }
.chat-panel-titles { position: relative; z-index: 1; }
.chat-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--gold-light);
    margin-bottom: 4px;
    font-weight: 600;
}
.chat-panel-titles h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

.chat-panel-body { padding: 22px 24px 8px; }
.chat-intro {
    color: var(--text-soft);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 18px;
}

.chat-form { display: flex; flex-direction: column; gap: 14px; }
.chat-field { display: flex; flex-direction: column; gap: 6px; }
.chat-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.chat-field input {
    width: 100%;
    border: 1.5px solid var(--border);
    background: var(--bg);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
}
.chat-field input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,169,110,.15);
}

.chat-phone-input {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--border);
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.chat-phone-input:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,169,110,.15);
}
.chat-phone-prefix {
    background: var(--bg-soft);
    color: var(--forest);
    padding: 12px 14px;
    font-weight: 600;
    font-size: 15px;
    border-right: 1px solid var(--border);
}
.chat-phone-input input {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
    border-radius: 0;
    padding: 12px 14px;
}

.chat-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
    cursor: pointer;
}
.chat-consent input { margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.chat-consent a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

.chat-submit {
    margin-top: 4px;
    background: var(--forest);
    color: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s, transform .15s;
}
.chat-submit:hover { background: var(--forest-deep); }
.chat-submit:active { transform: scale(.98); }
.chat-submit svg { width: 16px; height: 16px; transition: transform .2s; }
.chat-submit:hover svg { transform: translateX(2px); }

/* Success state */
.chat-success {
    text-align: center;
    padding: 16px 4px 8px;
    animation: chatSuccessIn .35s ease-out;
}
@keyframes chatSuccessIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(201,169,110,.35);
}
.chat-success-icon svg { width: 30px; height: 30px; }
.chat-success h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 8px;
}
.chat-success-msg {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 6px;
}
.chat-success-msg strong { color: var(--gold-deep); }
.chat-success-detail {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}
.chat-success-back {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
}
.chat-success-back:hover { border-color: var(--gold); color: var(--gold-deep); }

.chat-footer-note {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    padding: 12px 24px 18px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.chat-footer-note a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 480px) {
    .chat-widget { bottom: 16px; right: 16px; }
    .chat-panel { width: calc(100vw - 32px); }
}

/* ===== Footer additions (address & disclaimer) ===== */
.footer-address {
    margin-top: 18px;
    font-style: normal;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,.65);
}
.footer-address a {
    color: var(--gold-light);
    transition: color .2s;
}
.footer-address a:hover { color: #fff; }

.footer-disclaimer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255,255,255,.5);
    margin-bottom: 8px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong { color: rgba(255,255,255,.7); font-weight: 600; }

/* ===== Mobile menu footer ===== */
.mobile-menu-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
}
.mobile-menu-footer a {
    font-size: 13px;
    color: var(--text-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.mobile-menu-footer a:hover { color: var(--forest); }

/* ===== Callback form consent ===== */
.callback-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12px;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
    margin: 4px 0 12px;
    cursor: pointer;
}
.callback-consent input {
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}
.callback-consent a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.callback-consent a:hover { color: #fff; }

/* ===== Cookie consent banner (LSSI / RGPD) ===== */
.cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 100;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(20,42,31,.18), 0 4px 12px rgba(20,42,31,.08);
    max-width: 1100px;
    margin: 0 auto;
    animation: cookieSlideUp .35s cubic-bezier(.2,.9,.3,1.05);
}
@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 20px 24px;
}
.cookie-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--mint-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cookie-banner-icon svg { width: 26px; height: 26px; }
.cookie-banner-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 4px;
}
.cookie-banner-text p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-soft);
    max-width: 720px;
}
.cookie-banner-text p a {
    color: var(--gold-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-text p a:hover { color: var(--forest); }
.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cookie-btn {
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
    white-space: nowrap;
}
.cookie-btn-ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--border);
}
.cookie-btn-ghost:hover { border-color: var(--forest); }
.cookie-btn-primary {
    background: var(--forest);
    color: #fff;
}
.cookie-btn-primary:hover { background: var(--forest-deep); }

@media (max-width: 768px) {
    .cookie-banner-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 20px;
    }
    .cookie-banner-icon { width: 40px; height: 40px; }
    .cookie-banner-icon svg { width: 22px; height: 22px; }
    .cookie-banner-actions { flex-wrap: wrap; }
    .cookie-banner-actions .cookie-btn { flex: 1; min-width: 100px; }
}

/* ===== Cookie configuration modal ===== */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: cookieFadeIn .2s ease-out;
}
.cookie-modal[hidden] { display: none; }
.cookie-banner[hidden] { display: none; }
@keyframes cookieFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20,42,31,.65);
    backdrop-filter: blur(4px);
}
.cookie-modal-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(20,42,31,.3);
    animation: cookieScaleIn .25s cubic-bezier(.2,.9,.3,1.1);
}
@keyframes cookieScaleIn {
    from { opacity: 0; transform: scale(.95); }
    to { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}
.cookie-modal-close:hover { background: var(--bg-soft); color: var(--forest); }
.cookie-modal-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 8px;
    padding-right: 32px;
}
.cookie-modal-intro {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cookie-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    cursor: pointer;
}
.cookie-row:first-of-type { border-top: 1px solid var(--border); }
.cookie-row-info { flex: 1; }
.cookie-row-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 4px;
}
.cookie-row-info p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}
.cookie-row-fixed {
    font-size: 12px;
    color: var(--muted);
    background: var(--bg-soft);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-toggle {
    position: relative;
    flex-shrink: 0;
    margin-top: 4px;
    width: 44px;
    height: 24px;
    display: inline-block;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-track {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 999px;
    transition: background .2s;
}
.cookie-toggle-track::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
    transition: transform .2s;
}
.cookie-toggle input:checked ~ .cookie-toggle-track {
    background: var(--forest);
}
.cookie-toggle input:checked ~ .cookie-toggle-track::after {
    transform: translateX(20px);
}

.cookie-modal-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn { flex: 0 0 auto; }

@media (max-width: 480px) {
    .cookie-modal-card { padding: 24px 20px; }
    .cookie-modal-actions { flex-direction: column-reverse; }
    .cookie-modal-actions .cookie-btn { width: 100%; }
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--black);
    color: #fff;
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .header-actions .btn-pill { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .virals-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .routine-step-info { grid-template-columns: 1fr; gap: 24px; }
    .routine-step-info-reverse { direction: ltr; }
    .mega-menu-grid-4 { min-width: auto; }
}

@media (max-width: 768px) {
    .hero { height: 460px; }
    .hero-text { padding-top: 24px; }
    .hero-visual { width: 100%; opacity: 0.4; }
    .hero-content { background: linear-gradient(90deg, rgba(255,255,255,.85), rgba(255,255,255,.5)); }
    .section { padding: 48px 0; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .virals-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .newsletter-card { padding: 40px 24px; }
    .product-card { flex: 0 0 240px; }
    .row-arrow { display: none; }
    .categories-row { gap: 20px; justify-content: flex-start; }
    .category-circle { width: 90px; height: 90px; }
    .header-container { gap: 16px; }
    .header-actions .icon-btn:not(.cart-btn):not(:nth-last-child(2)) { display: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .product-card { flex: 0 0 80%; }
    .container { padding: 0 16px; }
}

/* Body lock for mobile menu */
body.menu-open { overflow: hidden; }

/* ===== Legal / Static Pages ===== */
.legal-header {
    background: var(--forest);
    color: #fff;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: sticky;
    top: 0;
    z-index: 50;
}
.legal-header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.legal-header .logo { color: #fff; }
.legal-header .logo-text { color: #fff; }
.legal-header .logo-tag { color: var(--gold-light); }
.legal-back {
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: color .2s;
}
.legal-back:hover { color: #fff; }

.legal-hero {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-soft) 100%);
    color: #fff;
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201,169,110,.15), transparent 50%);
    pointer-events: none;
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-eyebrow {
    color: var(--gold-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-weight: 600;
    margin-bottom: 16px;
}
.legal-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}
.legal-hero p {
    color: rgba(255,255,255,.78);
    font-size: 17px;
    max-width: 720px;
    line-height: 1.6;
}
.legal-updated {
    margin-top: 24px;
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.legal-main { padding: 64px 0 96px; background: var(--bg); }
.legal-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.legal-toc {
    position: sticky;
    top: 100px;
    align-self: start;
    padding: 24px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.legal-toc h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--muted);
    margin-bottom: 14px;
    font-weight: 600;
}
.legal-toc ul { display: flex; flex-direction: column; gap: 8px; }
.legal-toc a {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.4;
    padding: 6px 0;
    border-left: 2px solid transparent;
    padding-left: 12px;
    transition: all .2s;
    display: block;
}
.legal-toc a:hover {
    color: var(--forest);
    border-left-color: var(--gold);
}

.legal-content { max-width: 780px; }
.legal-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--forest);
    margin-top: 48px;
    margin-bottom: 16px;
    scroll-margin-top: 100px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--forest);
    margin-top: 28px;
    margin-bottom: 10px;
}
.legal-content p {
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 16px;
}
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content a {
    color: var(--gold-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--forest); }
.legal-content ul, .legal-content ol {
    margin: 12px 0 20px 24px;
    list-style: disc;
    color: var(--text-soft);
}
.legal-content ol { list-style: decimal; }
.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}
.legal-content th, .legal-content td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.legal-content th {
    background: var(--forest);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 12px;
}
.legal-content tr:last-child td { border-bottom: none; }
.legal-callout {
    margin: 28px 0;
    padding: 22px 26px;
    background: var(--mint-pale);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
}
.legal-callout p:last-child { margin-bottom: 0; }
.legal-meta {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.legal-footer {
    background: var(--forest-deep);
    color: rgba(255,255,255,.7);
    padding: 36px 0;
    text-align: center;
    font-size: 14px;
}
.legal-footer a {
    color: var(--gold-light);
    margin: 0 12px;
    transition: color .2s;
}
.legal-footer a:hover { color: #fff; }
.legal-footer .copyright { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,.45); }

@media (max-width: 900px) {
    .legal-wrap { grid-template-columns: 1fr; gap: 32px; }
    .legal-toc { position: static; }
    .legal-hero { padding: 60px 0 48px; }
    .legal-main { padding: 40px 0 64px; }
    .legal-content h2 { font-size: 24px; margin-top: 36px; }
}

/* ===== Blog Article Pages ===== */
.article-main {
    padding: 56px 0 72px;
    background: var(--bg);
}
.article-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}
.article-cover {
    margin: 0 0 28px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-soft);
}
.article-cover img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    object-position: center;
}
.article-caption {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
}
.article-gallery {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.article-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-soft);
}
.article-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-inline-image {
    margin: 20px 0 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-soft);
}
.article-inline-image img {
    width: 100%;
    display: block;
}
.article-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--forest);
    margin-top: 36px;
    margin-bottom: 14px;
}
.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--forest);
    margin-top: 24px;
    margin-bottom: 10px;
}
.article-content p {
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 16px;
}
.article-content ul {
    margin: 10px 0 20px 22px;
    list-style: disc;
    color: var(--text-soft);
}
.article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.article-related {
    background: var(--bg-soft);
    padding: 56px 0 72px;
    border-top: 1px solid var(--border);
}
.article-related .section-title {
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .article-gallery {
        grid-template-columns: 1fr;
    }
}

/* ===== Blog article: 2-column layout with sticky offer ===== */
.article-layout {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: start;
}
.article-layout .article-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.article-offer {
    position: sticky;
    top: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 22px 24px;
    box-shadow: 0 6px 24px rgba(31,58,44,.07);
    overflow: hidden;
}
.article-offer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 14px;
}
.article-offer-eyebrow svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}
.article-offer-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #f5efe1 0%, #ece4cf 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}
.article-offer-image img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(31,58,44,.18));
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.article-offer:hover .article-offer-image img {
    transform: scale(1.05) rotate(-1deg);
}
.article-offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
}
.article-offer-brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 4px;
}
.article-offer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--forest);
    margin-bottom: 10px;
}
.article-offer-pitch {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-soft);
    margin-bottom: 14px;
}
.article-offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.article-offer-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--forest);
    background: var(--mint-pale);
    border: 1px solid var(--sage-pale);
    border-radius: 100px;
    padding: 4px 10px;
}
.article-offer-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.article-offer-price .price-now {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--forest);
}
.article-offer-price .price-was {
    font-size: 14px;
    color: var(--muted);
    text-decoration: line-through;
}
.article-offer-price .price-off {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--red);
    padding: 3px 8px;
    border-radius: 6px;
}
.article-offer-cta {
    display: flex;
    width: 100%;
    height: 46px;
    border-radius: 100px;
    background: var(--forest);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s ease;
    text-decoration: none;
}
.article-offer-cta:hover {
    background: var(--forest-deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(31,58,44,.2);
}
.article-offer-cta svg {
    width: 16px;
    height: 16px;
}
.article-offer-trust {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.article-offer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--text-soft);
}
.article-offer-trust svg {
    width: 13px;
    height: 13px;
    color: var(--forest);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        max-width: 720px;
        gap: 32px;
    }
    .article-offer {
        position: static;
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }
}
@media (max-width: 640px) {
    .article-offer {
        padding: 18px;
    }
    .article-offer-title {
        font-size: 17px;
    }
}

/* ===========================================================
   PRODUCT DETAIL + CHECKOUT PAGE
   =========================================================== */

.product-page {
    background: var(--bg-soft);
    padding: 28px 0 80px;
    min-height: 100vh;
}

/* Blog section on product pages — flip background to break from cream page bg */
.product-page-blog {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 72px 0 80px;
}
.product-page-blog .blog-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
}
.product-page-blog .section-header {
    margin-bottom: 36px;
}
.product-page-blog .section-eyebrow {
    color: var(--gold-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--text-soft);
    font-size: 13px;
    margin-bottom: 22px;
}
.product-breadcrumb a { color: var(--text-soft); transition: color .2s; }
.product-breadcrumb a:hover { color: var(--forest); }
.product-breadcrumb .sep { color: var(--muted); opacity: .55; }
.product-breadcrumb .current { color: var(--forest); font-weight: 600; }

/* ---------- Page hero (gallery + summary) ---------- */
.product-hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.product-gallery {
    position: relative;
    background: linear-gradient(135deg, #f5efe1 0%, #ece4cf 100%);
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-gallery .product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--red);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
}
.product-gallery img {
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(31,58,44,.18));
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.product-gallery:hover img { transform: scale(1.04) rotate(-1deg); }

.product-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.product-thumb {
    flex: 1;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    border: 2px solid var(--border);
    background: linear-gradient(135deg, #f5efe1 0%, #ece4cf 100%);
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-thumb img { max-width: 70%; max-height: 70%; object-fit: contain; }
.product-thumb.active { border-color: var(--forest); }

.product-summary {
    display: flex;
    flex-direction: column;
}
.product-summary-brand {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-deep);
    margin-bottom: 10px;
}
.product-summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 14px;
}
.product-summary-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--text-soft);
}
.product-summary-rating .stars {
    display: inline-flex;
    color: var(--gold);
    letter-spacing: 1px;
    font-size: 15px;
}
.product-summary-desc {
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 22px;
}
.product-summary-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}
.product-summary-price .price-now {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--forest);
}
.product-summary-price .price-was {
    font-size: 17px;
    color: var(--muted);
    text-decoration: line-through;
}
.product-summary-price .price-off {
    background: var(--red);
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}
.product-summary-tax {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
}

.product-attrs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}
.product-attr {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-soft);
}
.product-attr svg { width: 18px; height: 18px; color: var(--forest); flex-shrink: 0; }

.product-summary-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}
.product-qty {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    overflow: hidden;
    background: #fff;
}
.product-qty button {
    width: 44px;
    height: 48px;
    font-size: 18px;
    color: var(--forest);
    transition: background .2s;
}
.product-qty button:hover { background: var(--bg-soft); }
.product-qty input {
    width: 40px;
    text-align: center;
    border: none;
    height: 48px;
    background: transparent;
    font-weight: 600;
    color: var(--forest);
    -moz-appearance: textfield;
}
.product-qty input::-webkit-outer-spin-button,
.product-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-summary-cta .btn-buy {
    flex: 1;
    height: 48px;
    padding: 0 24px;
    border-radius: 100px;
    background: var(--forest);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    white-space: nowrap;
}
.product-summary-cta .btn-buy svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.product-summary-cta .btn-buy:hover {
    background: var(--forest-deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(31,58,44,.18);
}

.product-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.product-trust-row > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
}
.product-trust-row svg { width: 16px; height: 16px; color: var(--forest); }

/* ---------- Description & ingredient cards ---------- */
.product-info-tabs {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.product-info-tabs h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--forest);
    margin-bottom: 18px;
    font-weight: 600;
}
.product-info-tabs p {
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 15px;
}
.product-info-banner {
    margin: 22px 0 18px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f4f1e8;
    box-shadow: 0 10px 24px rgba(31,58,44,.08);
}
.product-info-banner img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center;
}
.product-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 22px;
}
.product-info-card {
    padding: 22px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.product-info-card .icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--mint-pale);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--forest);
}
.product-info-card .icon svg { width: 20px; height: 20px; }
.product-info-card h4 {
    font-size: 15px;
    color: var(--forest);
    margin-bottom: 6px;
    font-weight: 600;
}
.product-info-card p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
}

/* ===========================================================
   CHECKOUT FORM
   =========================================================== */

.checkout-section-anchor {
    display: block;
    height: 0;
    visibility: hidden;
    transform: translateY(-90px);
}

.checkout-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.checkout-head {
    text-align: center;
    margin-bottom: 32px;
}
.checkout-head .checkout-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--mint-pale);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.checkout-head .checkout-eyebrow svg { width: 14px; height: 14px; }
.checkout-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--forest);
    font-weight: 600;
    margin-bottom: 6px;
}
.checkout-head p {
    color: var(--text-soft);
    font-size: 15px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
    align-items: start;
}

.checkout-main { display: flex; flex-direction: column; gap: 22px; }

.checkout-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 28px;
    transition: border-color .2s, box-shadow .2s;
}
.checkout-section:focus-within {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(31,58,44,.06);
}
.checkout-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.checkout-section-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--forest);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.checkout-section-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--forest);
}
.checkout-section-sub {
    font-size: 13px;
    color: var(--muted);
    margin-left: auto;
}

/* Inputs */
.field {
    position: relative;
    margin-bottom: 14px;
}
.field:last-child { margin-bottom: 0; }
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.field-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}
.field-row-cp {
    display: grid;
    grid-template-columns: 130px 1fr 1fr;
    gap: 12px;
}
.field label {
    display: block;
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
    margin-bottom: 6px;
}
.field label .req { color: #b8453a; margin-left: 2px; }
.field input,
.field select,
.field textarea {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
}
.field select { padding-right: 36px; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%231f3a2c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(31,58,44,.08);
}
.field input.is-invalid,
.field select.is-invalid {
    border-color: #b8453a;
    box-shadow: 0 0 0 3px rgba(184,69,58,.1);
}
.field-error {
    display: none;
    font-size: 12px;
    color: #b8453a;
    margin-top: 6px;
    font-weight: 500;
}
.field.is-invalid .field-error { display: block; }
.field-help {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

.field-prefix {
    position: relative;
}
.field-prefix-label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-soft);
    font-weight: 500;
    border-right: 1px solid var(--border);
    padding-right: 10px;
    pointer-events: none;
    z-index: 2;
}
.field-prefix .field-prefix-flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    background: linear-gradient(to bottom, #c60b1e 33%, #ffc400 33%, #ffc400 66%, #c60b1e 66%);
    border: 1px solid rgba(0,0,0,.05);
}
.field-prefix input { padding-left: 76px; }

/* Country select with flag */
.country-locked {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg-soft);
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}
.country-locked .flag-es {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #c60b1e 33%, #ffc400 33%, #ffc400 66%, #c60b1e 66%);
    border: 1px solid rgba(0,0,0,.05);
    flex-shrink: 0;
}
.country-locked .lock {
    margin-left: auto;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}
.country-locked .lock svg { width: 14px; height: 14px; }

/* Shipping & payment radio cards */
.option-list { display: flex; flex-direction: column; gap: 10px; }
.option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    transition: border-color .2s, background .2s;
}
.option:hover { border-color: var(--sage); }
.option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
    inset: 0;
}
.option .option-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    position: relative;
    transition: border-color .2s;
}
.option input[type="radio"]:checked ~ .option-radio {
    border-color: var(--forest);
}
.option input[type="radio"]:checked ~ .option-radio::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--forest);
}
.option:has(input[type="radio"]:checked) {
    border-color: var(--forest);
    background: var(--bg-soft);
}
.option-label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.option-label .opt-title {
    font-weight: 600;
    color: var(--forest);
    font-size: 15px;
}
.option-label .opt-sub {
    font-size: 12px;
    color: var(--text-soft);
}
.option-price {
    font-weight: 700;
    color: var(--forest);
    font-size: 15px;
}
.option-price.free { color: var(--forest-soft); }
.option-icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.option-icons .pay-logo {
    height: 22px;
    padding: 2px 6px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.option-icons .pay-logo.visa { color: #1a1f71; }
.option-icons .pay-logo.mc { color: #eb001b; }
.option-icons .pay-logo.amex { color: #006fcf; }
.option-icons .pay-logo.paypal { color: #003087; }
.option-icons .pay-logo.klarna { color: #ffa8cd; background: #ffa8cd; color: #0a0a0a; }
.option-icons .pay-logo.bizum { color: #00b1eb; }

/* Card input row */
.card-row {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
    display: none;
}
.card-row.is-visible { display: block; }
.card-input-wrap { position: relative; }
.card-input-wrap input { padding-right: 70px; letter-spacing: 1px; font-variant-numeric: tabular-nums; }
.card-brand-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 28px;
    border-radius: 4px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    transition: all .2s;
}
.card-brand-icon[data-brand="visa"] { background: #1a1f71; color: #fff; border-color: #1a1f71; }
.card-brand-icon[data-brand="mastercard"] { background: #fff; color: #eb001b; border-color: #eb001b; }
.card-brand-icon[data-brand="amex"] { background: #006fcf; color: #fff; border-color: #006fcf; }

/* Checkbox row */
.check-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
    margin-top: 10px;
    cursor: pointer;
}
.check-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    margin-top: 1px;
    cursor: pointer;
    flex-shrink: 0;
    background: #fff;
    position: relative;
    transition: all .2s;
}
.check-row input[type="checkbox"]:checked {
    background: var(--forest);
    border-color: var(--forest);
}
.check-row input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.check-row a { color: var(--forest); text-decoration: underline; font-weight: 500; }

/* Submit */
.checkout-submit {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}
.btn-pay {
    height: 56px;
    border-radius: 14px;
    background: var(--forest);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .2s;
    letter-spacing: .3px;
}
.btn-pay:hover {
    background: var(--forest-deep);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(31,58,44,.22);
}
.btn-pay svg { width: 18px; height: 18px; }
.btn-pay:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-pay.is-loading { pointer-events: none; }
.btn-pay.is-loading .btn-pay-label { opacity: .4; }
.btn-pay.is-loading::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
.btn-pay { position: relative; }
@keyframes spin { to { transform: rotate(360deg); } }
.checkout-secure {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.checkout-secure svg { width: 13px; height: 13px; }

/* Order summary */
.checkout-summary {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
    box-shadow: var(--shadow-sm);
}
.checkout-summary-head {
    font-size: 17px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkout-summary-head .item-count {
    background: var(--mint-pale);
    color: var(--forest);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}
.summary-product {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}
.summary-product-img {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f5efe1 0%, #ece4cf 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.summary-product-img img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}
.summary-product-img .qty-pill {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--forest);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.summary-product-info { min-width: 0; }
.summary-product-info .brand {
    font-size: 11px;
    color: var(--gold-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.summary-product-info .title {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.summary-product .price {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest);
}

.summary-discount {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}
.summary-discount input {
    flex: 1;
    height: 42px;
    padding: 0 12px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    background: var(--bg-soft);
}
.summary-discount input:focus {
    outline: none;
    border-color: var(--forest);
    background: #fff;
}
.summary-discount button {
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    background: var(--forest-deep);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    transition: background .2s;
}
.summary-discount button:hover { background: var(--forest); }
.discount-applied {
    background: var(--mint-pale);
    border: 1px solid var(--sage-pale);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--forest);
    margin-bottom: 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
}
.discount-applied.show { display: flex; }
.discount-applied button {
    color: var(--muted);
    font-size: 12px;
    text-decoration: underline;
}

.summary-totals {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-soft);
}
.summary-line .lbl { color: var(--text-soft); }
.summary-line .val { font-weight: 500; color: var(--text); }
.summary-line.discount-line .val { color: var(--forest-soft); }
.summary-line.total-line {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    align-items: baseline;
}
.summary-line.total-line .lbl {
    font-size: 15px;
    font-weight: 600;
    color: var(--forest);
}
.summary-line.total-line .val {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--forest);
}
.summary-line.total-line .val small {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-left: 4px;
}

.summary-trust {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.summary-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-soft);
}
.summary-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--forest);
    flex-shrink: 0;
}

.summary-cards {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 14px;
    justify-content: center;
}
.summary-cards .pay-logo {
    font-size: 10px;
    height: 22px;
    padding: 0 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    color: var(--text);
}
.summary-cards .pay-logo.visa { color: #1a1f71; }
.summary-cards .pay-logo.mc { color: #eb001b; }
.summary-cards .pay-logo.amex { color: #006fcf; }
.summary-cards .pay-logo.paypal { color: #003087; }

/* Success modal */
.checkout-success-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(20,42,31,.65);
    backdrop-filter: blur(6px);
}
.checkout-success-modal.show { display: flex; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.checkout-success-card {
    background: #fff;
    border-radius: 20px;
    padding: 42px 36px 32px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    animation: popIn .4s cubic-bezier(.2,.8,.2,1.2);
}
@keyframes popIn {
    from { opacity: 0; transform: translateY(30px) scale(.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.success-check {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--mint-pale);
    color: var(--forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}
.success-check svg { width: 36px; height: 36px; }
.checkout-success-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--forest);
    margin-bottom: 8px;
}
.checkout-success-card p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.success-order-info {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 18px;
    margin: 18px 0 22px;
    text-align: left;
}
.success-order-info > div {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
}
.success-order-info > div .lbl { color: var(--text-soft); }
.success-order-info > div .val { color: var(--forest); font-weight: 600; }
.success-order-info > div.success-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    font-size: 16px;
}
.checkout-success-card .btn-back {
    display: inline-flex;
    height: 48px;
    padding: 0 28px;
    border-radius: 100px;
    background: var(--forest);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.checkout-success-card .btn-back:hover { background: var(--forest-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .product-hero { grid-template-columns: 1fr; gap: 32px; padding: 24px; }
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .product-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .product-page { padding: 16px 0 60px; }
    .product-hero { padding: 18px; gap: 24px; }
    .product-summary-title { font-size: 28px; }
    .product-summary-cta { flex-direction: column; }
    .product-summary-cta .btn-buy { width: 100%; }
    .product-info-tabs { padding: 22px; }
    .product-info-tabs h2 { font-size: 22px; }
    .product-info-grid { grid-template-columns: 1fr; }
    .checkout-wrap { padding: 22px 18px; }
    .checkout-section { padding: 20px 18px; }
    .checkout-head h2 { font-size: 24px; }
    .field-row, .field-row-3, .field-row-cp { grid-template-columns: 1fr; }
    .product-attrs { grid-template-columns: 1fr; }
}
