/* ── 0. RESET & BOX-MODEL ─────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  html, body { overflow-x: hidden; max-width: 100vw; }
  body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #212121;
    background: #f5f5f5;
    line-height: 1.5;
    /* Space for fixed bottom-nav on mobile */
    padding-bottom: 60px;
  }
  @media (min-width: 768px) { body { padding-bottom: 0; } }

  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; padding: 0; margin: 0; }
  img { max-width: 100%; height: auto; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  /* ── 1. CSS DESIGN TOKENS ─────────────────────────────────── */
  :root {
    --orange:        #ff7a00;
    --orange-dark:   #e56700;
    --orange-light:  #fff4e8;
    --green-500:     #ff7a00;   /* orange theme override */
    --green-600:     #ff7a00;   /* orange theme override */
    --green-700:     #e56700;   /* orange theme override */
    --green-800:     #cc5a00;   /* orange theme override */
    --green-900:     #1f2937;   /* dark charcoal — orange theme override */
    --green-50:      #fff4e8;   /* soft orange bg — orange theme override */
    --gold-300:      #d4af37;
    --red:           #e02020;
    --white:         #ffffff;
    --gray-50:       #fafafa;
    --gray-100:      #f5f5f5;
    --gray-200:      #eeeeee;
    --gray-300:      #e0e0e0;
    --gray-400:      #bdbdbd;
    --gray-500:      #9e9e9e;
    --gray-600:      #757575;
    --gray-700:      #616161;
    --gray-800:      #424242;
    --gray-900:      #212121;
    --radius-sm:     4px;
    --radius-md:     8px;
    --radius-lg:     12px;
    --shadow-sm:     0 1px 4px rgba(0,0,0,.10);
    --shadow-md:     0 4px 16px rgba(0,0,0,.12);
    --shadow-lg:     0 8px 32px rgba(0,0,0,.15);
    --nav-height:    56px;
    --bottom-nav-h:  60px;
    --container-max: 1280px;
  }

  /* ── 2. CONTAINER ─────────────────────────────────────────── */
  .container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
  }
  @media (min-width: 768px) { .container { padding: 0 24px; } }

  /* ── 3. TOP UTILITY BAR (location + phone / social) ───────── */
  .tz-topbar {
    background: #14161c;
    color: rgba(255,255,255,.72);
    font-size: 0.76rem;
  }
  .tz-topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
    gap: 20px;
  }
  .tz-topbar__left {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
    overflow: hidden;
  }
  .tz-topbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }
  .tz-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: .02em;
    transition: color .15s;
  }
  a.tz-topbar__item:hover { color: var(--orange); }
  .tz-topbar__item svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--orange); }
  .tz-topbar__social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
  .tz-topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px; height: 15px;
    color: rgba(255,255,255,.72);
    transition: color .15s, transform .15s;
  }
  .tz-topbar__social a:hover { color: var(--orange); transform: translateY(-1px); }
  .tz-topbar__social svg { width: 100%; height: 100%; }

  /* ── 4. BRAND / MID BAR (logo + ticker + contact info) ─────── */
  .tz-midbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
  }
  .tz-midbar__row {
    display: flex;
    align-items: stretch;
    min-height: 64px;
  }
  .tz-midbar__logo-wrap {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 34px 0 4px;
    margin-right: -24px;
    z-index: 2;
  }
  .tz-midbar__logo-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2000px;
    right: 0;
    background: linear-gradient(135deg, #12213f 0%, #0b1730 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 0 100%);
    z-index: -1;
  }

  .tz-midbar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .tz-midbar__logo .tz-logo-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,122,0,.55);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }
  .tz-midbar__logo .tz-logo-img { width: 100%; height: 100%; object-fit: cover; }
  .tz-midbar__logo .tz-logo-icon svg { width: 20px; height: 20px; }
  .tz-midbar__logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.15; }
  .tz-midbar__logo-name { font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: .01em; }

  .tz-midbar__ticker {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-left: 28px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 20px), transparent 100%);
  }
  .tz-midbar__ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: tzMidTicker 26s linear infinite;
    will-change: transform;
  }
  .tz-midbar__ticker:hover .tz-midbar__ticker-track { animation-play-state: paused; }
  .tz-midbar__ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    font-size: 0.8rem;
    font-weight: 800;
    font-style: italic;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: .01em;
  }
  .tz-midbar__ticker-track span svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--orange); }
  .tz-midbar__ticker-sep { color: var(--gray-300) !important; font-weight: 400 !important; padding: 0 4px !important; }
  @keyframes tzMidTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .tz-midbar__contacts {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 8px 0 26px;
    flex-shrink: 0;
  }
  .tz-midbar__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
  }
  .tz-midbar__contact-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--green-50, #fff4e8);
    color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .tz-midbar__contact-icon svg { width: 15px; height: 15px; }
  .tz-midbar__contact-label { font-size: 0.62rem; color: var(--gray-500); font-weight: 600; }
  .tz-midbar__contact-value { font-size: 0.8rem; color: var(--gray-900); font-weight: 800; }
  a.tz-midbar__contact:hover .tz-midbar__contact-value { color: var(--orange); }

  @media (max-width: 1180px) { .tz-midbar__contacts { display: none; } }
  @media (max-width: 900px) {
    .tz-topbar__row { gap: 14px; }
  }
  @media (max-width: 640px) {
    /* Top utility bar wraps onto two rows on mobile instead of
       scrolling horizontally, so everything stays visible at once. */
    .tz-topbar__row {
      flex-wrap: wrap;
      justify-content: flex-start;
      row-gap: 6px;
      height: auto;
      padding: 8px 0;
      overflow-x: visible;
    }
    .tz-topbar__left {
      overflow: visible;
      row-gap: 6px;
      gap: 14px;
    }
    .tz-topbar__right {
      justify-content: flex-start;
      flex-wrap: wrap;
      row-gap: 6px;
      gap: 14px;
    }
    .tz-topbar__social {
      justify-content: flex-start;
    }

    .tz-midbar__row { min-height: 56px; flex-wrap: wrap; }
    .tz-midbar__logo-wrap { padding: 0 30px 0 4px; margin-right: -18px; }
    .tz-midbar__logo-wrap::before { clip-path: polygon(0 0, 100% 0, calc(100% - 26px) 100%, 0 100%); }
    .tz-midbar__logo .tz-logo-icon { width: 30px; height: 30px; }
    .tz-midbar__logo-name { font-size: 0.9rem; }
    .tz-midbar__ticker { padding-left: 18px; }
    .tz-midbar__ticker-track span { font-size: 0.68rem; padding: 0 12px; }
  }

  /* ── STICKY HEADER GROUP — pins the utility bar, brand/ticker
     bar, and main nav together so the whole block stays put
     while the page scrolls. Fixed (not sticky) so it never moves,
     even if an ancestor element interferes with sticky contexts.
     JS below reserves the equivalent space on <body> so content
     doesn't jump underneath it. ─────────────────────────────── */
  .tz-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
  /* Static fallback so content isn't hidden under the fixed header
     before the JS below measures the real height; JS overrides this
     with an exact pixel value once the page has laid out. */
  body { padding-top: 158px; }
  @media (max-width: 767px) { body { padding-top: 150px; } }

  /* ── 4b. MAIN NAV BAR (links + cart / avatar / CTA) ────────── */
  .tz-navbar {
    background: #14161c;
  }
  .tz-mainnav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    gap: 24px;
  }
  .tz-mainnav__links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0; padding: 0;
  }
  .tz-mainnav__links a {
    position: relative;
    display: inline-block;
    padding: 21px 0;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    transition: color .15s;
  }
  .tz-mainnav__links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 14px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s;
  }
  .tz-mainnav__links a:hover { color: #fff; }
  .tz-mainnav__links a:hover::after,
  .tz-mainnav__links a.active::after { transform: scaleX(1); }
  .tz-mainnav__links a.active { color: var(--orange); }

  .tz-mainnav__links a.tz-mainnav__links-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .tz-mainnav__links-avatar-img {
    width: 20px; height: 20px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 1.5px solid rgba(255,255,255,.35);
    flex-shrink: 0;
  }
  .tz-mainnav__links a.tz-mainnav__links-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
  .tz-mainnav__links a.tz-mainnav__links-icon:hover .tz-mainnav__links-avatar-img,
  .tz-mainnav__links a.tz-mainnav__links-icon.active .tz-mainnav__links-avatar-img {
    border-color: var(--orange);
  }
  .tz-mainnav__acct-item { display: none; }
  @media (max-width: 900px) {
    .tz-mainnav__acct-item { display: block; }
  }

  .tz-mainnav__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    margin-left: auto;
  }
  .tz-mainnav__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: color .15s;
  }
  .tz-mainnav__cart:hover { color: var(--orange); }
  .tz-mainnav__cart svg { width: 100%; height: 100%; }
  .tz-mainnav__cart-badge {
    position: absolute;
    top: -7px; right: -9px;
    min-width: 16px; height: 16px;
    padding: 0 3px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
  }
  .tz-mainnav__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.85);
    flex-shrink: 0;
    transition: border-color .15s;
  }
  .tz-mainnav__avatar:hover { border-color: var(--orange); }
  .tz-mainnav__avatar img { width: 100%; height: 100%; object-fit: cover; }
  .tz-mainnav__avatar svg { width: 18px; height: 18px; }

  .tz-mainnav__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 60px;
    padding: 0 30px 0 26px;
    margin-right: -24px;
    background: linear-gradient(135deg, #ff9a2e 0%, var(--orange) 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    color: #1a1200;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: filter .15s;
  }
  .tz-mainnav__cta:hover { filter: brightness(1.06); }

  /* ── Desktop-only: Categories trigger + search bar ─────────── */
  .tz-mainnav__cats {
    display: none; /* enabled at the desktop breakpoint below */
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background .15s, border-color .15s;
  }
  .tz-mainnav__cats:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.24); }
  .tz-mainnav__cats-icon { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
  .tz-mainnav__cats-chev { width: 12px; height: 12px; opacity: .6; flex-shrink: 0; }

  .tz-mainnav__search {
    display: none; /* enabled at the desktop breakpoint below */
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 460px;
  }
  .tz-mainnav__search-input {
    width: 100%;
    height: 40px;
    padding: 0 44px 0 16px;
    border-radius: 999px;
    border: none;
    background: #fff;
    color: var(--gray-900, #1a1a1a);
    font-size: 0.85rem;
    outline: none;
  }
  .tz-mainnav__search-input::placeholder { color: var(--gray-400, #9ca3af); }
  .tz-mainnav__search-btn {
    position: absolute;
    top: 50%; right: 4px;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: #1a1200;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  .tz-mainnav__search-btn svg { width: 16px; height: 16px; }

  /* Only show categories + search once the bar has room for
     everything (links, categories, search, cart, avatar, CTA)
     without crowding. Below this, mobile bottom-nav already
     offers both categories and search. */
  @media (min-width: 1120px) {
    .tz-mainnav__cats,
    .tz-mainnav__search { display: flex; }
  }

  .tz-mainnav__burger {
    display: none;
    width: 22px; height: 16px;
    position: relative;
    background: none; border: none;
    cursor: pointer;
  }

  /* Fallback styling for the JS-injected mobile WhatsApp icon
     (mobile-nav.js appends a .tz-nav-icon-btn into .tz-navbar__icons) */
  .tz-navbar__icons .tz-nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
  }
  .tz-navbar__icons .tz-nav-icon-btn svg { width: 100%; height: 100%; }
  .tz-navbar__icons .tz-nav-icon-btn .tz-nav-icon-main,
  .tz-navbar__icons .tz-wa-header-btn__label { display: none; }

  @media (max-width: 900px) {
    /* Nav links stay visible on mobile as a compact row under the
       icons/CTA row. With only Products/Services/Reviews/Account left,
       they're spread evenly across the full width as plain bold text,
       instead of needing horizontal scroll. */
    .tz-mainnav { flex-wrap: wrap; height: auto; min-height: 54px; padding: 6px 0; row-gap: 6px; }
    .tz-mainnav__links {
      order: 3;
      width: 100%;
      gap: 4px;
      justify-content: space-between;
      overflow-x: visible;
      padding: 2px 4px 4px;
    }
    .tz-mainnav__links a {
      display: block;
      padding: 6px 2px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: .01em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .tz-mainnav__links a.active { color: var(--orange); }
    .tz-mainnav__links a::after { bottom: -1px; }
    .tz-mainnav__links li:first-child { display: none; }
    .tz-mainnav__cta { display: none; }
    .tz-mainnav__cart { display: none; }
    .tz-mainnav__avatar { display: none; }

    .tz-mainnav__links a.tz-mainnav__links-icon {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .tz-mainnav__links-avatar-img { width: 16px; height: 16px; }
    .tz-mainnav__links a.tz-mainnav__links-icon svg { width: 15px; height: 15px; }
  }
  @media (max-width: 480px) {
    .tz-mainnav__links { gap: 2px; }
    .tz-mainnav__links a { font-size: 0.7rem; }
    .tz-mainnav__links-avatar-img { width: 15px; height: 15px; }
    .tz-mainnav__links a.tz-mainnav__links-icon svg { width: 14px; height: 14px; }
  }
  @media (max-width: 360px) {
    .tz-mainnav__links a { font-size: 0.64rem; }
    .tz-mainnav__links a.tz-mainnav__links-icon { gap: 3px; }
    .tz-mainnav__links-avatar-img { width: 13px; height: 13px; }
    .tz-mainnav__links a.tz-mainnav__links-icon svg { width: 12px; height: 12px; }
  }
  /* ── 5. CATEGORIES SIDEBAR DRAWER — Premium ─────────────── */

  /* Overlay backdrop */
  .tz-cats-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9050;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: opacity .3s ease;
    opacity: 0;
  }
  .tz-cats-overlay.open {
    display: block;
    opacity: 1;
  }

  /* Sidebar drawer — slides in from left */
  .tz-cats-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9100;
    background: var(--white);
    width: 300px;
    max-width: 88vw;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 32px rgba(0,0,0,.22);
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    overflow: hidden;
  }
  .tz-cats-drawer.open {
    transform: translateX(0);
  }

  /* Drawer header */
  .tz-cats-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 56px;
    background: #1f2937;
    flex-shrink: 0;
  }
  .tz-cats-drawer__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .02em;
  }
  .tz-cats-drawer__title svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    opacity: .85;
  }
  .tz-cats-drawer__close {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.1);
    border: none; cursor: pointer;
    transition: background .15s, color .15s;
    flex-shrink: 0;
  }
  .tz-cats-drawer__close:hover { background: rgba(255,255,255,.22); color: #fff; }
  .tz-cats-drawer__close svg { width: 18px; height: 18px; }

  /* All products link */
  .tz-cats-drawer__all-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--orange-light, #fff4e8);
    border-bottom: 1px solid rgba(246,139,30,.2);
    text-decoration: none;
    color: var(--orange, #ff7a00);
    font-size: 0.88rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .15s;
  }
  .tz-cats-drawer__all-link:hover { background: #ffe0b2; }
  .tz-cats-drawer__all-link svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* Scrollable category list */
  .tz-cats-drawer__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
    padding: 8px 0 24px;
  }
  .tz-cats-drawer__body::-webkit-scrollbar { width: 4px; }
  .tz-cats-drawer__body::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }

  /* Section label */
  .tz-cats-drawer__section-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray-400);
    padding: 12px 16px 6px;
  }

  /* Category row item */
  .tz-cats-drawer__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--gray-800);
    transition: background .13s, transform .13s;
    position: relative;
    border-radius: 0;
  }
  .tz-cats-drawer__item:hover {
    background: var(--gray-50);
  }
  .tz-cats-drawer__item:active {
    background: var(--orange-light, #fff4e8);
    transform: scale(0.98);
  }
  /* Active category highlight */
  .tz-cats-drawer__item.is-active {
    background: var(--orange-light, #fff4e8);
  }
  .tz-cats-drawer__item.is-active .tz-cats-drawer__name {
    color: var(--orange, #ff7a00);
    font-weight: 700;
  }
  .tz-cats-drawer__item.is-active::after {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 3px;
    border-radius: 0 2px 2px 0;
    background: var(--orange, #ff7a00);
  }

  /* Category image thumb */
  .tz-cats-drawer__img {
    width: 48px; height: 48px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    display: block;
  }
  .tz-cats-drawer__img-placeholder {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange-light,#fff4e8) 0%, var(--gray-100) 100%);
    border: 1.5px solid var(--gray-200);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--orange, #ff7a00);
  }

  /* Category text */
  .tz-cats-drawer__name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.3;
    flex: 1;
    min-width: 0;
  }
  .tz-cats-drawer__arrow {
    color: var(--gray-300);
    flex-shrink: 0;
    width: 16px; height: 16px;
    transition: color .13s, transform .13s;
  }
  .tz-cats-drawer__item:hover .tz-cats-drawer__arrow {
    color: var(--orange, #ff7a00);
    transform: translateX(3px);
  }

  /* Footer inside drawer */
  .tz-cats-drawer__footer {
    flex-shrink: 0;
    padding: 12px 16px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
    background: var(--gray-50);
  }

  /* Desktop: wider drawer */
  @media (min-width: 768px) {
    .tz-cats-drawer { width: 320px; }
  }

  /* ── 6. LIVE SEARCH DROPDOWN ─────────────────────────────── */
  .tz-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 850;
    display: none;
    max-height: 320px;
    overflow-y: auto;
  }
  .tz-search-dropdown.open { display: block; }
  .tz-search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    transition: background .1s;
    text-decoration: none;
    color: inherit;
  }
  .tz-search-result-item:hover { background: var(--gray-50); }
  .tz-search-result-img {
    width: 40px; height: 40px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }
  .tz-search-result-placeholder {
    width: 40px; height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  .tz-search-result-name { font-size: 0.85rem; font-weight: 500; color: var(--gray-900); }
  .tz-search-result-price { font-size: 0.8rem; color: var(--orange); font-weight: 600; }
  .tz-search-no-results { padding: 16px; text-align: center; color: var(--gray-500); font-size: 0.85rem; }

  /* ── 7. FLASH MESSAGES ────────────────────────────────────── */
  .alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .alert-success { background: #fff4e8; color: #cc5a00; border: 1px solid #ffb366; }
  .alert-danger  { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
  .alert-info    { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }
  .alert-warning { background: #fff8e1; color: #e65100; border: 1px solid #ffe082; }

  /* ── 8. PAGE HEADER (breadcrumb bar) ─────────────────────── */
  .page-header {
    background: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0;
  }
  .page-header h1 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--gray-600);
  }
  .breadcrumb a { color: var(--green-600); }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb span { color: var(--gray-400); }

  /* ── 9. SECTION SPACING ───────────────────────────────────── */
  .section-sm { padding: 20px 0 40px; }
  .section-md { padding: 32px 0 56px; }

  /* ── 10. PRODUCT CARDS ────────────────────────────────────── */
  .product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .product-card__img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
  }
  .product-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
  }
  .product-card:hover .product-card__img { transform: scale(1.04); }
  .product-card__discount {
    position: absolute;
    top: 8px; left: 8px;
    background: var(--red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
  }
  .product-card__body { padding: 10px; flex: 1; display: flex; flex-direction: column; }
  .product-card__name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
  }
  .product-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
  }
  .product-card__old-price {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-bottom: 8px;
  }
  .product-card__add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    width: 100%;
    margin-top: auto;
    text-decoration: none;
  }
  .product-card__add-btn:hover { background: var(--orange-dark); color: #fff; }

  /* Product grid — responsive column count matching the compact j-product-card */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  @media (min-width: 480px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
  @media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
  @media (min-width: 900px)  { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
  @media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; } }

  /* ── 11. BUTTONS ──────────────────────────────────────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
  }
  .btn-green  { background: var(--green-600); color: #fff; }
  .btn-green:hover  { background: var(--green-700); color: #fff; }
  .btn-orange { background: var(--orange); color: #fff; }
  .btn-orange:hover { background: var(--orange-dark); color: #fff; }
  .btn-outline-green { background: transparent; color: var(--green-600); border-color: var(--green-600); }
  .btn-outline-green:hover { background: var(--green-50); }
  .btn-danger { background: #e53935; color: #fff; }
  .btn-danger:hover { background: #c62828; color: #fff; }
  .btn-sm { padding: 6px 12px; font-size: 0.78rem; }
  .btn-lg { padding: 13px 24px; font-size: 1rem; }

  /* ── 12. FORM ELEMENTS ────────────────────────────────────── */
  .form-group { margin-bottom: 16px; }
  .form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
  }
  .form-control {
    display: block;
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--white);
    outline: none;
    transition: border-color .15s;
    appearance: auto;
  }
  .form-control:focus { border-color: var(--green-600); }
  textarea.form-control { resize: vertical; min-height: 90px; }

  /* ── 13. CARDS ────────────────────────────────────────────── */
  .card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }
  .card-body { padding: 20px; }
  .card-title { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }

  /* ── 14. TEXT UTILITIES ───────────────────────────────────── */
  .text-muted   { color: var(--gray-500); }
  .text-center  { text-align: center; }
  .text-sm      { font-size: 0.82rem; }
  .fw-bold      { font-weight: 700; }
  .mt-1 { margin-top: 4px; }
  .mt-2 { margin-top: 8px; }
  .mt-3 { margin-top: 16px; }
  .mt-4 { margin-top: 24px; }
  .mb-1 { margin-bottom: 4px; }
  .mb-2 { margin-bottom: 8px; }
  .mb-3 { margin-bottom: 16px; }
  .mb-4 { margin-bottom: 24px; }

  /* ── 15. HERO / BANNER ────────────────────────────────────── */
  .hero-banner {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/5;
    background: var(--gray-200);
  }
  .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 600px) { .hero-banner { aspect-ratio: 16/7; } }

  /* ── 16. SECTION HEADER ────────────────────────────────────── */
  .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 12px;
  }
  .section-title h2 { font-size: 1.1rem; font-weight: 700; }
  .section-title a  { font-size: 0.82rem; color: var(--orange); font-weight: 600; }
  .section-title a:hover { text-decoration: underline; }

  /* ── 16b. ORDERS TABLE ────────────────────────────────────── */
  .table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    background: var(--white);
  }
  .table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 520px;
  }
  .table-wrap thead {
    background: var(--gray-50, #f8f9fa);
  }
  .table-wrap thead th {
    padding: 12px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
    white-space: nowrap;
  }
  .table-wrap tbody tr {
    border-bottom: 1px solid var(--gray-100, #f1f3f4);
    transition: background 0.15s;
  }
  .table-wrap tbody tr:last-child { border-bottom: none; }
  .table-wrap tbody tr:hover { background: var(--gray-50, #f8f9fa); }
  .table-wrap tbody td {
    padding: 13px 14px;
    color: var(--gray-800);
    vertical-align: middle;
  }

  /* Status badges used by orders.php */
  .status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: .03em;
    white-space: nowrap;
  }
  .status-pending          { background: #fff4e8; color: #e65100; }
  .status-awaitingpayment  { background: #fff8e1; color: #f57f17; }
  .status-processing       { background: #e3f2fd; color: #1565c0; }
  .status-shipped          { background: #e8eaf6; color: #3949ab; }
  .status-delivered        { background: #fff4e8; color: #cc5a00; }
  .status-cancelled        { background: #ffebee; color: #c62828; }
  .status-refunded         { background: #f3e5f5; color: #6a1b9a; }

  /* Empty state */
  .cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
  }
  .cart-empty svg {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    display: block;
    stroke: var(--gray-300);
  }
  .cart-empty h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 6px;
  }
  .cart-empty p { font-size: 0.9rem; margin-bottom: 20px; }

  /* Mobile: stack table as cards */
  @media (max-width: 600px) {
    .table-wrap { box-shadow: none; background: transparent; border-radius: 0; }
    .table-wrap table { display: block; min-width: unset; }
    .table-wrap thead { display: none; }
    .table-wrap tbody { display: block; }
    .table-wrap tbody tr {
      display: block;
      background: var(--white);
      border-radius: 10px;
      box-shadow: 0 1px 4px rgba(0,0,0,.08);
      margin-bottom: 12px;
      padding: 12px 14px;
      border-bottom: none;
    }
    .table-wrap tbody td {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 0;
      border-bottom: 1px solid var(--gray-100, #f1f3f4);
      font-size: 0.85rem;
    }
    .table-wrap tbody td:last-child { border-bottom: none; padding-bottom: 0; }
    .table-wrap tbody td::before {
      content: attr(data-label);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: var(--gray-500);
      flex-shrink: 0;
      margin-right: 8px;
    }
    .table-wrap tbody td .btn { width: 100%; text-align: center; margin-top: 4px; }
  }

  /* ── 17. BADGES / CHIPS ───────────────────────────────────── */
  .badge-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .badge-pending    { background: #fff4e8; color: #e65100; }
  .badge-processing { background: #e3f2fd; color: #1565c0; }
  .badge-shipped    { background: #e8eaf6; color: #3949ab; }
  .badge-delivered  { background: #fff4e8; color: #cc5a00; }
  .badge-cancelled  { background: #ffebee; color: #c62828; }

  /* ── 18. BOTTOM NAVIGATION (mobile only) ─────────────────── */
  .tz-bottom-nav {
    display: none;
  }
  @media (max-width: 767px) {
    .tz-bottom-nav {
      display: flex;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      height: var(--bottom-nav-h);
      background: var(--white);
      border-top: 1px solid var(--gray-200);
      box-shadow: 0 -2px 10px rgba(0,0,0,.08);
      z-index: 9000;
      padding-bottom: env(safe-area-inset-bottom, 0);
    }
    body { padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px)); }
  }
  .tz-bnav-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--gray-500);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: .2px;
    text-decoration: none;
    padding: 4px 2px;
    position: relative;
    transition: color .15s;
  }
  .tz-bnav-tab svg { width: 22px; height: 22px; }
  .tz-bnav-tab--active,
  .tz-bnav-tab:hover { color: var(--orange); }
  .tz-bnav-tab--active svg path,
  .tz-bnav-tab--active svg rect,
  .tz-bnav-tab--active svg circle,
  .tz-bnav-tab--active svg line,
  .tz-bnav-tab--active svg polyline { stroke: var(--orange); }

  /* Search tab in mobile bottom nav */
  .tz-bnav-tab--search { color: var(--gray-500); }
  .tz-bnav-tab--search.active { color: var(--orange); }

  /* Mobile search overlay — mirrors the desktop pill + orange
     circular submit button (.tz-mainnav__search / -input / -btn)
     so the "opened" mobile search looks like the desktop bar. */
  .tz-mob-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.45);
    align-items: flex-start;
    justify-content: center;
    padding: 68px 16px 0;
  }
  .tz-mob-search-overlay.open { display: flex; }
  .tz-mob-search-box {
    position: relative;
    width: 100%;
    max-width: 480px;
  }
  .tz-mob-search-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tz-mob-search-close svg { width: 16px; height: 16px; }

  /* Pill — same look as the desktop search bar */
  .tz-mob-search-pill {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 44px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
  }
  .tz-mob-search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 48px 0 18px;
    border: none;
    outline: none;
    border-radius: 999px;
    background: transparent;
    font-size: 0.95rem;
    color: var(--gray-900, #1a1a1a);
  }
  .tz-mob-search-input::placeholder { color: var(--gray-400, #9ca3af); }
  .tz-mob-search-btn {
    position: absolute;
    top: 50%; right: 4px;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: #1a1200;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  .tz-mob-search-btn svg { width: 17px; height: 17px; }

  .tz-mob-search-results {
    margin-top: 10px;
    max-height: 55vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
  }
  .tz-mob-search-results:empty { display: none; margin-top: 0; box-shadow: none; }
  .tz-mob-search-results .tz-search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
    transition: background .12s;
  }
  .tz-mob-search-results .tz-search-result-item:last-child { border-bottom: none; }
  .tz-mob-search-results .tz-search-result-item:hover { background: var(--gray-50); }
  .tz-mob-search-results .tz-search-result-img { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
  .tz-mob-search-results .tz-search-result-placeholder { width: 44px; height: 44px; background: var(--gray-100); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
  .tz-mob-search-results .tz-search-result-name { font-size: 0.88rem; font-weight: 500; }
  .tz-mob-search-results .tz-search-result-price { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-top: 2px; }
  .tz-mob-search-no-results { padding: 24px 14px; text-align: center; color: var(--gray-500); font-size: 0.88rem; }
  .tz-bnav-badge {
    position: absolute;
    top: 4px; right: calc(50% - 18px);
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    width: 16px; height: 16px;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--white);
  }

  /* ── 19. FOOTER ───────────────────────────────────────────── */
  .tz-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,.8);
    margin-top: 48px;
  }
  .tz-footer__main { padding: 40px 0 28px; }
  .tz-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
  }
  .tz-footer__brand { max-width: 240px; }
  .tz-footer__logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }
  .tz-footer__logo .tz-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,122,0,.15);
  }
  .tz-footer__logo .tz-logo-img { width: 100%; height: 100%; object-fit: cover; }
  .tz-footer__logo .tz-logo-icon svg { width: 18px; height: 18px; }
  .tz-footer__tagline { font-size: 0.78rem; color: rgba(255,255,255,.5); line-height: 1.6; }
  .tz-footer__heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.4);
    margin-bottom: 12px;
  }
  /* FIX: footer links were showing as bullets — explicit reset */
  .tz-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .tz-footer__links li { list-style: none; }
  .tz-footer__links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .15s;
    display: block;
  }
  .tz-footer__links a:hover { color: #fff; }
  .tz-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 10px;
  }
  .tz-footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
  .tz-footer__contact-item a { color: rgba(255,255,255,.65); text-decoration: none; }
  .tz-footer__contact-item a:hover { color: #fff; }
  .tz-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }
  .tz-footer__copy { font-size: 0.78rem; color: rgba(255,255,255,.4); }
  .tz-footer__made { font-size: 0.75rem; color: rgba(255,255,255,.3); }

  /* ── 20. RESPONSIVE HIDE/SHOW ─────────────────────────────── */
  .show-mobile-only { display: none !important; }
  @media (max-width: 600px) {
    .hide-mobile { display: none !important; }
    .show-mobile-only { display: flex !important; }
  }
  @media (min-width: 601px) {
    .hide-desktop { display: none !important; }
  }

  /* ── 21. LOADING SPINNER ──────────────────────────────────── */
  @keyframes spin { to { transform: rotate(360deg); } }
  .spinner {
    width: 20px; height: 20px;
    border: 2px solid var(--gray-300);
    border-top-color: var(--green-600);
    border-radius: 50%;
    animation: spin .6s linear infinite;
    display: inline-block;
  }

  /* ── 22. HORIZONTAL SCROLL CAROUSEL ──────────────────────── */
  .product-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-scroll::-webkit-scrollbar { display: none; }
  .product-scroll .product-card {
    flex: 0 0 160px;
    scroll-snap-align: start;
  }
  @media (min-width: 480px) { .product-scroll .product-card { flex: 0 0 185px; } }
  @media (min-width: 768px) { .product-scroll .product-card { flex: 0 0 210px; } }

  /* ── 23. FLASH SALE BAR ───────────────────────────────────── */
  .flash-sale-bar {
    background: var(--red);
    color: #fff;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
  }
  .flash-sale-bar__label {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .flash-countdown {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 0.8rem;
  }
  .flash-countdown__block {
    background: rgba(0,0,0,.3);
    border-radius: 3px;
    padding: 2px 6px;
    font-weight: 700;
    font-size: 0.82rem;
    font-variant-numeric: tabular-nums;
  }
  .flash-countdown__sep { opacity: .7; }

  /* ── 24. PRODUCT CARD (j-product-card) — inline fallback ─── */
  :root {
    --j-orange:       #ff7a00;
    --j-orange-dark:  #e56700;
    --j-red:          #e02020;
    --j-green:        #16a34a;
    --j-gray-50:      #fafafa;
    --j-gray-200:     #eeeeee;
    --j-gray-400:     #bdbdbd;
    --j-gray-800:     #424242;
    --j-gray-900:     #212121;
    --j-radius:       6px;
    --j-shadow-sm:    0 1px 4px rgba(0,0,0,.10);
    --j-shadow-md:    0 4px 16px rgba(0,0,0,.12);
  }
  .j-product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .18s, transform .18s;
    position: relative;
  }
  .j-product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.14); transform: translateY(-3px); }
  .j-product-card__img-wrap { position: relative; aspect-ratio: 1/1; background: #fafafa; overflow: hidden; }
  .j-product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
  .j-product-card:hover .j-product-card__img-wrap img { transform: scale(1.04); }
  .j-new-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--j-orange); color: #fff;
    font-size: .68rem; font-weight: 800;
    padding: 6px 12px; border-radius: 20px;
    display: flex; align-items: center; gap: 4px;
    text-transform: uppercase; letter-spacing: .4px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15); z-index: 2;
  }
  .j-new-badge svg { width: 11px; height: 11px; }
  .j-discount-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--j-red); color: #fff;
    font-size: .72rem; font-weight: 800;
    padding: 6px 10px; border-radius: 8px;
    line-height: 1.3; letter-spacing: .3px; z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
  }
  .j-product-card__body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; gap: 4px; }
  .j-product-card__category {
    font-size: .72rem; font-weight: 800; color: var(--j-orange);
    text-transform: uppercase; letter-spacing: .5px;
  }
  .j-product-card__name {
    font-size: 1rem; font-weight: 700; color: #1a1a1a; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; text-decoration: none;
  }
  .j-product-card__name:hover { color: var(--j-orange); }
  .j-product-card__price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
  .j-product-card__price { font-size: 1.25rem; font-weight: 800; color: #1a1a1a; }
  .j-product-card__old-price { font-size: .82rem; color: #9e9e9e; text-decoration: line-through; }
  .j-product-card__save { font-size: .8rem; font-weight: 700; color: var(--j-green); }
  .j-product-card__cart-form { display: flex; margin-top: auto; padding-top: 8px; }
  .j-btn-cart-full {
    width: 100%; background: var(--j-orange); color: #fff; border: none;
    border-radius: 10px; height: 42px;
    font-size: .86rem; font-weight: 800; font-family: inherit;
    cursor: pointer; transition: background .15s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none; text-align: center;
  }
  .j-btn-cart-full:hover { background: var(--j-orange-dark); color: #fff; }
  .j-btn-cart-full--oos { background: #eeeeee; color: #bdbdbd; cursor: not-allowed; }

  /* ── 24b. FLASH SALE BAR (j-flash-bar) ────────────────────── */
  .j-flash-bar {
    background: #e02020;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
  .j-flash-bar__label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .j-flash-bar__timer {
    display: flex;
    align-items: center;
    gap: 4px;
    font-variant-numeric: tabular-nums;
  }
  .j-flash-bar__timer-label { opacity: .8; margin-right: 2px; }
  .j-flash-bar__digits {
    background: rgba(0,0,0,.3);
    border-radius: 3px;
    padding: 2px 6px;
    font-weight: 700;
    font-size: 0.88rem;
    min-width: 26px;
    text-align: center;
  }
  .j-flash-bar__see-all {
    margin-left: auto;
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: underline;
    white-space: nowrap;
  }

  /* ── 25. STATIC HERO ──────────────────────────────────────── */
  .tz-static-hero {
    background: linear-gradient(135deg, #1f2937 0%, #ff7a00 55%, #e56700 100%);
    position: relative;
    padding: 64px 0 52px;
    overflow: hidden;
  }
  .tz-static-hero__bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(246,139,30,.15) 0%, transparent 60%);
    pointer-events: none;
  }
  .tz-static-hero__content { position: relative; z-index: 1; }
  .tz-static-hero__text { max-width: 640px; }
  .tz-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: 14px;
  }
  .tz-static-hero__text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .tz-static-hero__text h1 em {
    font-style: normal;
    color: var(--gold-300);
  }
  .tz-static-hero__text p {
    color: rgba(255,255,255,.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .tz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
  }
  .tz-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    color: rgba(255,255,255,.75);
    font-size: 0.82rem;
  }
  .tz-hero-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* ── 26. TZ BUTTONS ───────────────────────────────────────── */
  .tz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s, opacity .15s;
    white-space: nowrap;
    line-height: 1;
  }
  .tz-btn-lg  { padding: 12px 26px; font-size: 0.95rem; }
  .tz-btn-xl  { padding: 14px 32px; font-size: 1rem; }
  .tz-btn-gold { background: var(--gold-300); color: #222; border-color: var(--gold-300); }
  .tz-btn-gold:hover { background: #c9a227; border-color: #c9a227; color: #222; }
  .tz-btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
  .tz-btn-outline-white:hover { background: rgba(255,255,255,.1); color: #fff; }
  .tz-btn-ghost-white { background: rgba(255,255,255,.12); color: #fff; border-color: transparent; }
  .tz-btn-ghost-white:hover { background: rgba(255,255,255,.2); color: #fff; }
  .tz-btn-green { background: var(--green-600); color: #fff; border-color: var(--green-600); }
  .tz-btn-green:hover { background: var(--green-700); color: #fff; }

  /* ── 27. TRUST RIBBON ─────────────────────────────────────── */
  .tz-trust-ribbon {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 18px 0;
  }
  .tz-trust-ribbon__grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .tz-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 160px;
  }
  .tz-trust-icon {
    color: var(--green-600);
    flex-shrink: 0;
  }
  .tz-trust-info { display: flex; flex-direction: column; gap: 2px; }
  .tz-trust-info strong { font-size: 0.85rem; font-weight: 700; color: var(--gray-900); display: block; }
  .tz-trust-info span   { font-size: 0.75rem; color: var(--gray-500); display: block; }

  /* ── 28. SECTION LAYOUT ───────────────────────────────────── */
  .tz-section { padding: 48px 0; }
  .tz-section--light { background: var(--gray-50); }
  .tz-section--tight { padding: 24px 0; }
  .tz-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
  }
  .tz-section-head__left h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
  }
  .tz-section-head__left p {
    font-size: 0.85rem;
    color: var(--gray-500);
  }
  .tz-gold-text { color: var(--orange); }
  .tz-see-all {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
  }
  .tz-see-all:hover { text-decoration: underline; }

  /* ── 29. CATEGORY SCROLL ──────────────────────────────────── */
  .tz-category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 4px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tz-category-scroll::-webkit-scrollbar { display: none; }
  .tz-category-card {
    flex: 0 0 auto;
    width: 104px;
    text-align: center;
    text-decoration: none;
    color: var(--gray-800);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    will-change: transform;
  }
  .tz-category-card:hover,
  .tz-category-card:focus-visible {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 34px rgba(0,0,0,0.14), 0 6px 12px rgba(0,0,0,0.06);
    border-color: var(--orange);
    outline: none;
  }
  .tz-category-card__img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--green-600);
    transition: background .2s ease;
    margin-bottom: 0;
    border: none;
  }
  .tz-cat-icon svg { width: 46%; height: 46%; }
  .tz-category-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease;
  }
  .tz-category-card:hover .tz-category-card__img {
    background: var(--green-50);
  }
  .tz-category-card:hover .tz-category-card__img img {
    transform: scale(1.09);
  }
  .tz-category-card__name {
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--gray-900);
    padding: 5px 5px 7px;
    line-height: 1.2;
    border-top: 1px solid var(--gray-100);
    transition: color .2s ease;
    white-space: normal;
    word-break: break-word;
  }
  .tz-category-card:hover .tz-category-card__name {
    color: var(--orange);
  }
  @media (prefers-reduced-motion: reduce) {
    .tz-category-card,
    .tz-category-card__img img { transition: none; }
  }
  @media (max-width: 767px) {
    .tz-category-scroll { gap: 16px; padding: 4px 4px 14px; }
    .tz-category-card {
      width: 128px;
      background: transparent;
      border: none;
      border-radius: 12px;
      box-shadow: none;
    }
    .tz-category-card:hover,
    .tz-category-card:focus-visible {
      transform: none;
      box-shadow: none;
      border-color: transparent;
    }
    .tz-category-card__img {
      aspect-ratio: 1 / 1;
      border-radius: 12px;
      background: var(--gray-50);
    }
    .tz-category-card:hover .tz-category-card__img { background: var(--gray-50); }
    .tz-category-card__name {
      font-size: 0.8rem;
      font-weight: 700;
      padding: 10px 2px 0;
      border-top: none;
      text-align: center;
    }
  }
  @media (max-width: 380px) {
    .tz-category-card { width: 112px; }
  }

  /* ── 30. SECTION HEADER (j-section-header) ────────────────── */
  .j-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
  }
  .j-section-header__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
  }
  .j-section-header__see-all {
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
  }
  .j-section-header__see-all:hover { text-decoration: underline; }

  /* ── 31. PRODUCT SCROLL (j-product-scroll) ────────────────── */
  .j-product-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .j-product-scroll::-webkit-scrollbar { display: none; }
  .j-product-scroll > * {
    flex: 0 0 175px;
    scroll-snap-align: start;
  }
  @media (min-width: 480px) { .j-product-scroll > * { flex: 0 0 195px; } }
  @media (min-width: 768px) { .j-product-scroll > * { flex: 0 0 220px; } }

  /* ── 32. PRODUCT GRID (j-product-grid) ───────────────────── */
  .j-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  @media (min-width: 480px)  { .j-product-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 768px)  { .j-product-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
  @media (min-width: 1024px) { .j-product-grid { grid-template-columns: repeat(5, 1fr); } }

  /* ── 33. PROMO BANNERS ────────────────────────────────────── */
  .tz-promo-banners { padding: 32px 0; }
  .tz-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  @media (max-width: 768px) {
    .tz-promo-grid { grid-template-columns: 1fr; gap: 12px; }
  }
  .tz-promo-card {
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-decoration: none;
    display: block;
    transition: transform .15s, box-shadow .15s;
    position: relative;
    overflow: hidden;
  }
  .tz-promo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .tz-promo-card--1 { background: linear-gradient(135deg, #cc5a00, #ff7a00); color: #fff; }
  .tz-promo-card--2 { background: linear-gradient(135deg, #0d47a1, #1976d2); color: #fff; }
  .tz-promo-card--3 { background: linear-gradient(135deg, #b71c1c, #e53935); color: #fff; }
  .tz-promo-card__inner { display: flex; flex-direction: column; gap: 6px; }
  .tz-promo-tag {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 20px;
    padding: 3px 10px;
    width: fit-content;
    margin-bottom: 4px;
  }
  .tz-promo-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
  }
  .tz-promo-card h3 strong { display: block; font-size: 1.5rem; }
  .tz-promo-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin-top: 8px;
  }

  /* ── 34. CTA BANNER ───────────────────────────────────────── */
  .tz-cta-banner {
    background: linear-gradient(135deg, #1f2937 0%, #cc5a00 60%, #ff7a00 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
  }
  .tz-cta-banner__bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(246,139,30,.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .tz-cta-banner__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
  }
  @media (max-width: 768px) {
    .tz-cta-banner__content { grid-template-columns: 1fr; text-align: center; }
  }
  .tz-cta-banner__text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }
  .tz-cta-banner__text h2 span { color: var(--gold-300); }
  .tz-cta-banner__text p {
    color: rgba(255,255,255,.75);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 520px;
  }
  .tz-cta-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    flex-shrink: 0;
  }
  @media (max-width: 768px) {
    .tz-cta-banner__actions { align-items: center; width: 100%; }
    .tz-cta-banner__actions .tz-btn { width: 100%; max-width: 320px; }
  }

  /* ── 35. HERO AD SECTION ──────────────────────────────────── */
  .tz-hero-ad-section {
    position: relative;
    background: #1f2937;
  }
  .tz-hero-inner { width: 100%; }
  .tz-hero-cta-strip {
    background: rgba(0,0,0,.35);
    padding: 14px 0;
  }
  .tz-hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .tz-hero-cta-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.9rem;
  }
  .tz-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--orange);
    color: #fff;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
  }
  .tz-hero-cta-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* ── 36. SPONSORED LABEL ──────────────────────────────────── */
  .tz-sponsored-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
  }

  /* ── 37. ADVERT CAROUSEL ──────────────────────────────────── */
  .tz-ad-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--gray-200);
    aspect-ratio: 16/5;
  }
  .tz-ad-carousel img, .tz-ad-carousel a {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (max-width: 600px) { .tz-ad-carousel { aspect-ratio: 16/7; } }

  /* ── 37b. ADVERT CAROUSEL (actual markup from renderAdvertCarousel()) ── */
  .ad-single-wrap,
  .ad-carousel-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--gray-200);
    aspect-ratio: 16/5;
  }
  .ad-single-wrap img, .ad-single-wrap a,
  .ad-carousel-track { display: block; width: 100%; height: 100%; }
  .ad-single-wrap img { object-fit: cover; }

  .ad-label {
    position: absolute; top: 10px; left: 10px; z-index: 5;
    background: rgba(15,23,42,.68); color: #fff;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    padding: 3px 9px; border-radius: 5px; backdrop-filter: blur(4px);
  }

  .ad-carousel-track { position: relative; }
  .ad-carousel-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
  }
  .ad-carousel-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
  .ad-carousel-slide a, .ad-carousel-slide img { display: block; width: 100%; height: 100%; }
  .ad-carousel-slide img { object-fit: cover; }

  .ad-carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.92); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-800); box-shadow: var(--shadow-sm);
    z-index: 4; opacity: 0;
    transition: background .15s, opacity .15s;
  }
  .ad-carousel-wrap:hover .ad-carousel-arrow { opacity: 1; }
  .ad-carousel-arrow:hover { background: #fff; }
  .ad-carousel-arrow--prev { left: 12px; }
  .ad-carousel-arrow--next { right: 12px; }
  .ad-carousel-arrow svg { width: 15px; height: 15px; }

  .ad-carousel-dots {
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 4;
  }
  .ad-carousel-dot {
    width: 7px; height: 7px; border-radius: 999px; border: none; padding: 0;
    background: rgba(255,255,255,.6); cursor: pointer;
    transition: width .2s, background .2s;
  }
  .ad-carousel-dot.is-active { width: 20px; background: #fff; }

  .ad-progress {
    position: absolute; left: 0; bottom: 0; height: 3px;
    background: var(--orange); z-index: 4; width: 0%;
  }

  @media (max-width: 600px) {
    .ad-single-wrap, .ad-carousel-wrap { aspect-ratio: 16/9; border-radius: var(--radius-sm); }
    .ad-carousel-arrow { opacity: 1; width: 30px; height: 30px; }
    .ad-carousel-arrow--prev { left: 8px; }
    .ad-carousel-arrow--next { right: 8px; }
  }