  :root {
    --gold: #c9920c;
    --gold-100: #fbf2dd;
    --gold-300: #e8c468;
    --gold-700: #8c6508;
    --gold-900: #5c4306;
    --ink: #211f1c;
    --muted: #756f66;
    --line: #e8e0d2;
    --green: #2f7a3d;
    --paper: #fffaf0;
    --white: #fff;
  }

  * { box-sizing: border-box; }
  body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  .af-variant-input {
    position: fixed;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  .af-only-v1, .af-only-v2, .af-only-v3, .af-only-v4,
  .af-inline-v1, .af-inline-v2, .af-inline-v3, .af-inline-v4,
  .af-flex-v1, .af-flex-v2, .af-flex-v3, .af-flex-v4,
  .af-barprice-v1, .af-barprice-v2, .af-barprice-v3, .af-barprice-v4 { display: none; }
  .af-page:has(#v1:checked) .af-only-v1,
  .af-page:has(#v2:checked) .af-only-v2,
  .af-page:has(#v3:checked) .af-only-v3,
  .af-page:has(#v4:checked) .af-only-v4 { display: block; }
  .af-page:has(#v1:checked) .af-inline-v1,
  .af-page:has(#v2:checked) .af-inline-v2,
  .af-page:has(#v3:checked) .af-inline-v3,
  .af-page:has(#v4:checked) .af-inline-v4 { display: inline; }
  .af-page:has(#v1:checked) .af-flex-v1,
  .af-page:has(#v2:checked) .af-flex-v2,
  .af-page:has(#v3:checked) .af-flex-v3,
  .af-page:has(#v4:checked) .af-flex-v4 { display: flex; }
  .af-page:has(#v1:checked) .af-barprice-v1,
  .af-page:has(#v2:checked) .af-barprice-v2,
  .af-page:has(#v3:checked) .af-barprice-v3,
  .af-page:has(#v4:checked) .af-barprice-v4 { display: block; }
  .af-page:has(#v1:checked) label[for="v1"],
  .af-page:has(#v2:checked) label[for="v2"],
  .af-page:has(#v3:checked) label[for="v3"],
  .af-page:has(#v4:checked) label[for="v4"] {
    border-color: var(--gold);
    background: var(--gold-100);
    box-shadow: 0 3px 14px rgba(201, 146, 12, .16);
  }
  .af-page:has(#v1:checked) label[for="v1"] .af-dot,
  .af-page:has(#v2:checked) label[for="v2"] .af-dot,
  .af-page:has(#v3:checked) label[for="v3"] .af-dot,
  .af-page:has(#v4:checked) label[for="v4"] .af-dot { background: var(--gold); }
  #promo-close:checked ~ .af-page .af-promo-strip,
  #promo-close:checked ~ .af-page-header .af-promo-strip { display: none; }
  #menu-toggle:checked ~ .af-page .af-mobile-menu,
  #menu-toggle:checked ~ .af-page-header .af-mobile-menu { display: grid; }

  .af-topbar {
    background: var(--ink);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 7px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
  }
  .af-topbar-track {
    display: inline-flex;
    gap: 48px;
    animation: af-marquee 22s linear infinite;
    padding-left: 48px;
  }
  .af-topbar-track span {
    font: 700 12px/1 Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: .05em;
  }
  .af-topbar-track .af-accent { color: var(--gold-300); }
  @keyframes af-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .af-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 2px solid var(--ink);
  }
  .af-nav {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 28px;
    padding: 12px 28px;
  }
  .af-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
  .af-brand img:first-child { width: 42px; height: 42px; object-fit: contain; flex: 0 0 auto; }
  .af-brand img:last-child { height: 28px; width: auto; object-fit: contain; }
  .af-nav-links { display: flex; gap: 28px; font-size: 13px; font-weight: 700; letter-spacing: .05em; }
  .af-nav-links a:hover { color: var(--gold-700); }
  .af-nav-actions {
    display: flex;
    align-items: center;
        justify-content: flex-end;
        gap: 18px;
      }
  .af-nav-action i {
    color: currentColor;
    font-size: 17px;
    line-height: 1;
  }
  .af-nav-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font: 700 13px/1 Inter, ui-sans-serif, system-ui, sans-serif;
    color: var(--gold-700);
  }
  .af-nav-action:hover {
    color: var(--gold);
  }
  .af-nav-action.af-whatsapp-action {
    background: var(--gold);
    color: #fff;
    padding: 9px 16px;
    border-radius: 12px;
  }
  .af-nav-action.af-whatsapp-action i {
    color: #fff;
  }
  .af-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: none;
    border-radius: 50%;
    background: rgba(33, 31, 28, .06);
    cursor: pointer;
    justify-self: end;
    -webkit-tap-highlight-color: transparent;
    transition: background .18s ease, transform .12s cubic-bezier(.34, 1.56, .64, 1);
  }
  .af-menu-button:active {
    background: rgba(33, 31, 28, .12);
    transform: scale(.92);
  }
  .af-menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-700);
    transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), opacity .18s ease;
    transform-origin: center;
  }
  #menu-toggle:checked ~ .af-page .af-menu-button,
  #menu-toggle:checked ~ .af-page-header .af-menu-button { background: rgba(33, 31, 28, .1); }
  #menu-toggle:checked ~ .af-page .af-menu-button span:nth-child(1),
  #menu-toggle:checked ~ .af-page-header .af-menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #menu-toggle:checked ~ .af-page .af-menu-button span:nth-child(2),
  #menu-toggle:checked ~ .af-page-header .af-menu-button span:nth-child(2) { opacity: 0; }
  #menu-toggle:checked ~ .af-page .af-menu-button span:nth-child(3),
  #menu-toggle:checked ~ .af-page-header .af-menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .af-mobile-menu {
    display: none;
    gap: 2px;
    padding: 0 18px 16px;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .af-mobile-menu a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
  }
  .af-mobile-menu a:last-child { border-bottom: 0; }
  .af-promo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    text-align: center;
    background: linear-gradient(90deg, var(--gold-100), var(--gold-300), var(--gold-100));
    border-bottom: 1px solid var(--gold-300);
    color: var(--gold-900);
    font-size: 12.5px;
    font-weight: 700;
  }
  .af-promo-strip label { cursor: pointer; font-size: 16px; }
  .af-breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 40px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: #9a9488;
    font-size: 12.5px;
    font-weight: 600;
  }
  .af-breadcrumb span:last-child { color: var(--gold-700); }
  .af-pdp-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 40px 56px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    column-gap: 52px;
    align-items: start;
  }
  .af-pdp-left { display: flex; flex-direction: column; gap: 18px; }
  .af-product-details { align-self: start; }
  .af-pdp-left .af-info-card { margin-top: 0; }
  .af-gallery-main {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--paper);
    margin-bottom: 14px;
  }
  .af-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
  .af-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .af-thumbs label {
    display: block;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
  }
  .af-thumbs img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
  .af-info-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    background: #fff;
    margin-top: 28px;
  }
  .af-kicker {
    display: inline-block;
    white-space: nowrap;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .06em;
    background: linear-gradient(135deg, var(--gold), var(--gold-700));
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
  }
  h1 { margin: 0 0 8px; font-size: clamp(30px, 4vw, 42px); line-height: 1.05; }
  .af-subtitle { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
  .af-rating { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; font-size: 13px; }
  .af-stars { color: var(--gold); letter-spacing: .05em; }
  .af-review-jump { color: var(--muted); text-decoration: underline; }
  .af-desc { margin: 0 0 18px; color: #5a554e; font-size: 13.5px; line-height: 1.65; }
  .af-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    font-size: 12.5px;
    color: #4c473f;
  }
  .af-highlights li { position: relative; padding-left: 18px; }
  .af-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
  }
  .af-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
  .af-price { font-size: 32px; font-weight: 850; }
  .af-mrp {
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: var(--muted);
    text-decoration-skip-ink: none;
  }
  .af-discount-badge {
    background: var(--gold-100);
    color: var(--gold-700);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .03em;
    padding: 3px 9px;
    border-radius: 999px;
  }
  .af-tax { color: var(--muted); font-size: 13px; margin: 0 0 8px; }
  .af-tax .af-inline-v1, .af-tax .af-inline-v2, .af-tax .af-inline-v3, .af-tax .af-inline-v4 { color: var(--green); font-weight: 700; }
  .af-stock { margin-bottom: 22px; font-size: 13px; font-weight: 800; }
  .af-stock-ok { color: var(--green); }
  .af-stock-warn { color: #b8590c; }
  .af-stock-gold { color: var(--gold-700); }
  .af-section-title {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
  }
  .af-swatch {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .16s ease;
    background: #fff;
  }
  .af-dot {
    width: 14px;
    height: 14px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    flex: 0 0 auto;
  }
  .af-swatch-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
  .af-swatch-title { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 14px; font-weight: 800; }
  .af-badge {
    white-space: nowrap;
    background: var(--gold-100);
    color: var(--gold-700);
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 850;
    letter-spacing: .04em;
  }
  .af-availability { font-size: 12px; color: var(--green); }
  .af-availability.af-warn { color: #b8590c; }
  .af-availability.af-gold { color: var(--gold-700); }
  .af-swatch-price { font-weight: 850; white-space: nowrap; }
  .af-swatch-price-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
  .af-swatch-mrp {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: var(--muted);
    text-decoration-skip-ink: none;
  }
  .af-note {
    margin-top: 4px;
    padding: 12px 14px;
    background: var(--gold-100);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
    color: var(--gold-900);
    font-size: 12.5px;
    line-height: 1.5;
  }
  .af-actions { display: grid; gap: 10px; margin-top: 18px; }
  .af-action-form,
  .af-mobile-cart-form { display: none; }
  .af-page:has(#v1:checked) .af-action-form.af-flex-v1,
  .af-page:has(#v2:checked) .af-action-form.af-flex-v2,
  .af-page:has(#v3:checked) .af-action-form.af-flex-v3,
  .af-page:has(#v4:checked) .af-action-form.af-flex-v4 { display: grid; }
  .af-page:has(#v1:checked) .af-mobile-cart-form.af-flex-v1,
  .af-page:has(#v2:checked) .af-mobile-cart-form.af-flex-v2,
  .af-page:has(#v3:checked) .af-mobile-cart-form.af-flex-v3,
  .af-page:has(#v4:checked) .af-mobile-cart-form.af-flex-v4 { display: flex; }
  button, .af-button {
    border: 0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    text-align: center;
    font: 800 14px/1 Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: .04em;
  }
  .af-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-700));
    color: #fff;
    box-shadow: 0 6px 18px rgba(201, 146, 12, .3);
  }
  .af-secondary { background: #fff; color: var(--ink); border: 2px solid var(--ink); }
  .af-whatsapp { background: #fff; color: var(--green); border: 1px solid var(--green); }
  .af-secure-note {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
  }
  .af-secure-note span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: #514c44;
    font-size: 12px;
    font-weight: 750;
  }
  .af-secure-note span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--green);
  }
  .af-pincode {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
  }
  .af-pincode label { display: block; font-size: 12px; font-weight: 850; color: var(--ink); }
  .af-pincode-row { display: grid; grid-template-columns: minmax(0, 1fr) 104px; gap: 8px; align-items: stretch; }
  .af-pincode input {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d8d3c9;
    border-radius: 10px;
    font: inherit;
  }
  .af-pincode button {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
  }
  .af-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #eee;
    margin-top: 18px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
  }
  .af-trust-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fff;
    padding: 14px 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
  }
  .af-trust-icon { color: var(--gold-700); font-size: 14px; }
  .af-variant-copy { margin-top: 14px; color: var(--muted); font-size: 12px; line-height: 1.5; }
  .af-notes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .af-notes-grid strong { display: block; margin-bottom: 4px; font-size: 12px; }
  .af-notes-grid span { color: #5a554e; font-size: 12px; line-height: 1.5; }
  details { padding: 14px 0; }
  details + details { border-top: 1px solid var(--line); }
  summary { cursor: pointer; font-weight: 800; }
  details p { margin: 10px 0 0; color: #5a554e; font-size: 13px; line-height: 1.6; }
  .af-rating-breakdown { display: flex; flex-direction: column; gap: 6px; margin: 4px 0 18px; }
  .af-rating-bar-row { display: grid; grid-template-columns: 24px 1fr 32px; align-items: center; gap: 8px; font-size: 11.5px; color: var(--muted); }
  .af-rating-bar-row meter { width: 100%; height: 8px; }
  .af-rating-bar-row meter::-webkit-meter-optimum-value { background: var(--gold); }
  .af-rating-bar-row meter::-moz-meter-bar { background: var(--gold); }
  .af-review { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .af-review-score { font-size: 20px; }
  .af-review-head { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 5px; font-size: 13px; font-weight: 800; }
  .af-verified {
    margin-left: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .03em;
    color: var(--green);
    background: #eaf6ec;
    padding: 2px 7px;
    border-radius: 999px;
  }
  .af-review p { margin: 0; color: #5a554e; font-size: 13px; line-height: 1.6; }
  .af-spec-card h2 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.2;
  }
  .af-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
  }
  .af-spec-table tr + tr { border-top: 1px solid var(--line); }
  .af-spec-table th,
  .af-spec-table td {
    padding: 11px 0;
    text-align: left;
    vertical-align: top;
  }
  .af-spec-table th {
    width: 42%;
    color: var(--muted);
    font-weight: 750;
  }
  .af-spec-table td {
    color: var(--ink);
    font-weight: 700;
  }
  .af-empty {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
  }
  .af-review-button {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 11px;
  }
  .af-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--af-bottom-nav-h, 3.625rem);
    z-index: 80;
    display: none;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-top: 1px solid rgba(33, 31, 28, .12);
    padding: 10px 14px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .06);
  }
  .af-mobile-bar .af-price-mini { flex: 1; font-size: 22px; font-weight: 850; }
  .af-mobile-bar .af-price-mini del {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: var(--muted);
    text-decoration-skip-ink: none;
    margin-left: 4px;
  }
  .af-mobile-bar .af-button { flex: 1.4; border-radius: 12px; }
  .af-mobile-cart-form { align-items: stretch; gap: 8px; flex: 1.6; }
  .af-mobile-cart-form .af-button { flex: 1; }
  .af-mobile-qty {
    flex: 0 0 64px;
    display: flex;
  }
  .af-mobile-qty-select {
    width: 100%;
    border: 2px solid var(--ink);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    font: 800 15px/1 Inter, ui-sans-serif, system-ui, sans-serif;
    text-align: center;
    padding: 0 4px;
    appearance: none;
    -webkit-appearance: none;
  }
  .af-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 820px) {
    body { padding-bottom: calc(76px + var(--af-bottom-nav-h, 3.625rem)); }
    .af-topbar-track span { font-size: 11px; }
    .af-nav { grid-template-columns: 1fr auto; padding: 10px 18px; min-height: 62px; }
    .af-brand img:first-child { width: 34px; height: 34px; }
    .af-brand img:last-child { height: 22px; }
    .af-nav-links { display: none; }
    .af-nav-actions { display: none; }
    .af-menu-button { display: inline-flex; }
    .af-breadcrumb { padding: 14px 20px 0; }
    .af-pdp-grid {
      grid-template-columns: 1fr;
      grid-template-areas:
        "gallery"
        "details"
        "notes"
        "faq";
      gap: 18px;
      padding: 18px 20px 36px;
    }
    .af-pdp-left { display: contents; }
    .af-gallery-section { grid-area: gallery; }
    .af-product-details { grid-area: details; }
    .af-notes-section { grid-area: notes; }
    .af-faq-section { grid-area: faq; }
    .af-info-card { margin-top: 18px; padding: 18px; }
    .af-notes-section,
    .af-faq-section { margin-top: 0; }
    .af-price { font-size: 28px; }
    .af-highlights { grid-template-columns: 1fr; }
    .af-pincode { display: none; }
    .af-trust-grid { grid-template-columns: 1fr 1fr; }
    .af-notes-grid { grid-template-columns: 1fr; }
    .af-mobile-bar { display: flex; }
  }

  @media (max-width: 460px) {
    .af-thumbs { gap: 7px; }
    .af-secure-note span { flex: 1 1 100%; justify-content: center; }
    .af-pincode-row { grid-template-columns: 1fr; }
    .af-swatch { gap: 10px; padding: 12px 10px; }
    .af-swatch-title { font-size: 13px; }
    .af-swatch-price { font-size: 13px; }
  }

  /* ===== Home page — same design language as the product page (gold/ink
     tokens, af-* buttons/badges/section-title, bordered rounded cards) ===== */

  .af-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 0;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .af-hero::-webkit-scrollbar { display: none; }
  .af-hero-slide {
    position: relative;
    scroll-snap-align: center;
    min-height: 560px;
    overflow: hidden;
  }
  .af-hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .af-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 8, 6, .82), rgba(10, 8, 6, .35) 55%, rgba(10, 8, 6, 0) 85%);
  }
  .af-hero-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 48px;
    max-width: 560px;
    color: #fff;
  }
  .af-hero-copy .af-kicker { background: rgba(255, 255, 255, .16); backdrop-filter: blur(6px); }
  .af-hero-copy h1 { margin: 0; font-size: clamp(32px, 4.5vw, 48px); line-height: 1.05; color: #fff; }
  .af-hero-copy p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .88); }
  .af-hero-dots { position: absolute; inset-block-end: 20px; inset-inline: 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
  .af-hero-dot { width: 8px; height: 8px; border-radius: 999px; background: #fff; opacity: .35; transition: opacity .2s ease; }
  .af-hero-dot[aria-selected="true"] { opacity: 1; }

  .af-home-section { max-width: 1280px; margin: 0 auto; padding: 56px 40px; }
  .af-home-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
  .af-home-section-head h2 { margin: 4px 0 0; font-size: clamp(24px, 3vw, 32px); line-height: 1.1; }
  .af-home-subtle { color: var(--muted); font-size: 13px; }

  .af-variant-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
  .af-variant-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .af-variant-card[data-recommended="1"] { border-color: var(--gold); box-shadow: 0 6px 18px rgba(201, 146, 12, .12); }
  .af-variant-card-name { font-size: 18px; font-weight: 800; }
  .af-variant-card-desc { color: var(--muted); font-size: 13px; line-height: 1.6; flex: 1; }
  .af-variant-card-price { font-size: 24px; font-weight: 850; }
  .af-variant-card-note { color: var(--muted); font-size: 12px; }
  .af-variant-card button { margin-top: 4px; }

  .af-brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .af-brand-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    transition: border-color .15s ease;
  }
  .af-brand-card:hover { border-color: var(--gold); }
  .af-brand-card-name { font-weight: 700; font-size: 14px; }

  .af-home-split { max-width: 1280px; margin: 0 auto; padding: 56px 40px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; }
  .af-home-list { display: grid; gap: 2px; margin: 16px 0 20px; }
  .af-home-list-item { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .af-home-list-item h3 { margin: 0 0 4px; font-size: 15px; }
  .af-home-list-item p { margin: 0; color: var(--muted); font-size: 13px; }
  .af-home-list-item span { color: var(--gold-700); font-size: 18px; flex-shrink: 0; }

  .af-rating-summary { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 4px; }
  .af-rating-summary strong { font-size: 32px; font-weight: 850; }
  .af-review-grid { display: grid; gap: 14px; margin-top: 16px; }
  .af-home-review { margin: 0; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); font-size: 13px; line-height: 1.6; color: #4c473f; }
  .af-home-review footer { margin-top: 8px; color: var(--muted); font-size: 12px; }

  .af-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .af-news-card { display: flex; flex-direction: column; gap: 8px; border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: #fff; transition: border-color .15s ease; }
  .af-news-card:hover { border-color: var(--gold); }
  .af-news-card-date { color: var(--muted); font-size: 12px; }
  .af-news-card h3 { margin: 0; font-size: 16px; line-height: 1.35; }
  .af-news-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; flex: 1; }

  .af-cta-banner {
    max-width: 1280px;
    margin: 0 auto 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 36px 40px;
    background: linear-gradient(135deg, var(--gold-100), var(--paper));
    border: 1px solid var(--gold-300);
    border-radius: 20px;
  }
  .af-cta-banner h2 { margin: 0 0 6px; font-size: 22px; }
  .af-cta-banner p { margin: 0; color: var(--gold-900); font-size: 13.5px; }
  .af-cta-banner .af-button { padding: 12px 20px; display: inline-flex; }

  @media (max-width: 900px) {
    .af-home-split { grid-template-columns: 1fr; gap: 36px; }
    .af-news-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .af-hero-slide { min-height: 460px; }
    .af-hero-scrim { background: linear-gradient(to top, rgba(10, 8, 6, .92), rgba(10, 8, 6, .7) 55%, rgba(10, 8, 6, .55) 100%); }
    .af-hero-copy { max-width: 100%; justify-content: flex-end; padding: 24px; padding-bottom: 56px; }
    .af-hero-copy p { display: none; }
    .af-home-section, .af-home-split, .af-cta-banner { padding-left: 20px; padding-right: 20px; }
    .af-variant-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ===== Listing pages (perfumes/brands/collections search results) ===== */

  .af-listing-main { max-width: 1280px; margin: 0 auto; padding: 28px 40px 64px; }
  .af-listing-hero { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
  .af-breadcrumb-inline { color: #9a9488; font-size: 12.5px; font-weight: 600; margin-bottom: 10px; }
  .af-breadcrumb-inline a { color: inherit; }
  .af-breadcrumb-inline span { color: var(--gold-700); }
  .af-listing-hero h1 { margin: 4px 0 0; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.1; }
  .af-listing-hero .af-home-subtle { margin: 0; }

  .af-listing-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 32px; align-items: start; }

  .af-filter-panel { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
  .af-filter-panel > summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; font-weight: 800; font-size: 14px; cursor: pointer; }
  .af-filter-panel > summary::-webkit-details-marker { display: none; }
  .af-filter-panel-body { padding: 4px 18px 18px; }
  .af-filter-clear-row { margin-bottom: 10px; }
  .af-filter-clear-row a { color: var(--gold-700); font-size: 12.5px; font-weight: 700; }
  .af-filter-group { border-top: 1px solid var(--line); padding: 12px 0; }
  .af-filter-group > summary { list-style: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 13px; font-weight: 800; }
  .af-filter-group > summary::-webkit-details-marker { display: none; }
  .af-filter-group summary i { font-size: 12px; color: var(--muted); transition: transform .15s ease; }
  .af-filter-group[open] > summary i { transform: rotate(180deg); }
  .af-filter-options { display: grid; gap: 2px; margin-top: 10px; }
  .af-filter-link { display: flex; justify-content: space-between; gap: 8px; padding: 7px 8px; border-radius: 8px; font-size: 13px; color: #4c473f; }
  .af-filter-link:hover { background: var(--paper); }
  .af-filter-link[aria-current="true"] { background: var(--gold-100); color: var(--gold-700); font-weight: 700; }
  .af-filter-link span:last-child { color: var(--muted); font-size: 12px; }

  .af-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
  .af-search-form { display: flex; gap: 8px; flex: 1; min-width: 220px; max-width: 360px; }
  .af-search-form input { flex: 1; min-width: 0; height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
  .af-sort-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
  .af-sort-row .af-home-subtle { margin-right: 4px; }
  .af-sort-link { padding: 7px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; color: var(--muted); }
  .af-sort-link:hover { background: var(--paper); }
  .af-sort-link.is-active { background: var(--ink); color: #fff; }

  .af-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
  .af-product-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
  .af-product-card:hover { border-color: var(--gold); box-shadow: 0 8px 22px rgba(33, 31, 28, .08); }
  .af-product-card-image { aspect-ratio: 1 / 1.1; background: var(--paper); display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .af-product-card-image img { width: 100%; height: 100%; object-fit: cover; }
  .af-product-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
  .af-product-card-brand { color: var(--muted); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
  .af-product-card-title { font-size: 15px; font-weight: 800; }
  .af-product-card .tf-store-rating-summary { display: flex; align-items: center; gap: 6px; font-size: 11.5px; margin: 2px 0; }
  .af-product-card .tf-store-rating-stars { color: var(--gold); letter-spacing: .03em; }
  .af-product-card-copy { color: var(--muted); font-size: 12.5px; line-height: 1.5; flex: 1; margin: 2px 0 8px; }
  .af-product-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
  .af-product-card-foot strong { font-size: 16px; font-weight: 850; }

  .af-pagination { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 28px; }
  .af-pagination a, .af-pagination span { min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 700; }
  .af-pagination span[aria-current="page"] { background: var(--ink); color: #fff; border-color: var(--ink); }
  .af-pagination a:hover { border-color: var(--gold); color: var(--gold-700); }

  @media (max-width: 900px) {
    .af-listing-layout { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .af-listing-main { padding-left: 20px; padding-right: 20px; }
    .af-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  }
