  /* ====================================================
     DESIGN TOKENS — pulled directly from checkout.warrenlotas.com
     ==================================================== */
  :root {
    --bg:        #F4EFE4;   /* main cream */
    --card:      #FFFDF7;   /* lighter card cream */
    --ink:       #080808;   /* near-black */
    --ink-soft:  #3C3932;
    --muted:     #6D675F;
    --yellow:    #FFD817;   /* highlight / selected state */
    --green:     #4CBB17;   /* heading accent */
    --hair:      #DDD8CF;
    --border:    3px solid var(--ink);
    --radius:    8px;
    /* Helvetica Bold stack — Helvetica Neue (Mac/iOS), Arial Black (Windows), system fallback */
    --font:      'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  /* ---------- BASE ---------- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--font);
    font-weight: 700;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.35;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
  }
  img, svg { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  /* ---------- TOP STRIP ---------- */
  .topstrip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 2px solid var(--ink);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--bg);
  }
  .topstrip__mark { font-weight: 900; flex: 0 0 auto; }
  .topstrip__meta { font-weight: 700; color: var(--ink-soft); flex: 1; text-align: center; }
  .topstrip__cart {
    background: var(--ink);
    color: var(--card);
    border: 2px solid var(--ink);
    border-radius: 4px;
    padding: 5px 12px 4px;
    font-family: var(--font);
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    flex: 0 0 auto;
  }
  .topstrip__cart:hover { background: var(--yellow); color: var(--ink); }
  .topstrip__cart[data-empty="false"] { background: var(--yellow); color: var(--ink); }
  @media (max-width: 480px) {
    .topstrip { padding: 12px 16px; font-size: 9px; letter-spacing: 0.22em; }
  }

  /* ---------- HERO ---------- */
  .hero {
    text-align: center;
    padding: 14px 20px 6px;
    position: relative;
  }
  .hero__eyebrow {
    display: inline-block;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--yellow);
    padding: 4px 10px 3px;
    border: 2px solid var(--ink);
    border-radius: 4px;
    margin-bottom: 8px;
  }
  .hero__title {
    font-family: var(--font);
    font-weight: 900;
    font-size: clamp(34px, 9vw, 76px);
    line-height: 0.95;
    color: var(--ink);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
  }
  @media (max-width: 480px) {
    .hero { padding: 8px 16px 0; }
    .hero__eyebrow { font-size: 8px; letter-spacing: 0.24em; margin-bottom: 5px; padding: 3px 8px 2px; }
    .hero__title { font-size: clamp(28px, 10vw, 56px); }
  }

  /* ---------- PAGE WRAPPER ---------- */
  .wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ---------- SECTION LABEL ---------- */
  .label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 14px 0 18px;
    font-size: 11px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: 0.32em;
    text-transform: uppercase;
  }
  /* Labels following the product tiles get more breathing room above */
  .tiles + .label { margin-top: 40px; }
  @media (max-width: 480px) {
    .label { margin: 4px 0 12px; gap: 10px; }
    .tiles + .label { margin-top: 30px; }
  }
  /* Label following a product (Find Me section) gets more breathing room */
  .product + .label { margin-top: 36px; }
  .label::before,
  .label::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--ink);
  }
  .label__num {
    font-size: 11px;
    font-weight: 900;
    color: var(--ink-soft);
    margin-right: 4px;
  }

  /* ---------- PRODUCT BLOCK ---------- */
  .product {
    margin-bottom: 56px;
  }
  .product__media {
    background: #FFFFFF;
    border: var(--border);
    border-radius: var(--radius);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
  }
  .product__media svg,
  .product__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .product__media::after {
    /* subtle inner shadow for depth */
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 -30px 60px -30px rgba(8,8,8,0.06);
    border-radius: var(--radius);
  }
  .product__idx {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    font-weight: 900;
    color: var(--ink-soft);
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .product__name {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .product__price {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: 0.06em;
  }

  /* size pills row */
  .sizes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    border: 0;
    padding: 0;
    margin-inline: 0;
  }
  .size {
    min-width: 56px;
    padding: 8px 12px;
    background: var(--card);
    border: var(--border);
    border-radius: var(--radius);
    font-weight: 900;
    font-size: 14px;
    color: var(--ink);
    font-family: var(--font);
    letter-spacing: 0.06em;
    text-align: center;
    cursor: pointer;
    transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease;
  }
  button.size { line-height: 1; }
  .size:hover { transform: translateY(-1px); background: var(--bg); }
  .size.is-selected, .size.is-selected:hover {
    background: var(--yellow);
    transform: translateY(-1px);
  }
  /* Indiana Boy decorative pills aren't clickable */
  .product--coming-soon .size {
    cursor: default;
    opacity: 0.55;
  }
  .product--coming-soon .size:hover { transform: none; background: var(--card); }

  /* status pill */
  .status {
    display: block;
    margin: 14px auto 0;
    width: fit-content;
    padding: 8px 18px;
    background: var(--card);
    border: 2px solid var(--ink);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  /* big CTA button */
  .cta {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 16px 26px;
    background: var(--ink);
    color: var(--card);
    border: var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 0.1s ease, background 0.15s ease;
  }
  .cta:hover {
    background: var(--yellow);
    color: var(--ink);
    transform: translateY(-2px);
  }
  .cta:active { transform: translateY(0); }

  /* alt cta (inverse) */
  .cta--alt {
    background: var(--card);
    color: var(--ink);
  }
  .cta--alt:hover {
    background: var(--yellow);
  }

  /* ---------- LINKS BLOCK ---------- */
  .links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 8px;
    padding-bottom: 30px;
  }
  .link-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px 16px;
    background: var(--card);
    color: var(--ink);
    border: var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform 0.1s ease, background 0.15s ease, box-shadow 0.1s ease;
  }
  .link-btn:hover {
    background: var(--yellow);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--ink);
  }
  .link-btn__icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .link-btn__icon svg {
    width: 22px;
    height: 22px;
    display: block;
  }
  .link-btn__label {
    flex: 1;
    text-align: left;
    min-width: 0;
  }
  .link-btn__arrow {
    flex: 0 0 auto;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0;
  }
  /* brand-color chip backgrounds */
  .link-btn__icon--ig { background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); }
  .link-btn__icon--yt { background: #FF0000; }
  .link-btn__icon--tt { background: #000; }
  .link-btn__icon--snap { background: #FFFC00; }
  .link-btn__icon--x { background: #000; }
  .link-btn__icon--31 { background: var(--card); }
  .link-btn__icon--kalshi { background: #00C853; }
  .link-btn__icon--mail { background: var(--ink); }

  /* ---------- FOOTER ---------- */
  .footer {
    text-align: center;
    padding: 50px 20px 56px;
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border-top: 2px solid var(--ink);
    margin-top: 30px;
  }
  .footer__mark {
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
    display: block;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }
  .footer__bar {
    display: inline-block;
    width: 40px;
    height: 4px;
    background: var(--yellow);
    border: 2px solid var(--ink);
    border-radius: 2px;
    margin: 0 0 14px;
    vertical-align: middle;
  }

  /* ---------- COMING-SOON BADGE ---------- */
  .product__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--ink);
    color: var(--card);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 6px 10px 5px;
    border-radius: 4px;
    z-index: 2;
  }
  .product--coming-soon .product__media { opacity: 0.92; }
  .cta--disabled {
    background: var(--card);
    color: var(--muted);
    cursor: not-allowed;
    opacity: 0.85;
  }
  .cta--disabled:hover {
    background: var(--card);
    color: var(--muted);
    transform: none;
  }

  /* ---------- BACKDROP (shared by modal + drawer) ---------- */
  .backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
    z-index: 90;
  }
  .backdrop.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease;
  }

  /* ---------- CART DRAWER ---------- */
  .drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(420px, 100vw);
    background: var(--bg);
    border-left: 3px solid var(--ink);
    box-shadow: -10px 0 0 rgba(8,8,8,0.04);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(.2,.7,.3,1);
    display: flex;
    flex-direction: column;
  }
  .drawer.is-open { transform: translateX(0); }
  .drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 2px solid var(--ink);
  }
  .drawer__title {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }
  .drawer__close {
    background: transparent;
    border: none;
    font-family: var(--font);
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    padding: 6px 8px;
    line-height: 1;
    color: var(--ink);
  }
  .drawer__close:hover { color: var(--ink-soft); }
  .drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 20px;
  }
  .drawer__empty {
    text-align: center;
    padding: 60px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .drawer__foot {
    border-top: 2px solid var(--ink);
    padding: 18px 20px 22px;
    background: var(--bg);
  }
  .drawer__totals {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .drawer__note {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
    margin-bottom: 14px;
  }
  .drawer__cta {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--ink);
    color: var(--card);
    border: var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 900;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
  }
  .drawer__cta:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }
  .drawer__cta:disabled {
    background: var(--card);
    color: var(--muted);
    cursor: not-allowed;
    transform: none;
  }

  /* ---------- CART ITEMS IN DRAWER ---------- */
  .line {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--hair);
  }
  .line:last-child { border-bottom: 0; }
  .line__img {
    width: 72px;
    height: 72px;
    background: #fff;
    border: 2px solid var(--ink);
    border-radius: 4px;
    overflow: hidden;
  }
  .line__img img { width: 100%; height: 100%; object-fit: contain; }
  .line__info { min-width: 0; }
  .line__name {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    line-height: 1.2;
  }
  .line__size {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink-soft);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .line__qty {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--ink);
    border-radius: 4px;
  }
  .line__qty button {
    background: transparent;
    border: 0;
    width: 26px;
    height: 26px;
    font-family: var(--font);
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    color: var(--ink);
  }
  .line__qty button:hover { background: var(--yellow); }
  .line__qty span {
    min-width: 24px;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 26px;
    border-left: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
  }
  .line__right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
  .line__price {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
  }
  .line__remove {
    background: transparent;
    border: none;
    font-family: var(--font);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
  }
  .line__remove:hover { color: var(--ink); }

  /* ---------- TOAST ---------- */
  .toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 24px);
    background: var(--ink);
    color: var(--card);
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    box-shadow: 4px 4px 0 var(--yellow);
  }
  .toast.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  /* ---------- MOBILE TUNING ---------- */
  @media (max-width: 480px) {
    .hero { padding: 24px 16px 18px; }
    .wrap { padding: 0 16px; }
    .product { margin-bottom: 44px; }
    .product__name { font-size: 18px; }
    .product__price { font-size: 13px; }
    .cta { font-size: 13px; padding: 15px 20px; }
    .link-btn { font-size: 12px; padding: 10px 14px; letter-spacing: 0.16em; gap: 12px; }
    .link-btn__icon { width: 34px; height: 34px; }
    .link-btn__icon svg { width: 20px; height: 20px; }
    .label { font-size: 12px; letter-spacing: 0.24em; }
  }

  /* ============================================================
     SMALL PRODUCT TILES — homepage 2-column grid
     ============================================================ */
  .tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 8px;
  }
  .tile {
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.1s ease;
  }
  .tile:hover { transform: translateY(-2px); }
  .tile__media {
    background: #FFFFFF;
    border: var(--border);
    border-radius: var(--radius);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
  }
  .tile__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .tile__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 -24px 48px -24px rgba(8,8,8,0.06);
    border-radius: var(--radius);
  }
  .tile__name {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .tile__price {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  .tile__cta {
    display: block;
    padding: 9px 12px;
    background: var(--ink);
    color: var(--card);
    border: 2px solid var(--ink);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .tile:hover .tile__cta { background: var(--yellow); color: var(--ink); }
  @media (max-width: 480px) {
    .tiles { gap: 10px; }
    .tile__media { margin-bottom: 10px; }
    .tile__name { font-size: 11px; }
    .tile__price { font-size: 10px; margin-bottom: 8px; }
    .tile__cta { font-size: 9px; padding: 8px 10px; letter-spacing: 0.16em; }
  }

  /* ============================================================
     PRODUCT DETAIL PAGE (PDP)
     ============================================================ */
  .pdp { padding: 18px 0 50px; }
  .back-link {
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 18px;
    padding: 4px 0;
  }
  .back-link:hover { color: var(--ink); }
  .pdp__media {
    background: #FFFFFF;
    border: var(--border);
    border-radius: var(--radius);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
  }
  .pdp__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .pdp__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 -30px 60px -30px rgba(8,8,8,0.06);
    border-radius: var(--radius);
  }
  .pdp__title {
    text-align: center;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 6px;
  }
  .pdp__price {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: 0.06em;
  }
  .pdp__desc {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 22px;
    text-align: center;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
