
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary:    #2C2C2C;
    --secondary:  #3A3A3A;
    --accent:     #A8895A;
    --accent-hover:#8C7042;
    --white:      #FFFFFF;
    --off-white:  #FAFAF8;
    --subtle:     #F4F2EE;
    --border:     #E8E6E0;
    --border-dark:#D0CEC8;
    --gray-light: #F0EEE9;
    --text:       #1A1A1A;
    --text-mid:   #4A4A4A;
    --text-muted: #888480;
    --shadow:     0 1px 12px rgba(0,0,0,0.06);
    --shadow-hover:0 4px 24px rgba(0,0,0,0.10);
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); font-size: 15px; line-height: 1.6; }

  /* ── NAV ─────────────────────────────────────────────────────── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 21px; font-weight: 600; color: var(--primary);
    letter-spacing: 0.3px;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 36px; }
  .nav-links a {
    color: var(--text-mid); text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
    text-transform: uppercase; transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--primary); }

  /* ── HERO ─────────────────────────────────────────────────────── */
  .hero {
    position: relative; height: 580px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-video-bg {
    position: absolute; inset: 0;
    background: linear-gradient(150deg, #141414 0%, #1E1E1C 45%, #252520 100%);
  }
  .hero-video-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 55% 40% at 75% 55%, rgba(168,137,90,0.08) 0%, transparent 65%),
      radial-gradient(ellipse 35% 50% at 15% 30%, rgba(255,255,255,0.03) 0%, transparent 55%);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(20,20,20,0.20) 0%, rgba(20,20,20,0.45) 100%);
  }
  .hero-video-annotation {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35);
    padding: 5px 16px; border-radius: 20px; font-size: 11px;
    border: 1px solid rgba(255,255,255,0.10); white-space: nowrap; letter-spacing: 0.3px;
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px; max-width: 660px;
  }
  .hero-pill {
    display: inline-block;
    background: rgba(168,137,90,0.14);
    border: 1px solid rgba(168,137,90,0.30);
    color: #C8A870;
    padding: 5px 16px; border-radius: 20px; font-size: 11px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 20px;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 500; color: var(--white);
    line-height: 1.15; margin-bottom: 16px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  }
  .hero-title em { color: #C8A870; font-style: normal; }
  .hero-sub {
    color: rgba(255,255,255,0.62); font-size: 16px;
    line-height: 1.6; margin-bottom: 34px; font-weight: 300;
    max-width: 480px; margin-left: auto; margin-right: auto;
  }
  .hero-actions { display: flex; gap: 12px; justify-content: center; }
  .btn-primary {
    background: var(--accent); color: var(--white);
    padding: 13px 30px; border-radius: 6px; border: none;
    font-size: 14px; font-weight: 600; cursor: pointer;
    letter-spacing: 0.3px; transition: background 0.18s;
  }
  .btn-primary:hover { background: var(--accent-hover); }
  .btn-ghost {
    background: transparent; color: rgba(255,255,255,0.80);
    padding: 13px 30px; border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 14px; font-weight: 400; cursor: pointer;
    transition: border-color 0.18s, color 0.18s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }

  /* ── TRUST BAR ────────────────────────────────────────────────── */
  .trust-bar {
    background: var(--subtle);
    border-bottom: 1px solid var(--border);
    padding: 12px 48px;
    display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap;
  }
  .trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-mid); font-size: 12.5px; }
  .trust-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

  /* ── SHARED ──────────────────────────────────────────────────── */
  .section-label {
    font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 31px; font-weight: 500; color: var(--primary); line-height: 1.2;
  }
  .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }

  /* ── CATEGORIES ──────────────────────────────────────────────── */
  #categories { padding: 68px 48px 56px; max-width: 1240px; margin: 0 auto; }
  .categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
  .category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px; overflow: hidden;
    box-shadow: var(--shadow); text-decoration: none;
    display: flex; flex-direction: column;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .category-card:hover { border-color: var(--accent); box-shadow: var(--shadow-hover); }
  .cat-img {
    width: 100%; aspect-ratio: 4/3;
    background: var(--subtle);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .cat-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 12px;
  }
  .cat-body { padding: 14px 16px 16px; }
  .cat-name { font-size: 13.5px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
  .cat-count { font-size: 11.5px; color: var(--text-muted); }
  .cat-arrow { margin-top: 10px; font-size: 11.5px; color: var(--accent); font-weight: 600; }

  .show-more-wrap { text-align: center; padding-top: 4px; }
  .btn-show-more {
    background: var(--white); color: var(--text-mid);
    border: 1px solid var(--border-dark);
    padding: 10px 32px; border-radius: 6px; font-size: 13.5px; font-weight: 500;
    cursor: pointer; transition: border-color 0.15s, color 0.15s;
  }
  .btn-show-more:hover { border-color: var(--accent); color: var(--primary); }

  /* ── PRODUCTS ─────────────────────────────────────────────────── */
  .products-section { background: var(--off-white); padding: 68px 0; border-top: 1px solid var(--border); }
  .products-inner { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
  .products-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
  .search-wrap { position: relative; flex: 1; max-width: 320px; }
  .search-wrap input {
    width: 100%; padding: 9px 16px 9px 38px;
    border: 1px solid var(--border-dark); border-radius: 6px;
    font-size: 13.5px; font-family: inherit; background: var(--white);
    color: var(--text); outline: none; transition: border-color 0.15s;
  }
  .search-wrap input:focus { border-color: var(--accent); }
  .search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 14px; }
  .filter-sort { display: flex; gap: 8px; }
  .select-styled {
    padding: 9px 13px; border: 1px solid var(--border-dark); border-radius: 6px;
    font-size: 13px; font-family: inherit; background: var(--white);
    color: var(--text-mid); cursor: pointer; outline: none;
  }
  .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .product-card {
    background: var(--white); border-radius: 10px; overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow);
    transition: border-color 0.15s, box-shadow 0.15s; cursor: pointer;
  }
  .product-card:hover { box-shadow: var(--shadow-hover); border-color: var(--accent); }
  .prod-img {
    width: 100%; aspect-ratio: 1;
    background: var(--subtle);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .prod-img img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 16px;
  }
  .prod-body { padding: 14px 16px 16px; }
  .prod-cat { font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
  .prod-name { font-size: 13.5px; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.35; }
  .prod-footer { display: flex; align-items: center; justify-content: space-between; }
  .prod-price { font-size: 15px; font-weight: 700; color: var(--primary); }
  .prod-info {
    background: var(--subtle); color: var(--text-mid);
    border: 1px solid var(--border-dark); border-radius: 5px;
    padding: 5px 11px; font-size: 11.5px; font-weight: 600;
    cursor: pointer; transition: background 0.15s;
  }
  .prod-info:hover { background: var(--border); }

  /* ── BRANDS ───────────────────────────────────────────────────── */
  .brands-section {
    padding: 60px 48px; max-width: 1240px; margin: 0 auto;
    border-top: 1px solid var(--border);
  }
  .brands-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: stretch; justify-content: center; margin-top: 28px; }
  .brand-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 10px;
    padding: 22px 28px; display: flex; flex-direction: column; align-items: center; gap: 5px;
    min-width: 190px; transition: border-color 0.15s, box-shadow 0.15s;
  }
  .brand-card:hover { border-color: var(--accent); box-shadow: var(--shadow-hover); }
  .brand-name { font-size: 14px; font-weight: 700; color: var(--primary); }
  .brand-tagline { font-size: 11px; color: var(--text-muted); text-align: center; line-height: 1.5; }

  /* ── INTRO ───────────────────────────────────────────────────── */
  .intro-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 72px 48px 68px;
  }
  .intro-inner { max-width: 1240px; margin: 0 auto; }
  .intro-top {
    max-width: 680px; margin: 0 auto 60px; text-align: center;
  }
  .intro-top .section-label { margin-bottom: 12px; }
  .intro-top .section-title { margin-bottom: 18px; font-size: 34px; }
  .intro-lead {
    font-size: 16px; color: var(--text-mid); line-height: 1.8;
    font-weight: 300;
  }
  .intro-lead strong { font-weight: 600; color: var(--primary); }
  .intro-pillars {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    max-width: 860px; margin: 0 auto;
  }
  .intro-pillar {
    background: var(--subtle);
    border: 1px solid var(--border);
    border-radius: 10px; padding: 28px 26px 30px;
  }
  .intro-pillar-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--white); border: 1px solid var(--border-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 16px; box-shadow: var(--shadow);
  }
  .intro-pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 500; color: var(--primary);
    margin-bottom: 10px; line-height: 1.25;
  }
  .intro-pillar p {
    font-size: 13.5px; color: var(--text-mid); line-height: 1.75;
  }

  /* ── WARM CLOSING ─────────────────────────────────────────────── */
  .warmth-section {
    background: var(--subtle);
    border-top: 1px solid var(--border);
    padding: 80px 48px;
  }
  .warmth-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .warmth-image-wrap { position: relative; }
  .warmth-image-placeholder {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(160deg, #D8D4CC 0%, #C4BEB4 100%);
    border-radius: 16px;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    position: relative; overflow: hidden;
  }
  .warmth-image-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18) 0%, transparent 60%);
  }
  .warmth-img-icon { font-size: 60px; opacity: 0.4; }
  .warmth-img-note { font-size: 11px; color: rgba(30,30,28,0.40); background: rgba(255,255,255,0.55); padding: 4px 12px; border-radius: 20px; }
  .warmth-accent-dot { position: absolute; bottom: -14px; right: -14px; width: 72px; height: 72px; border-radius: 50%; background: var(--accent); opacity: 0.12; }
  .warmth-accent-ring { position: absolute; top: -18px; left: -18px; width: 90px; height: 90px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0.18; }
  .warmth-text .section-label { margin-bottom: 10px; }
  .warmth-text .section-title { margin-bottom: 20px; font-size: 33px; }
  .warmth-lead { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; font-weight: 300; }
  .warmth-lead strong { font-weight: 600; color: var(--primary); }
  .warmth-body { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
  .warmth-pillars { display: flex; flex-direction: column; gap: 14px; }
  .warmth-pillar { display: flex; gap: 14px; align-items: flex-start; }
  .pillar-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    background: var(--white); border: 1px solid var(--border-dark);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 15px; box-shadow: var(--shadow); margin-top: 2px;
  }
  .pillar-text strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
  .pillar-text span { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

  /* ── EDU SLIDER ───────────────────────────────────────────────── */
  .edu-section {
    background: var(--subtle);
    border-top: 1px solid var(--border);
    padding: 68px 0 72px;
  }
  .edu-inner { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
  .edu-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
  .edu-arrows { display: flex; gap: 8px; }
  .edu-arrow-btn {
    width: 36px; height: 36px;
    border: 1px solid var(--border-dark); border-radius: 6px;
    background: var(--white); color: var(--accent);
    font-size: 16px; cursor: pointer; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.15s, background 0.15s;
  }
  .edu-arrow-btn:hover { border-color: var(--accent); background: var(--subtle); }
  .edu-arrow-btn:disabled { color: var(--border-dark); border-color: var(--border); cursor: default; background: var(--white); }
  .edu-track-wrap { overflow: hidden; }
  .edu-track {
    display: flex; gap: 16px;
    transition: transform 0.32s ease;
  }
  .edu-card {
    flex: 0 0 320px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 26px 30px;
    box-shadow: var(--shadow);
  }
  .edu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 500;
    color: var(--accent); margin-bottom: 12px; line-height: 1.2;
  }
  .edu-card p {
    font-size: 13.5px; color: var(--text-mid);
    line-height: 1.75;
  }

  /* ── DISCLAIMER ────────────────────────────────────────────────── */
  .disclaimer-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 28px 48px;
  }
  .disclaimer-inner { max-width: 840px; margin: 0 auto; display: flex; gap: 14px; align-items: flex-start; }
  .disclaimer-icon {
    width: 22px; height: 22px; flex-shrink: 0;
    color: var(--text-muted); font-size: 13px; margin-top: 1px;
  }
  .disclaimer-text { font-size: 11px; color: var(--text-muted); line-height: 1.7; }
  .disclaimer-text strong { font-weight: 600; color: var(--text-mid); display: block; margin-bottom: 3px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }

  /* ── FOOTER ─────────────────────────────────────────────────── */
  footer {
    background: var(--primary); color: rgba(255,255,255,0.42);
    padding: 32px 48px; text-align: center; font-size: 12px;
  }
  footer .footer-logo { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); margin-bottom: 8px; }
  footer .footer-logo span { color: #C8A870; }

  /* ── LANGUAGE SWITCH ──────────────────────────────────────────── */
  .lang-switch {
    position: fixed; bottom: 20px; right: 20px; z-index: 300;
    display: flex; background: var(--white);
    border: 1px solid var(--border-dark); border-radius: 24px;
    box-shadow: var(--shadow-hover); overflow: hidden;
    font-family: 'DM Sans', sans-serif;
  }
  .lang-seg {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 15px; border: none; background: transparent;
    cursor: pointer; color: var(--text-muted);
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px;
    transition: background 0.15s, color 0.15s;
  }
  .lang-seg:hover { color: var(--text-mid); }
  .lang-seg.active { background: var(--accent); color: var(--white); }
  .lang-flag { font-size: 15px; line-height: 1; }
  @media (max-width: 600px) {
    .lang-switch { bottom: 14px; right: 14px; }
    .lang-seg { padding: 8px 12px; }
  }

  /* ── PRODUCT DETAIL ───────────────────────────────────────────── */
  .pd-wrap { max-width: 1040px; margin: 0 auto; padding: 48px 48px 64px; }
  .pd-back { display:inline-block; font-size:13px; color:var(--text-mid); text-decoration:none; margin-bottom:28px; }
  .pd-back:hover { color:var(--accent); }
  .pd-grid { display:grid; grid-template-columns: 420px 1fr; gap:56px; align-items:start; }
  .pd-imgbox { background:var(--subtle); border:1px solid var(--border); border-radius:14px; aspect-ratio:1; display:flex; align-items:center; justify-content:center; overflow:hidden; box-shadow:var(--shadow); }
  .pd-imgbox img { width:100%; height:100%; object-fit:contain; padding:28px; }
  .pd-brand { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--accent); margin-bottom:10px; }
  .pd-title { font-family:'Playfair Display',serif; font-size:34px; font-weight:500; color:var(--primary); line-height:1.15; margin-bottom:14px; }
  .pd-price { font-size:20px; font-weight:700; color:var(--primary); margin-bottom:22px; }
  .pd-buy { display:inline-block; background:var(--accent); color:#fff; text-decoration:none; padding:14px 30px; border-radius:7px; font-size:14.5px; font-weight:600; letter-spacing:.3px; transition:background .18s; }
  .pd-buy:hover { background:var(--accent-hover); }
  .pd-actions { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
  .pd-pdf { display:inline-flex; align-items:center; gap:8px; background:transparent; color:var(--accent); text-decoration:none; padding:13px 24px; border:1.5px solid var(--accent); border-radius:7px; font-size:14px; font-weight:600; letter-spacing:.3px; transition:background .18s,color .18s; }
  .pd-pdf:hover { background:var(--accent); color:#fff; }
  .pd-pdf::before { content:"\2193"; font-weight:700; }
  .pd-section { margin-top:32px; }
  .pd-section h2 { font-family:'Playfair Display',serif; font-size:18px; font-weight:600; color:var(--primary); margin-bottom:12px; }
  .pd-section p { font-size:14px; color:var(--text-mid); line-height:1.85; margin-bottom:12px; }
  .pd-dose { background:var(--subtle); border:1px solid var(--border); border-radius:10px; padding:18px 22px; font-size:13.5px; color:var(--text-mid); line-height:1.7; }
  .product-card-link { text-decoration:none; color:inherit; display:block; }
  @media (max-width: 820px) {
    .pd-grid { grid-template-columns: 1fr; gap:28px; }
    .pd-imgbox { max-width:360px; }
    .pd-wrap { padding:32px 22px 48px; }
  }
  @media (max-width: 720px) {
    nav { padding:0 20px; }
    .products-inner, #categories, .edu-inner, .intro-section, .warmth-section { padding-left:20px; padding-right:20px; }
    .categories-grid, .products-grid { grid-template-columns: repeat(2,1fr); }
    .warmth-inner { grid-template-columns:1fr; gap:36px; }
    .hero-title { font-size:38px; }
  }

  /* ── HERO VIDEO + WARMTH IMAGE ────────────────────────────────── */
  .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
  }
  .warmth-image-real {
    width: 100%; aspect-ratio: 4/5;
    object-fit: cover; border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10); display: block;
  }
