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

  :root {
    --cream: #E2D2B3;
    --warm-white: #EDE0C8;
    --ink: #1A1612;
    --rust: #B5451B;
    --gold: #C8922A;
    --muted: #5E5039;
    --border: #C8B898;
    --active-bg: #3A1A0A;
  }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Libre Baskerville', Georgia, serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* Grain */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ── NAV ── */
  /* Merged dark header: nav + page title in one black bar */
  .site-header {
    background: var(--ink);
    border-bottom: 3px solid var(--rust);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 2.5rem 1.4rem 1.5rem;
    width: 100%;
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    min-width: 0;
  }
  .header-left .nav-logo img { height: 110px; width: auto; display: block; }
  .header-title-block { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 0; }
  .header-title-block .page-hero-eyebrow { margin-top: 0.35rem; margin-bottom: 0; }
  .header-title-block .header-intro { margin-top: 0.5rem; max-width: 42ch; }
  .header-title-block .header-intro p { font-size: 0.8rem; line-height: 1.45; }
  .header-title-block h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
  }
  .nav-logo { text-decoration: none; display: flex; align-items: center; }
  .nav-logo img { height: 64px; width: auto; display: block; }
  .nav-right { display: flex; align-items: center; gap: 1.9rem; flex-wrap: nowrap; white-space: nowrap; }
  .nav-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-link:hover { color: var(--gold); }
  .nav-cart-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-cart-link:hover { color: var(--gold); }

  .cart-count {
    display: none;
    background: var(--rust);
    color: white;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 99px;
    margin-left: 0.3rem;
    vertical-align: middle;
  }
  .cart-count.visible { display: inline; }

  /* ── PAGE HERO ── */
  .page-hero {
    background: var(--ink);
    padding: 0 3rem 2.3rem;
  }
  .page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
  .page-hero-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
  }
  .page-hero p {
    margin-top: 0.6rem;
    color: #8A7E75;
    font-size: 0.88rem;
    font-style: italic;
    max-width: 400px;
    line-height: 1.7;
  }

  /* ── CONFIGURATOR ── */
  .configurator {
    flex: 1;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    width: 100%;
  }

  .config-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.5rem;
  }

  /* 3-column grid */
  .config-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
  }

  .config-col {
    background: var(--warm-white);
    padding: 1.75rem;
  }

  .config-col-header {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--ink);
    padding: 0.6rem 1rem;
    margin: -1.75rem -1.75rem 1.5rem;
  }

  /* ── BASE OPTIONS ── */
  /* ── BASE DROPDOWN ── */
  .base-dropdown {
    position: relative;
    margin-bottom: 1rem;
  }

  .base-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: white;
    border: 1.5px solid var(--border);
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
    text-align: left;
    min-height: 64px;
  }
  .base-dropdown-trigger:hover { border-color: var(--rust); }
  .base-dropdown.open .base-dropdown-trigger { border-color: var(--rust); }

  .base-trigger-content {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    min-width: 0;
  }
  .base-trigger-placeholder {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-style: italic;
  }
  .base-trigger-thumb {
    width: 44px; height: 44px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
  }
  .base-trigger-thumb-placeholder {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: #2A2420;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }
  .base-trigger-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
  }

  .base-dropdown-caret {
    color: var(--muted);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .base-dropdown.open .base-dropdown-caret { transform: rotate(180deg); }

  /* Dropdown list */
  .base-dropdown-list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid var(--rust);
    z-index: 30;
    max-height: 380px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(26,22,18,0.18);
  }
  .base-dropdown.open .base-dropdown-list { display: block; }

  .base-list-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.85rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }
  .base-list-item:last-child { border-bottom: none; }
  .base-list-item:hover { background: #FDF5EC; }
  .base-list-item.selected { background: #FDF5EC; }

  .base-list-thumb {
    width: 52px; height: 52px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
  }
  .base-list-thumb-placeholder {
    width: 52px; height: 52px;
    flex-shrink: 0;
    background: #2A2420;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }
  .base-list-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
  }
  .base-list-item:hover .base-list-name,
  .base-list-item.selected .base-list-name { color: var(--rust); }

  /* ── SUB-OPTIONS ── */
  .sub-options-wrap { display: none; }
  .sub-options-wrap.visible { display: block; }

  .sub-options {
    border: 1.5px solid var(--border);
    border-top: none;
    padding: 0.85rem 1rem 1rem;
    background: #FDF5EC;
    margin-top: -1rem;
  }
  .sub-options-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
  }

  .sub-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    transition: color 0.15s;
  }
  .sub-option:hover { color: var(--rust); }
  .sub-option.selected { color: var(--rust); font-weight: 600; }

  .sub-radio {
    width: 11px; height: 11px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    transition: all 0.15s;
  }
  .sub-option.selected .sub-radio {
    border-color: var(--rust);
    background: var(--rust);
  }
  /* ── MIXERS ── */
  .mixer-group { margin-bottom: 1.25rem; }
  .mixer-group-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
  }

  .mixer-option,
  .topping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    background: white;
    border: 1.5px solid var(--border);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--ink);
  }
  .mixer-option:hover,
  .topping-option:hover { border-color: var(--rust); }
  .mixer-option.selected,
  .topping-option.selected { border-color: var(--rust); background: #FDF5EC; color: var(--rust); }

  /* Disabled when the cap is reached */
  .mixer-option.disabled,
  .topping-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f0ece4;
  }
  .mixer-option.disabled:hover,
  .topping-option.disabled:hover { border-color: var(--border); }

  .mixer-counter {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.85rem;
  }
  .mixer-counter strong { color: var(--rust); }
  .mixer-counter.maxed { color: var(--rust); }

  .config-col-subhead {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--ink);
    padding: 0.6rem 1rem;
    margin: 0.5rem 0 0.6rem;
  }
  .topping-divider {
    height: 1px;
    background: var(--border);
    margin: 1.5rem -1.75rem 0;
  }

  .mixer-check {
    width: 14px; height: 14px;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    transition: all 0.15s;
  }
  .mixer-option.selected .mixer-check,
  .topping-option.selected .mixer-check {
    background: var(--rust);
    border-color: var(--rust);
    color: white;
  }

  .mixer-placeholder {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.68rem;
    color: var(--muted);
    font-style: italic;
    padding: 1rem;
    text-align: center;
    border: 1.5px dashed var(--border);
    background: white;
  }

  /* ── MIXER / TOPPING DROPDOWNS ── */
  .opt-dropdown {
    position: relative;
    margin-bottom: 1rem;
  }
  .opt-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: white;
    border: 1.5px solid var(--border);
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
    text-align: left;
    min-height: 52px;
  }
  .opt-dropdown-trigger:hover { border-color: var(--rust); }
  .opt-dropdown.open .opt-dropdown-trigger { border-color: var(--rust); }
  .opt-dropdown-trigger:disabled { cursor: not-allowed; opacity: 0.55; }
  .opt-dropdown-trigger:disabled:hover { border-color: var(--border); }

  .opt-trigger-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    flex: 1;
    min-width: 0;
  }
  .opt-dropdown.has-selection .opt-trigger-label { color: var(--rust); font-weight: 600; }

  .opt-dropdown-caret {
    color: var(--muted);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .opt-dropdown.open .opt-dropdown-caret { transform: rotate(180deg); }

  .opt-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid var(--rust);
    z-index: 25;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(26,22,18,0.18);
    padding: 0.85rem 0.85rem 0.35rem;
  }
  .opt-dropdown.open .opt-dropdown-panel { display: block; }
  .opt-dropdown-panel .mixer-counter { margin-bottom: 0.75rem; }

  /* ── QUANTITY & ADD TO CART ── */
  .qty-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.6rem;
  }

  .qty-row {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border);
    background: white;
    width: fit-content;
    margin-bottom: 0.6rem;
  }

  .qty-unit-note {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.5rem;
  }

  .qty-btn {
    width: 40px; height: 40px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    font-size: 1.2rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    line-height: 1;
  }
  .qty-btn:hover { background: var(--rust); }

  .qty-display {
    min-width: 52px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    padding: 0 0.5rem;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    line-height: 40px;
  }

  .price-preview {
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  .price-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.3rem;
  }
  .price-preview-row.total {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    color: var(--ink);
    font-size: 0.75rem;
  }
  .price-preview-row .price-val {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--rust);
  }
  .price-tbd {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    font-style: italic;
    background: #f5f0e8;
    border: 1px dashed var(--border);
    padding: 0.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .add-to-cart-btn {
    width: 100%;
    background: var(--rust);
    color: white;
    border: none;
    padding: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }
  .add-to-cart-btn:hover { background: var(--ink); }
  .add-to-cart-btn:disabled {
    background: transparent;
    color: var(--muted);
    border: 1.5px dashed var(--border);
    cursor: default;
    opacity: 1;
  }

  /* Confirmation flash */
  .add-confirm {
    display: none;
    background: #1E3A1E;
    border: 1px solid #4A7C4A;
    color: #A8D5A8;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
  }

  /* ── INLINE CART PANEL ── */
  .inline-cart {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
  }
  .inline-cart-head {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.75rem;
  }
  .inline-cart-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.8rem;
    color: var(--ink);
  }
  .inline-cart-line:last-of-type { border-bottom: none; }
  .inline-cart-line .icl-name { flex: 1; line-height: 1.35; }
  .inline-cart-line .icl-qty { color: var(--rust); font-size: 0.72rem; white-space: nowrap; }
  .inline-cart-line .icl-price { white-space: nowrap; min-width: 56px; text-align: right; }
  .inline-cart-line .icl-remove {
    background: none; border: none;
    color: var(--muted); cursor: pointer;
    font-size: 0.9rem; line-height: 1;
    padding: 0.2rem 0.3rem;
    flex-shrink: 0;
    transition: color 0.15s;
  }
  .inline-cart-line .icl-remove:hover { color: var(--rust); }
  .inline-cart-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 2px solid var(--ink);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--ink);
  }
  .inline-cart-foot span:last-child { color: var(--rust); font-weight: 700; }

  /* ── EXPLORE OTHER CATEGORIES ── */
  .explore {
    max-width: 900px;
    margin: 1rem auto 3rem;
    padding: 2.5rem 2rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .explore-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.4rem;
  }
  .explore h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  .explore-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .explore-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    width: 200px;
    padding: 1rem;
    border: 1.5px solid var(--border);
    background: var(--warm-white);
    transition: border-color 0.2s, transform 0.2s;
  }
  .explore-link:hover { border-color: var(--rust); transform: translateY(-3px); }
  .explore-link img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
  .explore-link .el-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--ink);
  }
  .explore-link .el-go {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
  }
  @media (max-width: 600px) {
    .explore-links { gap: 0.6rem; }
    .explore-link { width: 132px; padding: 0.6rem; }
    .explore-link .el-name { font-size: 0.9rem; }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }
  footer p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #5A4E45;
  }
  footer a {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  footer a:hover { color: var(--cream); }
  @media (max-width: 900px) {
    .header-nav { flex-wrap: wrap; }
    .header-left { gap: 1rem; }
    .header-left .nav-logo img { height: 60px; }
    .header-title-block h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .nav-right { width: 100%; justify-content: flex-start; gap: 1.3rem; }
  }


  @media (max-width: 900px) {
    .config-columns { grid-template-columns: 1fr; }
    .header-nav { padding: 1rem 1.5rem 0.85rem; }
    .nav-logo img { height: 52px; }
    .page-hero { padding: 1.25rem 1.5rem 1.75rem; }
    .configurator { padding: 0 1.25rem; }
  }

  /* ── PHONE TUNING ── */
  @media (max-width: 600px) {
    .configurator { padding: 0 0.85rem; }
    .config-col { padding: 1.25rem 1rem; }
    /* Bigger, easier-to-tap quantity controls */
    .qty-btn { width: 48px; height: 48px; font-size: 1.35rem; }
    .qty-display { line-height: 48px; min-width: 60px; font-size: 1.4rem; }
    /* Mix-in options: more vertical room + comfortable tap height */
    .mixer-option { padding: 0.7rem 0.6rem; min-height: 44px; }
    /* Add-to-cart and selection summary: roomier */
    .add-to-cart-btn { padding: 1.15rem; font-size: 0.78rem; }
    .header-nav { padding: 0.9rem 0.85rem 0.75rem; gap: 0.75rem; }
    .nav-logo img { height: 44px; }
    .nav-right { gap: 1rem; }
    .nav-link, .nav-cart-link { font-size: 0.62rem; letter-spacing: 0.12em; }
    .page-hero { padding: 1.1rem 1rem 1.5rem; }
    .page-hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
    /* Base dropdown: larger touch trigger */
    .base-dropdown-trigger { padding: 1rem; }
    .base-option { padding: 0.85rem 1rem; min-height: 48px; }
  }
