/* ============================================
   product-vape.css
   Extracted from product-vape.html
   Paste into Flatsome > Theme Options > Custom CSS
   (or into the per-page Custom CSS panel)
   ============================================ */

:root { --promo-h: 48px; }
  @media (max-width: 480px) { :root { --promo-h: 44px; } }
  /* ============================================
     SHARED STYLES — header, footer, promo bar
     ============================================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fcfaf4; color: #1a1a1a; line-height: 1.5;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  .promo-bar {
    background: #1a1a1a;
    color: #ff6b35;
    padding: 12px 0;
    font-size: 14px; font-weight: 600;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 9999;
  }
  .promo-track {
    display: flex; gap: 48px;
    animation: scroll 24s linear infinite;
    white-space: nowrap; width: max-content;
  }
  .promo-track span { display: inline-flex; align-items: center; gap: 12px; }
  /* Wholesale link inside the scrolling marquee — match span layout */
  .promo-track a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
  }
  .promo-track a > .promo-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  /* Canonical wholesale link in promo bar — styled as orange pill */
  .promo-track .promo-wholesale {
    background: #ff6b35;
    color: #1a1a1a;
  }


  .promo-track .promo-highlight {
    background: #ff6b35; color: #1a1a1a;
    padding: 4px 14px; border-radius: 980px;
    font-weight: 800; letter-spacing: 0.02em;
  }
  .promo-track .promo-highlight iconify-icon { color: #1a1a1a; }
  .promo-track iconify-icon { color: #1f5d3f; }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  header {
    position: sticky;
    top: var(--promo-h, 48px);
    z-index: 9998;
    background: #fcfaf4;
    border-bottom: 3px solid #1a1a1a;
  }
  .nav-inner {
    max-width: 1400px; margin: 0 auto;
    padding: 16px 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    display: inline-flex; align-items: center;
    background: #1f5d3f; color: #fcfaf4;
    padding: 8px 22px;
    clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
    line-height: 1; transition: background 0.2s;
  }
  .logo:hover { background: #ff6b35; }
  .logo-stack {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; line-height: 1;
  }
  .logo-tag {
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.18em; opacity: 0.85; margin: 1px 0;
  }
  .logo-name {
    font-size: 19px; font-weight: 900;
    font-style: italic; letter-spacing: -0.01em; margin: 1px 0;
  }
  .nav-links {
    display: flex; gap: 14px; list-style: none;
  }
  .nav-links a {
    font-size: 14px; font-weight: 700;
    color: #1a1a1a;
    padding: 6px 10px;
    border-radius: 980px;
    transition: background 0.2s;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 4px;
    min-width: 100px;
    text-align: center;
    box-sizing: border-box;
  }
  /* Narrower laptops: drop min-width so 6 items fit comfortably with sidebar icons */
  @media (max-width: 1200px) {
    .nav-links { gap: 8px; }
    .nav-links a { min-width: 0; padding: 6px 10px; }
  }
  .nav-links a:hover, .nav-links a.active { background: #ff6b35; }
  .nav-icons { display: flex; gap: 14px; align-items: center; }
  .nav-icons iconify-icon { font-size: 22px; color: #1a1a1a; cursor: pointer; }
  .cart-btn {
    position: relative;
    background: #1a1a1a; color: #fcfaf4;
    padding: 10px 16px; border-radius: 980px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    transition: background 0.2s;
  }
  .cart-btn:hover { background: #ff6b35; }
  .cart-btn iconify-icon { color: #fcfaf4; font-size: 18px; }
  .cart-count {
    background: #ff6b35; color: #1a1a1a;
    font-size: 11px; font-weight: 700;
    min-width: 22px; height: 22px; border-radius: 11px; padding: 0 6px;
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* ============================================
     PRODUCT DETAIL PAGE
     ============================================ */

  /* Breadcrumb strip */
  .product-breadcrumb {
    max-width: 1200px; margin: 0 auto;
    padding: 10px 32px 0;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600;
    color: #6b6b6b;
    text-transform: uppercase; letter-spacing: 0.05em;
  }
  .product-breadcrumb a:hover { color: #ff6b35; }
  .product-breadcrumb iconify-icon { font-size: 10px; }

  /* Main product layout: gallery (left) + buy box (right) */
  .product-main {
    max-width: 1200px; margin: 0 auto;
    padding: 32px 32px 64px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }

  /* ============== GALLERY (LEFT) ============== */
  .gallery {
    position: sticky; top: 100px; align-self: start;
  }
  .gallery-main {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 14px;
  }
  .gallery-main-image {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.4s;
  }
  .gallery-main:hover .gallery-main-image { transform: scale(1.04); }
  /* Floating badges on gallery */
  .gallery-badges {
    position: absolute; top: 16px; left: 16px;
    display: flex; flex-direction: column; gap: 8px;
    z-index: 2;
  }
  .gallery-badge {
    padding: 6px 14px;
    background: #1a1a1a; color: #ff6b35;
    border-radius: 980px;
    font-size: 12px; font-weight: 800;
    transform: rotate(-2deg);
    box-shadow: 3px 3px 0 #fcfaf4;
  }
  .gallery-badge.sale {
    background: #ff6b35; color: #1a1a1a;
    transform: rotate(1deg);
  }
  /* Strain chip on gallery */
  .gallery-strain {
    position: absolute; top: 16px; right: 16px;
    padding: 6px 14px;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(4px);
    border: 2px solid #1a1a1a;
    border-radius: 980px;
    font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    z-index: 2;
  }
  /* Gallery nav arrows */
  .gallery-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.85);
    color: #fcfaf4;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    transition: background 0.2s;
  }
  .gallery-nav:hover { background: #ff6b35; color: #1a1a1a; }
  .gallery-nav.prev { left: 16px; }
  .gallery-nav.next { right: 16px; }

  /* Thumbnail strip */
  .gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .gallery-thumb {
    aspect-ratio: 1 / 1;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover; background-position: center;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.6;
  }
  .gallery-thumb:hover { opacity: 1; transform: translateY(-2px); }
  .gallery-thumb.active {
    opacity: 1;
    border-color: #ff6b35;
    border-width: 3px;
  }

  /* ============== BUY BOX (RIGHT) ============== */
  .buy-box { }
  .product-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    background: #1a1a1a; color: #ff6b35;
    border-radius: 980px;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 16px;
    transform: rotate(-1deg);
  }
  .product-title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900; letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 14px;
  }
  .product-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
  }
  /* Rating row */
  .product-rating-row {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 24px;
    border-bottom: 2px dashed #e0d8c8;
  }
  .stars-large {
    color: #ff6b35;
    font-size: 18px;
    letter-spacing: 2px;
  }
  .rating-number {
    font-size: 16px; font-weight: 800;
  }
  .rating-count {
    font-size: 14px;
    color: #6b6b6b;
  }
  .rating-count a { color: #ff6b35; text-decoration: underline; }

  /* Stats grid */
  .product-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 16px;
  }
  .stat-cell {
    text-align: center;
  }
  .stat-cell .icon {
    font-size: 22px; color: #ff6b35;
    margin-bottom: 6px;
  }
  .stat-cell .label {
    font-size: 10px; font-weight: 700;
    color: #6b6b6b;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .stat-cell .value {
    font-size: 16px; font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.01em;
  }

  /* Variant selector — weight */
  .variant-section {
    margin-bottom: 14px;
  }
  .variant-label {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 12px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .variant-label .best-value {
    color: #ff6b35;
    text-transform: none; letter-spacing: 0;
    font-weight: 700;
    font-size: 12px;
  }
  /* Custom dropdown wrapper */
  .variant-dropdown {
    position: relative;
  }
  .variant-dropdown select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 14px;
    padding: 16px 48px 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    line-height: 1.3;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .variant-dropdown select:hover {
    border-color: #ff6b35;
  }
  .variant-dropdown select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
  }
  .variant-dropdown .dropdown-caret {
    position: absolute;
    top: 50%; right: 18px;
    transform: translateY(-50%);
    color: #1a1a1a;
    font-size: 16px;
    pointer-events: none;
  }
  .variant-helper {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 500;
  }
  .variant-helper iconify-icon {
    color: #ff6b35;
    font-size: 14px;
  }

  /* Price block */
  .price-block {
    display: flex; align-items: baseline; gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .price-current {
    font-size: 40px; font-weight: 900;
    letter-spacing: -0.03em;
    color: #1a1a1a;
  }
  .price-was {
    font-size: 22px;
    color: #b0b0b0;
    text-decoration: line-through;
    font-weight: 600;
  }
  .price-save {
    background: #ff6b35;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 800;
  }

  /* Quantity + add to cart */
  .add-row {
    display: flex; gap: 12px;
    margin-bottom: 20px;
  }
  .qty-wrap {
    display: inline-flex; align-items: center;
    border: 3px solid #1a1a1a;
    border-radius: 980px;
    background: #fff;
    overflow: hidden;
  }
  .qty-wrap button {
    width: 44px; height: 52px;
    font-size: 18px; font-weight: 700;
    transition: background 0.2s;
  }
  .qty-wrap button:hover { background: #ff6b35; }
  .qty-wrap input {
    width: 44px;
    height: 52px;
    text-align: center;
    background: transparent;
    border: none;
    font-size: 16px; font-weight: 800;
    color: #1a1a1a;
    font-family: inherit;
    outline: none;
  }
  .add-btn {
    flex: 1;
    background: #1a1a1a;
    color: #ff6b35;
    padding: 0 32px;
    height: 52px;
    border-radius: 980px;
    font-size: 15px; font-weight: 800;
    letter-spacing: 0.02em;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 5px 5px 0 #ff6b35;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .add-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 #ff6b35;
  }
  .fav-btn {
    width: 52px; height: 52px;
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
    transition: background 0.2s, color 0.2s;
  }
  .fav-btn:hover { background: #ff6b35; }
  .fav-btn.active { color: #ff6b35; }

  /* Trust strip beneath buy button */
  .buy-trust {
    display: flex; gap: 0;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
  }
  .buy-trust-cell {
    flex: 1;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    border-right: 1px solid #e0d8c8;
  }
  .buy-trust-cell:last-child { border-right: none; }
  .buy-trust-cell iconify-icon {
    font-size: 20px;
    color: #1f5d3f;
    line-height: 1;
  }
  .buy-trust-cell .text {
    font-size: 10px; font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
  }

  /* Quick description */
  .product-quick-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    padding: 20px;
    background: rgba(255, 107, 53, 0.06);
    border-radius: 14px;
    border-left: 4px solid #ff6b35;
  }

  /* ============== TABS SECTION ============== */
  .product-tabs {
    max-width: 1200px; margin: 0 auto;
    padding: 32px 32px 64px;
  }
  .tabs-nav {
    display: flex; gap: 0;
    border-bottom: 3px solid #1a1a1a;
    margin-bottom: 10px;
    overflow-x: auto;
  }
  .tab-link {
    padding: 18px 28px;
    font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: #6b6b6b;
    border-bottom: 4px solid transparent;
    margin-bottom: -3px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .tab-link:hover { color: #1a1a1a; }
  .tab-link.active {
    color: #1a1a1a;
    border-color: #ff6b35;
  }

  /* Tab content */
  .tab-pane { display: none; }
  .tab-pane.active { display: block; }

  /* Description content layout */
  .desc-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
  }
  .desc-main h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .desc-main h3 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 18px 0 8px;
  }
  .desc-main p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 10px;
  }

  /* Lab Results / COA */
  .lab-results {
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 24px;
    padding: 32px;
  }
  .lab-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 14px;
    flex-wrap: wrap; gap: 16px;
  }
  .lab-title {
    font-size: 22px; font-weight: 900;
    letter-spacing: -0.02em;
  }
  .lab-title-sub {
    font-size: 13px;
    color: #6b6b6b;
    margin-top: 4px;
  }
  .secondary-link-btn {
    padding: 10px 18px;
    background: #1a1a1a; color: #ff6b35;
    border-radius: 980px;
    font-size: 13px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .secondary-link-btn:hover { background: #ff6b35; color: #1a1a1a; }
  .lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
  }
  .lab-row {
    padding: 22px 20px;
    background: #fcfaf4;
    border-radius: 14px;
    text-align: center;
  }
  .lab-row .name {
    font-size: 12px; font-weight: 700;
    color: #6b6b6b;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
  .lab-row .val {
    font-size: 32px; font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    line-height: 1;
  }
  .lab-row .unit {
    font-size: 14px;
    color: #6b6b6b;
    font-weight: 600;
    margin-left: 2px;
  }
  .lab-pass {
    display: flex; gap: 10px;
    flex-wrap: wrap;
  }
  .lab-pass-item {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: rgba(31, 93, 63, 0.1);
    color: #1f5d3f;
    border-radius: 980px;
    font-size: 12px; font-weight: 700;
  }
  .lab-pass-item iconify-icon { font-size: 14px; }

  /* ============== REVIEWS TAB ============== */
  .reviews-summary {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: center;
    padding: 32px;
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 24px;
    margin-bottom: 10px;
  }
  .reviews-score {
    text-align: center;
  }
  .reviews-score .big {
    font-size: 72px; font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #1f5d3f 0%, #ff6b35 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
  }
  .reviews-score .stars {
    font-size: 20px;
    color: #ff6b35;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .reviews-score .total {
    font-size: 13px;
    color: #6b6b6b;
    font-weight: 600;
  }
  .reviews-bars {
    display: flex; flex-direction: column; gap: 10px;
  }
  .reviews-bar-row {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px;
    font-weight: 600;
  }
  .reviews-bar-row .label {
    flex: 0 0 50px;
    color: #1a1a1a;
  }
  .reviews-bar-row .bar {
    flex: 1;
    height: 10px;
    background: #f0e8d8;
    border-radius: 5px;
    overflow: hidden;
  }
  .reviews-bar-row .fill {
    height: 100%;
    background: #ff6b35;
    border-radius: 5px;
  }
  .reviews-bar-row .pct {
    flex: 0 0 36px;
    text-align: right;
    color: #6b6b6b;
  }
  .reviews-cta-row {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    margin-bottom: 14px;
  }
  .reviews-cta-row h3 {
    font-size: 24px; font-weight: 900;
    letter-spacing: -0.02em;
  }
  .write-review-btn {
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ff6b35;
    border-radius: 980px;
    font-size: 13px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .write-review-btn:hover { background: #ff6b35; color: #1a1a1a; }
  .review-card {
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 16px;
  }
  .review-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap; gap: 12px;
  }
  .review-author {
    display: flex; align-items: center; gap: 12px;
  }
  .review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f5d3f, #ff6b35);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 16px;
  }
  .review-name {
    font-size: 15px; font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .review-meta {
    font-size: 12px;
    color: #6b6b6b;
    display: flex; align-items: center; gap: 8px;
  }
  .review-meta .verified {
    color: #1f5d3f; font-weight: 700;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .review-stars {
    color: #ff6b35;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .review-title {
    font-size: 16px; font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .review-body {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
  }
  .review-helpful {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e0d8c8;
    display: flex; gap: 16px;
    font-size: 12px;
    color: #6b6b6b;
  }
  .review-helpful button {
    display: inline-flex; align-items: center; gap: 4px;
    color: #6b6b6b; font-weight: 600;
    transition: color 0.2s;
  }
  .review-helpful button:hover { color: #ff6b35; }

  /* ============== RELATED PRODUCTS ============== */
  .related-section {
    background: #ede4d3;
    padding: 14px 32px;
    border-top: 3px solid #1a1a1a;
  }
  .related-inner { max-width: 1400px; margin: 0 auto; }
  .related-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap; gap: 16px;
  }
  .related-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900; letter-spacing: -0.03em;
    line-height: 1;
  }
  .related-header h2 .accent {
    background: linear-gradient(135deg, #1f5d3f 0%, #ff6b35 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .related-link {
    font-size: 13px; font-weight: 800;
    color: #1a1a1a;
    display: inline-flex; align-items: center; gap: 6px;
    text-transform: uppercase; letter-spacing: 0.05em;
  }
  .related-link:hover { color: #ff6b35; }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  /* Product cards (smaller version) */
  .related-card {
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
  }
  .related-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #1a1a1a;
  }
  .related-card-img {
    height: 180px;
    border-bottom: 3px solid #1a1a1a;
    background-size: cover; background-position: center;
    position: relative;
  }
  .related-card-img .strain-chip {
    position: absolute; top: 10px; right: 10px;
    padding: 4px 10px;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(4px);
    border: 2px solid #1a1a1a;
    border-radius: 980px;
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
  }
  .related-card-body { padding: 16px; }
  .related-card-name {
    font-size: 16px; font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .related-card-meta {
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 10px;
  }
  .related-card-footer {
    display: flex; align-items: center; justify-content: space-between;
  }
  .related-card-price {
    font-size: 16px; font-weight: 900;
    letter-spacing: -0.01em;
  }
  .related-card-add {
    padding: 6px 12px;
    background: #1a1a1a; color: #ff6b35;
    border-radius: 980px;
    font-size: 11px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .related-card-add:hover { background: #ff6b35; color: #fcfaf4; }

  /* ============== FOOTER ============== */
  footer {
    background: #1a1a1a;
    color: rgba(255, 248, 240, 0.7);
    padding: 14px 32px 8px;
    font-size: 14px;
  }
  .footer-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
  }
  .footer-brand .logo { margin-bottom: 20px; }
  .footer-brand p { margin: 20px 0 24px; line-height: 1.6; max-width: 320px; }
  .footer-socials { display: flex; gap: 10px; }
  .footer-socials a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255, 248, 240, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: #ff6b35; font-size: 18px;
    transition: background 0.2s;
  }
  .footer-socials a:hover { background: #ff6b35; color: #1a1a1a; }
  .footer-col h5 {
    font-size: 13px; font-weight: 800;
    color: #ff6b35; margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a:hover { color: #fcfaf4; }
  .footer-bottom {
    max-width: 1400px; margin: 18px auto 0;
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    font-size: 13px;
  }
  .footer-bottom-links { display: flex; gap: 24px; }

  /* Responsive */
  
  @media (max-width: 820px) { .nav-links { display: none; } }
@media (max-width: 1024px) {
    
    .product-main {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 24px 22px 48px;
    }
    .gallery { position: static; }
    .desc-grid { grid-template-columns: 1fr; gap: 32px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 640px) {
    .nav-icons iconify-icon:not(.cart-btn iconify-icon) { display: none; }
    .product-stats { grid-template-columns: 1fr 1fr; padding: 16px; gap: 8px; }
    .variant-dropdown select { font-size: 14px; padding: 14px 44px 14px 16px; }
    .reviews-summary { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
    .lab-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .lab-row { padding: 16px 12px; }
    .lab-row .val { font-size: 24px; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-tabs { padding: 24px 22px 48px; }
  }

  /* ============== UNIFIED DROPDOWN NAV ============== */
  .nav-item { position: relative; }
  .nav-trigger { display: inline-flex; align-items: center; gap: 4px; }
  .nav-trigger .nav-caret {
    font-size: 11px;
    transition: transform 0.2s;
  }
  .nav-item.has-dropdown:hover .nav-trigger .nav-caret { transform: rotate(180deg); }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 320px;
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 20px;
    box-shadow: 6px 6px 0 #1a1a1a;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 9999;
  }
  .nav-dropdown::before {
    content: "";
    position: absolute;
    top: -17px; left: 0; right: 0;
    height: 17px;
  }
  .nav-dropdown::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 14px; height: 14px;
    background: #fff;
    border-top: 3px solid #1a1a1a;
    border-left: 3px solid #1a1a1a;
  }
  .nav-dropdown-narrow { width: 300px; }
  .nav-item.has-dropdown:hover .nav-dropdown,
  .nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .dd-item {
    display: flex !important; align-items: center; gap: 12px;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    transition: background 0.15s !important;
    text-decoration: none;
  }
  .dd-item:hover { background: rgba(255, 107, 53, 0.08) !important; }
  .dd-item > iconify-icon {
    font-size: 22px;
    color: #1a1a1a;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
  }
  .dd-item.dd-item-all > iconify-icon,
  .dd-item.dd-item-highlight > iconify-icon { color: #ff6b35; }
  .dd-item > div { flex: 1; min-width: 0; }
  .dd-title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 2px;
    display: flex; align-items: center; gap: 8px;
  }
  .dd-sub {
    font-size: 12px;
    font-weight: 500;
    color: #6b6b6b;
    line-height: 1.3;
  }
  /* Hide subtitles inside dropdown items (cleaner, title-only look) */
  .nav-dropdown .dd-sub { display: none; }
  .nav-dropdown .dd-title { margin-bottom: 0; }
  .dd-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #ff6b35;
    color: #1a1a1a;
    border-radius: 980px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.05em;
  }
  .dd-divider {
    height: 1px;
    background: #f0e8d8;
    margin: 6px 8px;
  }
  .dd-item-highlight { background: rgba(255, 107, 53, 0.06) !important; }
  .dd-item-highlight:hover { background: rgba(255, 107, 53, 0.12) !important; }

  /* =========== MOBILE HAMBURGER + DRAWER =========== */
  .mobile-nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .mobile-nav-toggle:hover { background: #1a1a1a; }
  .mobile-nav-toggle:hover .hamburger-line { background: #fcfaf4; }
  .hamburger-lines {
    width: 20px; height: 14px;
    position: relative;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .hamburger-line {
    width: 100%; height: 2.5px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
  }
  .mobile-nav-toggle.is-open .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .mobile-nav-toggle.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-drawer-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(26, 26, 26, 0.55);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.25s;
  }
  .mobile-drawer-backdrop.is-open {
    display: block;
    opacity: 1;
  }
  .mobile-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 88%; max-width: 380px;
    background: #fcfaf4;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex; flex-direction: column;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.18);
  }
  .mobile-drawer.is-open { transform: translateX(0); }
  .mobile-drawer-head {
    padding: 18px 22px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 2px solid #1a1a1a;
    background: #1a1a1a; color: #fcfaf4;
  }
  .mobile-drawer-head .drawer-logo {
    display: inline-flex; align-items: center;
    background: #1f5d3f; color: #fcfaf4;
    padding: 6px 18px;
    clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
    line-height: 1;
  }
  .mobile-drawer-head .drawer-logo-name {
    font-size: 16px; font-weight: 900; font-style: italic;
  }
  .mobile-drawer-close {
    width: 40px; height: 40px;
    background: transparent;
    border: 2px solid rgba(255, 248, 240, 0.4);
    border-radius: 10px;
    color: #fcfaf4;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .mobile-drawer-close iconify-icon { font-size: 18px; }
  .mobile-drawer-section {
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    padding: 8px 0;
  }
  .md-section-label {
    padding: 14px 22px 6px;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b6b6b;
  }
  .md-link {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 22px;
    min-height: 48px;
    color: #1a1a1a;
    font-size: 16px; font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
  }
  .md-link:active, .md-link:hover { background: #ede4d3; }
  .md-link iconify-icon {
    font-size: 22px; color: #1f5d3f;
    flex-shrink: 0;
  }
  .md-link.featured {
    background: #1f5d3f; color: #fcfaf4;
    margin: 6px 14px;
    border-radius: 14px;
    min-height: 56px;
  }
  .md-link.featured iconify-icon { color: #ff6b35; }
  .md-link.tg {
    background: linear-gradient(135deg, #229ED9 0%, #1a1a1a 100%);
    color: #fcfaf4;
    margin: 6px 14px;
    border-radius: 14px;
    min-height: 56px;
  }
  .md-link.tg iconify-icon { color: #fcfaf4; }
  .md-sub { font-size: 12px; color: rgba(255, 248, 240, 0.7); font-weight: 500; margin-top: 2px; display: block; }
  .md-link .md-link-text { line-height: 1.2; }
  .md-link .md-link-text small { font-size: 11px; color: #6b6b6b; font-weight: 500; display: block; margin-top: 2px; }
  .md-link.featured .md-link-text small,
  .md-link.tg .md-link-text small { color: rgba(255, 248, 240, 0.75); }
  .mobile-drawer-foot {
    margin-top: auto;
    padding: 22px;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  }
  .md-foot-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px;
    min-height: 50px;
    background: #1a1a1a; color: #fcfaf4;
    border-radius: 12px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
  }
  .md-foot-btn.primary { background: #ff6b35; color: #1a1a1a; }
  .md-foot-btn iconify-icon { font-size: 18px; }
  body.drawer-open { overflow: hidden; }
  @media (max-width: 820px) { .mobile-nav-toggle { display: inline-flex; } }

  
  /* =========== STICKY MOBILE ADD-TO-BAG =========== */
  .mobile-buy-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fcfaf4;
    border-top: 2px solid #1a1a1a;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9000;
    align-items: center;
    gap: 12px;
    /* Safe-area inset for iOS notch / home indicator */
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .mbb-price {
    display: flex; flex-direction: column;
    flex-shrink: 0;
  }
  .mbb-price-now {
    font-size: 22px; font-weight: 900; font-style: italic;
    line-height: 1; color: #1a1a1a;
  }
  .mbb-price-was {
    font-size: 12px; color: #6b6b6b;
    text-decoration: line-through;
    margin-top: 2px;
  }
  .mbb-qty {
    display: flex; align-items: center;
    background: #ede4d3;
    border-radius: 980px;
    flex-shrink: 0;
  }
  .mbb-qty button {
    width: 36px; height: 36px;
    background: transparent; border: none;
    font-size: 18px; font-weight: 800;
    color: #1a1a1a; cursor: pointer;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .mbb-qty input {
    width: 28px; text-align: center;
    background: transparent; border: none;
    font-size: 15px; font-weight: 700;
    color: #1a1a1a;
  }
  .mbb-add {
    flex: 1;
    min-height: 50px;
    background: #1a1a1a; color: #fcfaf4;
    border: none; border-radius: 14px;
    font-size: 15px; font-weight: 800;
    letter-spacing: 0.02em;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
  }
  .mbb-add:active { transform: scale(0.98); }
  .mbb-add:hover { background: #ff6b35; color: #1a1a1a; }
  .mbb-add iconify-icon { font-size: 20px; }
  @media (max-width: 768px) {
    .mobile-buy-bar { display: flex; }
    /* Add padding to bottom of page so sticky bar doesn't cover footer */
    body { padding-bottom: 92px; }
  }

  
  /* =========== MOBILE TAP TARGETS (Apple/Google min 44x44) =========== */
  @media (max-width: 768px) {
    button:not(.hamburger-line):not(.mbb-qty button),
    .btn-primary, .btn-secondary,
    .quick-add, .bundle-cta, .vault-cta,
    .apply-submit, .add-btn,
    .nav-icons a, .md-foot-btn,
    .help-cta-btn {
      min-height: 44px;
    }
    /* Larger touch target on small icons */
    .nav-icons iconify-icon { padding: 8px; }
    /* Avoid iOS zoom on form-field focus by ensuring 16px font-size */
    input, select, textarea { font-size: 16px !important; }
  }

  
  /* === Responsive nav — keep horizontal links visible at half-screen widths === */
  /* Universal: prevent nav items from wrapping or shrinking weirdly */
  .nav-links a { white-space: nowrap; }
  .logo, .nav-icons { flex-shrink: 0; }
  .nav-links { flex-wrap: nowrap; min-width: 0; }

  /* Tier 1: medium screens (981-1200px) — slight compression */
  @media (max-width: 1200px) {
    .nav-links { gap: 16px; }
    .nav-links a { padding: 6px 11px; font-size: 13.5px; }
    .nav-inner { padding: 14px 24px; }
    .logo-name { font-size: 18px; }
    .nav-icons { gap: 12px; }
    .cart-btn { padding: 9px 14px; font-size: 13px; }
  }

  /* Tier 2: narrow desktops & half-screens (821-980px) — aggressive compression */
  @media (max-width: 980px) {
    .nav-inner { padding: 12px 18px; gap: 8px; }
    .nav-links { gap: 4px; }
    .nav-links a { padding: 5px 8px; font-size: 12.5px; }
    .nav-trigger .nav-caret { font-size: 10px; margin-left: 2px; }
    .logo { padding: 6px 14px; }
    .logo-name { font-size: 16px; }
    .logo-tag { font-size: 7.5px; letter-spacing: 0.14em; }
    .nav-icons { gap: 6px; }
    /* Cart button: icon + count only (hide "Bag" label) */
    .cart-btn { padding: 8px 12px; font-size: 0; gap: 6px; }
    .cart-btn iconify-icon { font-size: 18px; }
    .cart-count { font-size: 11px; min-width: 18px; height: 18px; padding: 0 4px; }
    /* Hide the search icon — rarely used, makes room */
    .nav-icons > iconify-icon:first-child { display: none; }
    /* Dropdown: align to right edge so it doesn't overflow on narrow screens */
    .nav-item.has-dropdown:last-of-type .nav-dropdown,
    .nav-item.has-dropdown:nth-last-of-type(2) .nav-dropdown {
      left: auto; right: 0; transform: translateY(-10px);
    }
    .nav-item.has-dropdown:last-of-type:hover .nav-dropdown,
    .nav-item.has-dropdown:nth-last-of-type(2):hover .nav-dropdown {
      transform: translateY(0);
    }
    .nav-item.has-dropdown:last-of-type .nav-dropdown::after,
    .nav-item.has-dropdown:nth-last-of-type(2) .nav-dropdown::after {
      left: auto; right: 26px; transform: rotate(45deg);
    }
  }
  /* ====================================================================
     Subscribe & Save toggle (Woo Subscriptions plugin at build)
     ==================================================================== */
  .subscribe-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0 22px;
  }
  .subscribe-option {
    position: relative;
    display: block;
    border: 2px solid #d9d4c7;
    border-radius: 14px;
    padding: 14px 14px 12px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.18s, background 0.18s, transform 0.18s;
  }
  .subscribe-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .subscribe-option:hover {
    border-color: #1a1a1a;
    transform: translateY(-1px);
  }
  .subscribe-option.active,
  .subscribe-option:has(input:checked) {
    border-color: #1a1a1a;
    background: #fcfaf4;
    box-shadow: 3px 3px 0 #1a1a1a;
  }
  .subscribe-option-deal {
    border-color: #7fb069;
  }
  .subscribe-option-deal.active,
  .subscribe-option-deal:has(input:checked) {
    border-color: #1f5d3f;
    background: #f0f8eb;
  }
  .subscribe-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #ff6b35;
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 4px 8px;
    border-radius: 980px;
    border: 2px solid #1a1a1a;
  }
  .subscribe-option-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
  }
  .subscribe-option-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.01em;
  }
  .subscribe-option-price {
    font-size: 18px;
    font-weight: 900;
    color: #1a1a1a;
  }
  .subscribe-option-cadence {
    font-size: 11px;
    font-weight: 700;
    color: #6b6b6b;
    margin-left: 2px;
  }
  .subscribe-option-sub {
    font-size: 12px;
    color: #6b6b6b;
    line-height: 1.4;
    font-weight: 500;
  }
  @media (max-width: 560px) {
    .subscribe-toggle { grid-template-columns: 1fr; }
  }

  /* ====================================================================
     Brand-level review band (synchronised: 4.9 / 5,124 verified buyers)
     ==================================================================== */
  .brand-trust-band {
    display: grid;
    grid-template-columns: auto auto auto 1fr auto;
    align-items: center;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 28px;
    background: #1a1a1a;
    color: #fcfaf4;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 4px 0 #ff6b35;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0;
    margin-bottom: 0;
  }
  .brand-trust-band + .product-tabs,
  .brand-trust-band + section { margin-top: 14px; }
  .brand-trust-band:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #ff6b35;
  }
  .brand-trust-stars {
    color: #ff6b35;
    font-size: 22px;
    letter-spacing: -1px;
  }
  .brand-trust-rating {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .brand-trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,248,240,0.2);
  }
  .brand-trust-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .brand-trust-copy strong {
    font-size: 16px;
    font-weight: 800;
    color: #fcfaf4;
  }
  .brand-trust-copy span {
    font-size: 13px;
    font-weight: 500;
    color: #c9c5bc;
  }
  .brand-trust-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #ff6b35;
    color: #1a1a1a;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }
  /* When band sits on the cream homepage background, give it side padding */
  section + .brand-trust-band,
  .hero + .brand-trust-band {
    margin: 18px auto 0;
    width: calc(100% - 64px);
  }
  @media (max-width: 1024px) {
    .brand-trust-band {
      grid-template-columns: auto auto 1fr;
      grid-template-areas: "stars rating copy" "cta cta cta";
      row-gap: 14px;
    }
    .brand-trust-stars { grid-area: stars; }
    .brand-trust-rating { grid-area: rating; }
    .brand-trust-copy { grid-area: copy; }
    .brand-trust-divider { display: none; }
    .brand-trust-cta { grid-area: cta; justify-self: stretch; justify-content: center; }
  }
  @media (max-width: 560px) {
    .brand-trust-band { padding: 16px 18px; gap: 12px; }
    .brand-trust-rating { font-size: 26px; }
    .brand-trust-copy strong { font-size: 14px; }
    .brand-trust-copy span { font-size: 12px; }
  }

  /* Footer rating pill (small social-proof anchor in footer-brand) */
  .footer-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 8px 14px;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.35);
    border-radius: 980px;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }
  .footer-rating-pill:hover {
    background: rgba(255,107,53,0.22);
    border-color: #ff6b35;
  }
  .footer-rating-stars {
    color: #ff6b35;
    font-size: 13px;
    letter-spacing: -0.5px;
  }
  .footer-rating-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .footer-rating-text strong { font-weight: 900; }


/* ============== SHOP DROPDOWN: 3-COLUMN MEGA-MENU (Category + Feel + More) ============== */
.nav-dropdown.nav-dropdown-mega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  min-width: 480px;
  padding: 18px;
  align-items: start;
  /* Override base .nav-dropdown centering — anchor to left of trigger so wide panel stays on-screen */
  left: 0;
  transform: translateX(0) translateY(-10px);
}
.nav-item.has-dropdown:hover .nav-dropdown.nav-dropdown-mega,
.nav-item.has-dropdown:focus-within .nav-dropdown.nav-dropdown-mega {
  transform: translateX(0) translateY(0);
}
.nav-dropdown.nav-dropdown-mega::after {
  /* Arrow tip aligned with Shop trigger center instead of dropdown center */
  left: 32px;
  transform: rotate(45deg);
}
.nav-dropdown.nav-dropdown-mega .dd-col {
  display: flex;
  flex-direction: column;
}
.nav-dropdown.nav-dropdown-mega .dd-col-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #6b6b6b;
  padding: 0 12px 8px;
  text-transform: uppercase;
  border-bottom: 1px dashed #d8d2c4;
  margin-bottom: 6px;
}
.nav-dropdown.nav-dropdown-mega .dd-item { padding: 8px 12px; }
.nav-dropdown.nav-dropdown-mega .dd-item .dd-title { font-size: 13px; }
.nav-dropdown.nav-dropdown-mega .dd-item .dd-sub { font-size: 11px; }


/* ============== PDP QUICK ANSWERS FAQ (mood.com pattern) ============== */
.pdp-faq-section {
  background: #fcfaf4;
  padding: 14px 32px;
  border-top: 3px solid #1a1a1a;
}
.pdp-faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.pdp-faq-head {
  text-align: center;
  margin-bottom: 10px;
}
.pdp-faq-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #1a1a1a;
}
.pdp-faq-title .accent {
  background: linear-gradient(135deg, #1f5d3f 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pdp-faq-item {
  background: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.pdp-faq-item:hover { box-shadow: 4px 4px 0 #1a1a1a; }
.pdp-faq-item[open] { box-shadow: 4px 4px 0 #ff6b35; }
.pdp-faq-item summary {
  list-style: none;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
.pdp-faq-item summary::-webkit-details-marker { display: none; }
.pdp-faq-item summary iconify-icon {
  font-size: 18px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.pdp-faq-item[open] summary iconify-icon { transform: rotate(180deg); }
.pdp-faq-item p {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.pdp-faq-item a {
  color: #ff6b35;
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .pdp-faq-section { padding: 56px 20px; }
  .pdp-faq-item summary { padding: 16px 18px; font-size: 15px; }
  .pdp-faq-item p { padding: 0 18px 18px; font-size: 13.5px; }
}


/* ============== VARIANT PILLS (mood.com pattern — replaces dropdown) ============== */
.variant-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 8px;
}
.variant-option {
  position: relative;
  display: block;
  background: #fff;
  border: 2.5px solid #1a1a1a;
  border-radius: 16px;
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.variant-option:hover { background: #f0e8d8; }
.variant-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.variant-option.selected {
  background: #1a1a1a;
  color: #fcfaf4;
  box-shadow: 5px 5px 0 #ff6b35;
}
.variant-option.selected:hover { background: #1a1a1a; }
.variant-option-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.variant-option-main { flex: 1; min-width: 0; }
.variant-option-size {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.variant-option-sub {
  font-size: 12.5px;
  color: #6b6b6b;
  font-weight: 600;
  margin-top: 3px;
  line-height: 1.3;
}
.variant-option.selected .variant-option-sub { color: rgba(255, 248, 240, 0.7); }
.variant-option-price {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: right;
}
.variant-option-was {
  display: block;
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  font-weight: 600;
  margin-top: 2px;
}
.variant-option.selected .variant-option-was { color: rgba(255, 248, 240, 0.5); }
.variant-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  padding: 4px 11px;
  background: #ff6b35;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.variant-option-best .variant-badge {
  background: #1f5d3f;
  color: #fcfaf4;
}
@media (max-width: 640px) {
  .variant-option { padding: 12px 16px; }
  .variant-option-size { font-size: 16px; }
  .variant-option-price { font-size: 19px; }
  .variant-badge { font-size: 9px; padding: 3px 9px; }
}


/* ============== VARIANT PILLS — HORIZONTAL CARD GRID (overrides vertical above) ============== */
.variant-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  flex-direction: initial;
  gap: 10px;
  margin: 18px 0 8px;
}
.variant-option {
  padding: 18px 10px 14px;
  text-align: center;
  border-radius: 14px;
}
.variant-option-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.variant-option-main {
  flex: initial;
  width: 100%;
}
.variant-option-size {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.variant-option-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-top: 5px;
}
.variant-option.selected .variant-option-sub { color: rgba(255, 248, 240, 0.7); }
.variant-option-price {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.variant-option-was {
  display: block;
  font-size: 11px;
  color: #999;
  text-decoration: line-through;
  font-weight: 600;
}
.variant-option.selected .variant-option-was { color: rgba(255, 248, 240, 0.5); }
.variant-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 9px;
  background: #ff6b35;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.variant-option-best .variant-badge {
  background: #1f5d3f;
  color: #fcfaf4;
}
@media (max-width: 480px) {
  .variant-options { grid-template-columns: repeat(2, 1fr); }
  .variant-option { padding: 14px 8px 12px; }
  .variant-option-size { font-size: 17px; }
  .variant-option-price { font-size: 17px; margin-top: 8px; }
}


/* ============== SUBSCRIBE & SAVE: TIERED CADENCE LADDER ============== */
.subscribe-section {
  margin: 16px 0 8px;
}
.subscribe-section-head {
  margin-bottom: 10px;
}
.subscribe-section-title {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
.subscribe-section-sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #6b6b6b;
  margin-top: 2px;
}
.subscribe-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.subscribe-tier {
  position: relative;
  display: block;
  background: #fff;
  border: 2.5px solid #1a1a1a;
  border-radius: 14px;
  padding: 13px 16px;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}
.subscribe-tier:hover { background: #f0e8d8; }
.subscribe-tier input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.subscribe-tier.selected {
  background: #1a1a1a;
  color: #fcfaf4;
  box-shadow: 4px 4px 0 #ff6b35;
}
.subscribe-tier.selected:hover { background: #1a1a1a; }
.subscribe-tier-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.subscribe-tier-main { flex: 1; min-width: 0; }
.subscribe-tier-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.subscribe-tier-sub {
  font-size: 11.5px;
  color: #6b6b6b;
  font-weight: 600;
  margin-top: 2px;
}
.subscribe-tier.selected .subscribe-tier-sub { color: rgba(255, 248, 240, 0.7); }
.subscribe-tier-savings {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1f5d3f;
  white-space: nowrap;
  padding: 4px 9px;
  background: #f0f5e8;
  border-radius: 999px;
  border: 1.5px solid #1f5d3f;
}
.subscribe-tier.selected .subscribe-tier-savings {
  background: #ff6b35;
  color: #1a1a1a;
  border-color: #ff6b35;
}
.subscribe-tier-savings:empty,
.subscribe-tier-savings:contains("—") {
  border: none;
  background: none;
  color: #999;
}
.subscribe-tier-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  padding: 3px 10px;
  background: #ff6b35;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.subscribe-tier-best .subscribe-tier-badge {
  background: #1f5d3f;
  color: #fcfaf4;
}
@media (max-width: 640px) {
  .subscribe-tier { padding: 11px 14px; }
  .subscribe-tier-title { font-size: 14px; }
  .subscribe-tier-savings { font-size: 11px; padding: 3px 8px; }
}

  /* ====================================================================
     Accessibility: respect prefers-reduced-motion (WCAG 2.3.3)
     ==================================================================== */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .promo-track {
      animation: none !important;
      transform: translateX(0) !important;
    }
    .reveal {
      opacity: 1 !important;
      transform: none !important;
    }
  }

  /* ====================================================================
     PDP gallery thumbs at narrow widths — horizontal scroll instead of cramped 5-col
     ==================================================================== */
  @media (max-width: 480px) {
    .gallery-thumbs {
      display: flex;
      overflow-x: auto;
      gap: 8px;
      padding-bottom: 4px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }
    .gallery-thumbs::-webkit-scrollbar { height: 4px; }
    .gallery-thumbs::-webkit-scrollbar-thumb {
      background: rgba(26,26,26,0.3);
      border-radius: 4px;
    }
    .gallery-thumb {
      flex: 0 0 72px;
      width: 72px;
      height: 72px;
      scroll-snap-align: start;
      aspect-ratio: 1 / 1;
    }
  }


  /* === Logo image override (replaces .logo-stack text mark) === */
  .logo {
    background: transparent !important;
    padding: 0 !important;
    clip-path: none !important;
    color: inherit !important;
    transition: transform 0.2s;
  }
  .logo:hover { background: transparent !important; transform: translateY(-1px); }
  .logo-img {
    display: block;
    height: 52px;
    width: auto;
    max-width: 200px;
  }
  /* Footer logo: invert to light variant on dark background */
  .footer-brand .logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }
  @media (max-width: 768px) {
    .logo-img { height: 44px; max-width: 170px; }
  }
  @media (max-width: 480px) {
    .logo-img { height: 38px; max-width: 140px; }
  }


  /* ====================================================================
     MOBILE E-COMMERCE NORMALIZATION (standard phone patterns)
     ==================================================================== */

  /* ≤640px (phone) — 2-col product grids, tighter cards, compact hero */
  @media (max-width: 640px) {
    /* Product grids — 2 columns (standard e-comm on phone, NOT single col) */
    .products-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
    }
    /* Product cards — compact, tighter */
    .product-card {
      border-radius: 14px !important;
      border-width: 2px !important;
    }
    .product-image {
      height: 130px !important;
    }
    .product-body {
      padding: 10px !important;
    }
    .product-category {
      font-size: 10px !important;
      margin-bottom: 2px !important;
    }
    .product-name {
      font-size: 13px !important;
      margin-bottom: 2px !important;
      line-height: 1.15 !important;
    }
    .product-meta {
      font-size: 10px !important;
      margin-bottom: 4px !important;
    }
    .product-meta > span {
      font-size: 10px !important;
    }
    .product-rating {
      font-size: 10px !important;
    }
    .product-price {
      font-size: 14px !important;
    }
    .quick-add,
    .related-card-add {
      font-size: 11px !important;
      padding: 5px 8px !important;
    }
    .product-footer {
      gap: 4px !important;
    }
    .product-badge {
      font-size: 9px !important;
      padding: 3px 7px !important;
      top: 6px !important;
      left: 6px !important;
    }
    .product-fav {
      top: 6px !important;
      right: 6px !important;
    }
    /* Section padding — tighter */
    section {
      padding: 32px 14px !important;
    }
    /* Page-hero — tighter */
    .page-hero,
    .contact-hero,
    .about-hero,
    .bundles-hero,
    .faq-hero,
    .reviews-hero,
    .rewards-hero,
    .category-hero,
    .post-hero,
    .blog-hero {
      padding: 28px 16px 16px !important;
    }
    /* Headlines slightly tighter on mobile but readable */
    .page-hero h1,
    .contact-hero h1,
    .about-hero h1,
    .bundles-hero h1,
    .faq-hero h1,
    .reviews-hero h1,
    .rewards-hero h1,
    .category-hero h1,
    .post-hero h1,
    .blog-hero h1 {
      font-size: clamp(28px, 9vw, 42px) !important;
    }
    /* Buttons — bigger tap targets, full-ish width */
    .btn-primary,
    .btn-secondary,
    .vault-cta,
    .hero-cta-primary,
    .welcome-cta {
      padding: 12px 18px !important;
      font-size: 14px !important;
    }
    /* Container padding */
    .container {
      padding-left: 14px !important;
      padding-right: 14px !important;
    }
  }

  /* ≤480px (small phone) — even tighter */
  @media (max-width: 480px) {
    .product-image { height: 110px !important; }
    .product-name { font-size: 12px !important; }
    .product-price { font-size: 13px !important; }
    section { padding: 28px 12px !important; }
  }

  /* ≤380px (iPhone SE) — minimum sane */
  @media (max-width: 380px) {
    .products-grid {
      gap: 8px !important;
    }
    .product-image { height: 95px !important; }
    .product-body { padding: 8px !important; }
    .product-name { font-size: 11px !important; }
    .product-price { font-size: 12px !important; }
  }


  /* PDP-specific mobile layout */
  @media (max-width: 768px) {
    .product-main {
      grid-template-columns: minmax(0, 1fr) !important;
      gap: 20px !important;
      padding: 20px 14px !important;
    }
    .product-main > .gallery,
    .product-main > .buy-box { min-width: 0; }
    .gallery-main { height: 320px !important; }
    .gallery-main-image { background-size: cover !important; }
    .buy-box {
      padding: 0 !important;
    }
    .product-title {
      font-size: 24px !important;
    }
    .product-subtitle {
      font-size: 13px !important;
    }
    .product-stats {
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 8px !important;
    }
    .stat-cell {
      padding: 10px 6px !important;
    }
    .stat-cell .value {
      font-size: 16px !important;
    }
    .variant-dropdown select {
      font-size: 13px !important;
    }
    .price-current { font-size: 28px !important; }
    .add-row {
      flex-wrap: wrap !important;
    }
    .add-btn {
      flex: 1 1 100% !important;
      order: 3 !important;
      padding: 14px !important;
    }
    .buy-trust {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 8px !important;
    }
    .product-tabs { padding: 0 14px !important; }
    .tabs-nav {
      overflow-x: auto !important;
      flex-wrap: nowrap !important;
      scrollbar-width: none;
    }
    .tabs-nav::-webkit-scrollbar { display: none; }
    .tab-link {
      flex-shrink: 0 !important;
      padding: 10px 14px !important;
      font-size: 13px !important;
      white-space: nowrap !important;
    }
    /* Horizontal scroll rail: customers swipe right for more recs */
    .related-grid {
      display: flex !important;
      grid-template-columns: none !important;
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch !important;
      scrollbar-width: thin;
      scroll-snap-type: x mandatory;
      gap: 12px !important;
      padding-bottom: 8px;
    }
    .related-grid::-webkit-scrollbar { height: 4px; }
    .related-grid::-webkit-scrollbar-thumb { background: rgba(26,26,26,0.2); border-radius: 4px; }
    .related-card {
      flex: 0 0 60% !important;
      scroll-snap-align: start;
    }
    .related-card-img { height: 140px !important; }
  }
  @media (max-width: 480px) {
    .gallery-main { height: 260px !important; }
    .product-title { font-size: 20px !important; }
    .product-stats { gap: 6px !important; }
    .stat-cell .value { font-size: 14px !important; }
  }

/* ==========================================================================
   Shopify-style mobile normalization (appended for site-wide consistency)
   - 2-col product grids on phone (not 1-col)
   - 44px+ tap targets
   - Horizontal-scroll rails for related products / category chips / trust badges
   - Single-col forms on small screens
   - No emoji-only headings; readable type at small sizes
   ========================================================================== */
@media (max-width: 768px) {
  .products-grid,
  .product-grid,
  .related-grid,
  .related-products,
  .you-may-also-like { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .collections-grid,
  .categories-grid,
  .feel-grid,
  .effects-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .bundle-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px !important; }
  /* Horizontal scroll rails — trust badges, category chips, related products on PDP */
  .badge-rail,
  .chip-rail,
  .pill-rail,
  .filter-chips,
  .trust-marquee,
  .category-chips {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 10px !important;
    padding: 4px 22px 8px !important;
    margin: 0 -22px !important;
    scroll-snap-type: x mandatory !important;
  }
  .badge-rail::-webkit-scrollbar,
  .chip-rail::-webkit-scrollbar,
  .pill-rail::-webkit-scrollbar,
  .filter-chips::-webkit-scrollbar,
  .trust-marquee::-webkit-scrollbar,
  .category-chips::-webkit-scrollbar { display: none !important; }
}
@media (max-width: 640px) {
  section { padding: 40px 22px !important; }
  .nav-inner { padding: 14px 20px !important; }
  /* Tap targets — Shopify minimum is 44px */
  .btn-primary,
  .btn-secondary,
  .btn,
  button[type="submit"],
  .add-to-cart,
  .cta { min-height: 44px !important; padding: 12px 18px !important; }
  /* Product cards on phone — Shopify style */
  .product-card { border-radius: 14px !important; border-width: 2px !important; }
  .product-image,
  .product-thumb { height: 130px !important; }
  .product-body { padding: 10px !important; }
  .product-name,
  .product-title { font-size: 13px !important; line-height: 1.3 !important; }
  .product-price { font-size: 14px !important; }
  /* Single-col forms on phone */
  .form-grid,
  .form-row,
  .checkout-grid,
  .cart-grid,
  .account-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  /* Headings — keep readable on phone */
  h1, .h1 { font-size: clamp(28px, 8vw, 40px) !important; line-height: 1.05 !important; }
  h2, .h2 { font-size: clamp(22px, 6.5vw, 32px) !important; line-height: 1.1 !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  /* Hero CTAs stack full-width on phone */
  .hero-ctas,
  .cta-group { flex-direction: column !important; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .cta-group .btn { width: 100% !important; justify-content: center !important; }
}

/* ====================================================================
   PROMO BAR — ONE horizontal line on every viewport (no marquee, no wrap)
   Overrides the old auto-scroll animation. Long copy on desktop, short on phone.
   ==================================================================== */
.promo-bar {
  padding: 10px 12px !important;
  overflow: hidden !important;
}
.promo-track {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  width: auto !important;
  max-width: 1400px;
  margin: 0 auto !important;
  animation: none !important;
}
.promo-track > span,
.promo-track > a { flex-shrink: 0 !important; }
.promo-track .short { display: none; }
.promo-track .long { display: inline; }
@media (max-width: 820px) {
  .promo-bar { padding: 8px 10px !important; font-size: 11px !important; }
  .promo-track { gap: 14px !important; }
  .promo-track .promo-highlight { padding: 2px 8px !important; font-size: 11px !important; }
  .promo-track .short { display: inline; }
  .promo-track .long { display: none; }
}
@media (max-width: 480px) {
  .promo-bar { padding: 7px 6px !important; font-size: 10px !important; }
  /* Tightened: gap 10→7 + highlight pad 7→5 to fit all 3 items in 390px viewport */
  .promo-track { gap: 7px !important; overflow: hidden !important; max-width: 100% !important; }
  .promo-track .promo-highlight { padding: 2px 6px !important; font-size: 10px !important; }
  .promo-track iconify-icon { font-size: 11px !important; }
}
@media (max-width: 380px) {
  .promo-bar { padding: 6px 6px !important; font-size: 9px !important; }
  .promo-track { gap: 7px !important; }
  .promo-track .promo-highlight { padding: 2px 6px !important; font-size: 9px !important; }
}

/* MOBILE-OVERFLOW-GUARD */
@media (max-width: 820px) {
  html, body { overflow-x: hidden !important; }
}


/* Dark variant of .dd-tag — dark bg, orange text. Used on the Bulk dropdown
   item so it visually distinguishes from the Bundles tag (orange bg, dark text).
   Matches the BULK badge palette used on the bulk product cards. */
.dd-tag.dd-tag-dark {
  background: #1a1a1a;
  color: #ff6b35;
}
