  /* ========================================
     PAGE-SPECIFIC: SHOP / ALL PRODUCTS
     ======================================== */

  /* Page hero */
  .page-hero {
    background: #fcfaf4;
    padding: 12px 32px 8px;
    border-bottom: 3px solid #1a1a1a;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: "SHOP · SHOP · SHOP · SHOP · SHOP · SHOP · SHOP · SHOP · ";
    position: absolute;
    top: 16px; left: 0; right: 0;
    font-size: 14px; font-weight: 900;
    color: rgba(255, 107, 53, 0.12);
    letter-spacing: 0.3em;
    white-space: nowrap; overflow: hidden;
  }
  .page-hero-inner {
    max-width: 1400px; margin: 0 auto;
    position: relative; z-index: 2;
  }
  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600;
    color: #6b6b6b;
    margin-bottom: 16px;
    text-transform: uppercase; letter-spacing: 0.05em;
  }
  .breadcrumb a:hover { color: #ff6b35; }
  .breadcrumb iconify-icon { font-size: 10px; }
  .page-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900; letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 12px;
  }
  .page-hero h1 .accent {
    background: linear-gradient(135deg, #1f5d3f 0%, #ff6b35 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .page-hero-meta {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    margin-top: 14px;
  }
  .result-count {
    font-size: 15px; font-weight: 600;
    color: #555;
  }
  .result-count strong { color: #1a1a1a; }
  .sort-select {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 980px;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
  }
  .sort-select:hover { background: #ff6b35; color: #1a1a1a; }
  .sort-select iconify-icon { font-size: 16px; }

  /* ── WooCommerce sort dropdown ── */
  .woocommerce-ordering {
    margin: 0;
  }
  .woocommerce-ordering .orderby {
    appearance: none;
    -webkit-appearance: none;
    display: inline-block;
    height: 44px;
    padding: 0 42px 0 18px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1a1a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    border: 2px solid #1a1a1a;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    color: #1a1a1a;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
    max-width: 220px;
    width: 100%;
  }
  .woocommerce-ordering .orderby:hover {
    border-color: #1a1a1a;
  }
  .woocommerce-ordering .orderby:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
  }

  @media (max-width: 600px) {
    .woocommerce-ordering .orderby {
      font-size: 13px;
      height: 40px;
      padding: 0 38px 0 14px;
      max-width: 100%;
    }
  }

  /* Quick category filter pills */
  .category-pills {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: 28px;
  }
  .category-pill {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 980px;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .category-pill:hover { background: #ff6b35; }
  .category-pill.active {
    background: #1a1a1a; color: #ff6b35;
  }
  .category-pill .count {
    font-size: 11px; opacity: 0.7; font-weight: 600;
  }

  /* Shop by Effect chip row */
  .effect-chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding: 14px 18px;
    background: #1a1a1a;
    border-radius: 16px;
    color: #fcfaf4;
  }
  .effect-chips-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ff6b35;
    margin-right: 4px;
  }
  .effect-chip {
    padding: 8px 14px;
    background: transparent;
    border: 2px solid #fcfaf4;
    border-radius: 980px;
    color: #fcfaf4;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.18s, color 0.18s, transform 0.18s;
  }
  .effect-chip iconify-icon { font-size: 16px; }
  .effect-chip:hover {
    background: #7fb069;
    color: #1a1a1a;
    border-color: #7fb069;
    transform: translateY(-1px);
  }
  .effect-chip.active {
    background: #ff6b35;
    color: #1a1a1a;
    border-color: #ff6b35;
  }
  @media (max-width: 640px) {
    .effect-chips { padding: 12px; }
    .effect-chip { font-size: 12px; padding: 7px 12px; }
    .effect-chips-label { width: 100%; }
  }

  /* Main shop layout: full-width grid (no sidebar — mood.com pattern) */
  .shop-layout {
    max-width: 1400px; margin: 0 auto;
    padding: 40px 32px 80px;
  }
  .shop-grid-wrap { width: 100%; }

  /* Refine drawer trigger button (replaces sidebar) */
  .page-hero-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .refine-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: #1a1a1a;
    color: #fcfaf4;
    border-radius: 980px;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    transition: background 0.2s, color 0.2s;
  }
  .refine-btn:hover { background: #ff6b35; color: #1a1a1a; }
  .refine-btn iconify-icon { font-size: 16px; }
  .refine-btn .refine-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px;
    padding: 0 6px;
    background: #ff6b35; color: #1a1a1a;
    border-radius: 980px;
    font-size: 11px; font-weight: 900;
    margin-left: 2px;
  }

  /* Slide-in refine drawer */
  .refine-backdrop {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s;
  }
  .refine-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 100%;
    max-width: 400px;
    background: #fff;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex; flex-direction: column;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  }
  .refine-drawer.open { transform: translateX(0); }
  .refine-drawer.open ~ .refine-backdrop,
  .refine-backdrop:has(+ .refine-drawer.open) {
    opacity: 1; pointer-events: auto;
  }
  /* Fallback for :has() — show backdrop when drawer is open */
  .refine-drawer.open + .refine-backdrop { opacity: 1; pointer-events: auto; }
  body:has(.refine-drawer.open) .refine-backdrop { opacity: 1; pointer-events: auto; }
  .refine-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 2px solid #1a1a1a;
    background: #fcfaf4;
  }
  .refine-drawer-head h3 {
    font-size: 22px; font-weight: 900;
    letter-spacing: -0.02em;
  }
  .refine-close {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(26,26,26,0.08);
    color: #1a1a1a;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
  }
  .refine-close:hover { background: #1a1a1a; color: #fcfaf4; }
  .refine-drawer-body {
    flex: 1; overflow-y: auto;
    padding: 24px;
  }
  .refine-drawer-foot {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;
    padding: 16px 24px 20px;
    border-top: 2px solid #1a1a1a;
    background: #fcfaf4;
  }
  .refine-clear {
    padding: 12px;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
  }
  .refine-clear:hover { background: #1a1a1a; color: #fcfaf4; }
  .refine-apply {
    padding: 12px;
    background: #ff6b35;
    color: #1a1a1a;
    border-radius: 12px;
    font-size: 14px; font-weight: 900;
    cursor: pointer;
    border: 2px solid #1a1a1a;
  }
  .refine-apply:hover { background: #1a1a1a; color: #ff6b35; }
  .refine-drawer .filter-group {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 14px;
  }
  .refine-drawer .filter-group h4 {
    font-size: 12px; font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #6b6b6b;
  }

  /* Load more button (replaces pagination — mood.com pattern) */
  .load-more-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
  }
  .load-more-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    background: #1a1a1a;
    color: #fcfaf4;
    border-radius: 980px;
    font-size: 15px; font-weight: 800;
    letter-spacing: -0.01em;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .load-more-btn:hover {
    background: #1f5d3f;
    color: #fcfaf4;
    transform: translateY(-2px);
  }
  .load-more-btn:focus:not(:focus-visible) { outline: none; }
  .load-more-btn:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
  }
  .load-more-btn iconify-icon { font-size: 18px; }
  .load-more-meta {
    font-size: 13px; font-weight: 500;
    color: #6b6b6b;
  }
  .load-more-meta strong { color: #1a1a1a; font-weight: 800; }

  /* Legacy sidebar styles preserved (in case dev wants to bring back at build) */
  .filter-sidebar {
    display: none;
    align-self: start;
  }
  .filter-group {
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
  }
  .filter-group h4 {
    font-size: 14px; font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    text-transform: uppercase;
    display: flex; align-items: center; justify-content: space-between;
  }
  .filter-group h4 iconify-icon {
    font-size: 14px; color: #6b6b6b;
    transition: transform 0.2s;
  }
  .filter-options { display: flex; flex-direction: column; gap: 8px; }
  .filter-option {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background 0.15s;
  }
  .filter-option:hover { background: #fcfaf4; }
  .filter-option input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: #ff6b35;
    cursor: pointer;
  }
  .filter-option .count {
    margin-left: auto;
    font-size: 12px;
    color: #999;
  }
  .filter-clear {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s;
  }
  .filter-clear:hover { background: #1a1a1a; color: #fcfaf4; }

  /* Mobile filter button */
  .mobile-filter-btn {
    display: none;
    padding: 12px 20px;
    background: #1a1a1a; color: #ff6b35;
    border-radius: 980px;
    font-size: 14px; font-weight: 700;
    align-items: center; gap: 8px;
    margin-bottom: 20px;
  }

  /* Product grid (mood.com-style: 4 cols full-width on desktop) */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .product-card {
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .product-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 #1a1a1a;
  }
  .product-image {
    position: relative;
    height: 240px;
    border-bottom: 3px solid #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .product-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 12px;
    background: #1a1a1a; color: #fcfaf4;
    border-radius: 980px;
    font-size: 11px; font-weight: 800;
    transform: rotate(-3deg);
  }
  .product-badge.sale {
    background: #ff6b35; color: #1a1a1a;
  }
  .product-fav {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(4px);
    border: 2px solid #1a1a1a;
    display: flex; align-items: center; justify-content: center;
    color: #1a1a1a;
    transition: color 0.2s, background 0.2s;
  }
  .product-fav:hover { background: #ff6b35; color: #fcfaf4; }
  .product-body { padding: 16px; }
  .product-category {
    font-size: 11px; font-weight: 800;
    color: #ff6b35;
    margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .product-name {
    font-size: 16px; 
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .product-meta {
    font-size: 13px; color: #6b6b6b;
    margin-bottom: 16px;
  }
  .product-rating {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #6b6b6b;
  }
  .product-rating .stars { color: #ff6b35; letter-spacing: 1px; }
  .product-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 2px dashed #e0d8c8;
    padding-top: 14px;
  }
  .product-price-wrap {
    display: flex; flex-direction: column; gap: 2px;
  }
  .product-price {
    font-size: 16px; font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a !important;
  }
  .product-price .strike {
    color: #b0b0b0;
    text-decoration: line-through;
    font-size: 14px; font-weight: 600;
    margin-right: 8px;
  }
  .quick-add {
    padding: 10px 18px;
    background: #1a1a1a;
    color: #1f5d3f;
    border-radius: 980px;
    font-size: 13px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.2s;
  }
  .quick-add:hover { background: #1f5d3f; color: #fcfaf4; }

  /* Pagination */
  .pagination {
    margin-top: 10px;
    display: flex; justify-content: center; gap: 8px;
    flex-wrap: wrap;
  }
  .pagination button {
    min-width: 44px; height: 44px;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    background: #fff;
    font-size: 14px; font-weight: 800;
    transition: background 0.2s, color 0.2s;
  }
  .pagination button:hover { background: #ff6b35; }
  .pagination button.active { background: #1a1a1a; color: #ff6b35; }
  .pagination button.disabled { opacity: 0.4; cursor: not-allowed; }

  /* Responsive */

@media (max-width: 1024px) {
    .shop-layout { padding: 32px 22px 60px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  }
  @media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .refine-drawer { max-width: 100%; }
  }
  @media (max-width: 640px) {
    .page-hero { padding: 40px 22px 24px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .load-more-btn { padding: 14px 28px; font-size: 14px; }
    .page-hero-controls { flex-wrap: wrap; }
  }
  @media (max-width: 380px) {
    .products-grid { grid-template-columns: 1fr; gap: 14px; }
  }


/* ============== SHOP BROWSE TOGGLE (Category ↔ Mood — mood.com pattern) ============== */
.shop-browse-toggle {
  display: inline-flex;
  margin: 24px 0 18px;
  padding: 5px;
  background: #fff;
  border: 2.5px solid #1a1a1a;
  border-radius: 999px;
  gap: 4px;
  box-shadow: 4px 4px 0 #1a1a1a;
}
.shop-browse-btn {
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.shop-browse-btn:hover { background: #f0e8d8; }
.shop-browse-btn.active { background: #1a1a1a; color: #ff6b35; }
.shop-browse-btn.active:hover { background: #1a1a1a; }
.shop-browse-btn:focus-visible {
  outline: 3px solid #ff6b35;
  outline-offset: 3px;
}

/* Active/hidden chip rows — wrapper class keeps existing .effect-chips / .category-pills styles intact */
.shop-browse-row { display: none; }
.shop-browse-row.active { display: flex; }

@media (max-width: 640px) {
  .shop-browse-toggle { box-shadow: 3px 3px 0 #1a1a1a; }
  .shop-browse-btn { padding: 9px 16px; font-size: 12px; }
}

/* ============== 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; }

  /* ====================================================================
     iPhone SE / older Android (320-380px) — narrowest-width polish
     ==================================================================== */
  @media (max-width: 380px) {
    /* Effect chips: label gets its own line, chips wrap tighter */
    .effect-chips {
      flex-direction: row;
      flex-wrap: wrap;
      padding: 10px;
      gap: 6px;
    }
    .effect-chips-label {
      width: 100%;
      margin-bottom: 4px;
      margin-right: 0;
      font-size: 11px;
    }
    .effect-chip {
      font-size: 11px;
      padding: 6px 10px;
    }
    .effect-chip iconify-icon { font-size: 14px; }
    /* Category pills tighter */
    .category-pills { gap: 6px; }
    .category-pill {
      font-size: 12px;
      padding: 7px 12px;
    }
    /* Page hero tighter */
    .page-hero { padding: 32px 18px 24px; }
    .page-hero h1 { font-size: 36px; }
  }

  /* ====================================================================
     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;
    }
    .reveal {
      opacity: 1 !important;
      transform: none !important;
    }
  }

  /* ====================================================================
     Round category circles (mood.com pattern) — top of shop page
     ==================================================================== */
  .shop-cat-circles {
    display: flex;
    gap: 18px;
    margin: 28px 0 18px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .shop-cat-circles::-webkit-scrollbar { height: 4px; }
  .shop-cat-circles::-webkit-scrollbar-thumb {
    background: rgba(26,26,26,0.2);
    border-radius: 4px;
  }
  .cat-circle {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1a1a1a;
    scroll-snap-align: start;
    transition: transform 0.2s;
  }
  .cat-circle:hover { transform: translateY(-3px); }
  .cat-circle-img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fcfaf4;
    transition: box-shadow 0.2s;
    background: linear-gradient(135deg, #1f5d3f 0%, #7fb069 100%);
    overflow: hidden;
  }
  .cat-circle:hover .cat-circle-img { box-shadow: 4px 4px 0 #1a1a1a; }
  .cat-circle.active .cat-circle-img {
    box-shadow: 4px 4px 0 #ff6b35;
    transform: scale(1.04);
  }
  /* Per-category gradient backgrounds (matching home Collections) */
  .cat-circle-img.cat-all { background: url("../img/products-v3/bundle-stash-box.webp") center/cover, #f5e8d4; }
  .cat-circle-img.cat-flower { background: url("../img/products-v3/sunrise-stack.webp") center/cover, #f5e8d4; }
  .cat-circle-img.cat-vape { background: url("../img/products-v3/cloud-nine-vape.webp") center/cover, #f5e8d4; }
  .cat-circle-img.cat-concentrates { background: url("../img/products-v3/tangie-badder.webp") center/cover, #f5e8d4; }
  .cat-circle-img.cat-edibles { background: url("../img/products-v3/watermelon-drops.webp") center/cover, #f5e8d4; }
  .cat-circle-img.cat-prerolls { background: url("../img/products-v3/pre-roll.webp") center/cover, #f5e8d4; }
  .cat-circle-img.cat-bundles { background: url("../img/products-v3/bundle-starter.webp") center/cover, #f5e8d4; }
  .cat-circle-img.cat-bulk { background: url("../img/products-v3/bulk.webp") center/cover, #f5e8d4; }
  .cat-circle-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-align: center;
    line-height: 1.2;
  }
  .cat-circle-count {
    font-size: 11px;
    font-weight: 600;
    color: #6b6b6b;
    margin-left: 3px;
  }

  /* Effect row beneath categories — transparent, mood.com-style */
  .shop-effect-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
    padding: 4px 0;
    background: transparent;
    color: #1a1a1a;
  }
  .shop-effect-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b6b6b;
    margin-right: 4px;
  }
  .shop-effect-row .effect-chip {
    padding: 8px 14px;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 980px;
    color: #1a1a1a;
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background 0.18s, color 0.18s, transform 0.18s, border-color 0.18s;
  }
  .shop-effect-row .effect-chip iconify-icon { font-size: 16px; }
  .shop-effect-row .effect-chip:hover {
    background: #ff6b35;
    color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-1px);
  }
  .shop-effect-row .effect-chip.active {
    background: #1a1a1a;
    color: #ff6b35;
    border-color: #1a1a1a;
  }

  /* NEW + TOP SHELF badges */
  .product-badge.new {
    background: #1a1a1a;
    color: #fcfaf4;
    font-weight: 900;
  }
  .product-badge.top-shelf {
    background: #1a1a1a;
    color: #fcfaf4;
    font-weight: 900;
    letter-spacing: 0.05em;
  }

  @media (max-width: 768px) {
    .shop-cat-circles { gap: 14px; }
    .cat-circle-img { width: 72px; height: 72px; font-size: 30px; }
    .cat-circle-label { font-size: 12px; }
    /* Feel chips: horizontal scroll, same pattern as .shop-cat-circles */
    .shop-effect-row {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scroll-snap-type: x mandatory;
      padding: 8px 2px 12px;
      gap: 8px;
    }
    .shop-effect-row::-webkit-scrollbar { height: 4px; }
    .shop-effect-row::-webkit-scrollbar-thumb { background: rgba(26,26,26,0.2); border-radius: 4px; }
    .shop-effect-label {
      width: auto;
      margin-bottom: 0;
      flex: 0 0 auto;
      align-self: center;
      padding-right: 4px;
    }
    .shop-effect-row .effect-chip {
      flex: 0 0 auto;
      scroll-snap-align: start;
      font-size: 12px;
      padding: 7px 11px;
      white-space: nowrap;
    }
  }
  @media (max-width: 480px) {
    .cat-circle-img { width: 64px; height: 64px; font-size: 26px; border-width: 2px; }
    .cat-circle-label { font-size: 11px; }
    .shop-cat-circles { gap: 12px; }
  }




  /* ====================================================================
     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; }
  }


/* ============== QTY STEPPER + ADD BUTTON (matches category pages + bundles) ============== */
.bundle-action-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px;
}
.qty-stepper {
  display: flex; align-items: center;
  background: #fff;
  border-radius: 980px;
  flex-shrink: 0;
  border: 2px solid #1a1a1a;
}
.qty-btn {
  width: 30px; height: 32px;
  background: #fff; border: none;
  font-size: 16px; font-weight: 800;
  color: #1a1a1a; cursor: pointer;
  border-radius: 980px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: #ede4d3; }
.qty-input {
  width: 26px; text-align: center;
  background: transparent; border: none;
  font-size: 14px; font-weight: 800;
  color: #1a1a1a;
  padding: 0;
  pointer-events: none;
}
.bundle-add-btn {
  flex: 1;
  min-height: 36px;
  background: #1a1a1a; color: #fcfaf4;
  border: 2px solid #1a1a1a; border-radius: 12px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  white-space: nowrap;
}
.bundle-add-btn:hover { background: #ff6b35; color: #1a1a1a; }
.bundle-add-btn:active { transform: scale(0.97); }
.bundle-add-btn.added { background: #7fb069; color: #1a1a1a; }
.bundle-add-btn iconify-icon { font-size: 14px; }

/* ============== EFFECT CHIP(S) — top-right, side by side (scoped to .product-image to not collide with filter chips above) ============== */
.product-image .effect-chip-group {
  position: absolute; top: 10px; right: 10px; max-width: calc(100% - 20px);
  display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 8px;
}
.product-image .effect-chip {
  padding: 3px 8px;
  border-radius: 980px;
  font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  backdrop-filter: blur(4px);
  background: rgba(255, 248, 240, 0.92);
  white-space: nowrap;
}
.product-image .effect-chip::before { content:""; display:inline-block; width:6px; height:6px; border-radius:50%; margin-right:5px; background:#1a1a1a; vertical-align:middle; }

.product-image .effect-chip.effect-chill::before { background: #4FA8D8; }
.product-image .effect-chip.effect-sleep::before { background: #8A6FC0; }
.product-image .effect-chip.effect-focus::before { background: #F0682E; }
.product-image .effect-chip.effect-social::before { background: #D99A2B; }
.product-image .effect-chip.effect-energy::before { background: #D4B800; }
.product-image .effect-chip.effect-relief::before { background: #E85D75; }
.product-image .effect-chip.effect-happy::before { background: #E0A93C; }
.product-image .effect-chip.effect-creative::before { background: #3F8C4F; }
.product-image .effect-chip.effect-aroused::before { background: #C9344F; }
.product-image .effect-chip.effect-soothing::before { background: #5E9DB5; }
/* ============== UNIFIED CATEGORY GRID — match flower.html ============== */
@media (min-width: 769px) {
  .products-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .products-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 16px !important; }
  .product-image { height: 200px !important; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .bundle-action-row { gap: 6px; margin-top: 8px; }
  .qty-btn { width: 24px; height: 26px; font-size: 13px; }
  .qty-input { width: 20px; font-size: 12px; }
  .bundle-add-btn { font-size: 11px; min-height: 28px; }
  .bundle-add-btn iconify-icon { font-size: 12px; }
}
@media (max-width: 480px) {
  .product-image { height: 130px !important; }
  .effect-chip-group { top: 8px; right: 8px; gap: 4px; }
  .effect-chip { font-size: 8px; padding: 2px 7px; border-width: 1px; }
}

/* MOBILE-OVERFLOW-GUARD */
@media (max-width: 820px) {
  html, body { overflow-x: hidden !important; }
}


/* ============================================================
   CARD ADD CONTROL — DoorDash-style morphing qty stepper
   Default (data-qty="0"): round orange + button.
   With qty: morphs into [- N +] green pill.
   See home.css for the original; duplicated here for per-page bundling.
   ============================================================ */
.card-add-control {
  display: inline-flex;
  align-items: center;
  border: 2px solid #1a1a1a;
  background: #1f5d3f;
  border-radius: 999px;
  box-shadow: 2px 2px 0 #1a1a1a;
  overflow: hidden;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
  flex-shrink: 0;
  height: 36px;
}
.card-add-control:hover { box-shadow: 3px 3px 0 #1a1a1a; transform: translate(-1px, -1px); }
.card-add-control .card-add-minus,
.card-add-control .card-add-plus {
  appearance: none; background: transparent; border: none; padding: 0; margin: 0;
  color: #fcfaf4; font: inherit; font-size: 18px; font-weight: 800; line-height: 1;
  cursor: pointer; height: 100%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.card-add-control .card-add-plus { width: 32px; }
.card-add-control .card-add-plus iconify-icon { font-size: 18px; }
.card-add-control .card-add-minus { width: 30px; font-size: 22px; }
.card-add-control .card-add-minus:hover,
.card-add-control .card-add-plus:hover { background: rgba(255, 248, 240, 0.14); }
.card-add-control .card-add-qty {
  min-width: 22px; padding: 0 4px; text-align: center;
  font-size: 14px; font-weight: 800; color: #fcfaf4; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.card-add-control[data-qty="0"] { width: 36px; height: 36px; border-radius: 50%; }
.card-add-control[data-qty="0"] .card-add-minus,
.card-add-control[data-qty="0"] .card-add-qty { display: none; }
.card-add-control[data-qty="0"] .card-add-plus { width: 100%; height: 100%; }
.card-add-control:not([data-qty="0"]) { background: #1f5d3f; }
.card-add-control:not([data-qty="0"]) .card-add-minus,
.card-add-control:not([data-qty="0"]) .card-add-plus { color: #fcfaf4; }
.card-add-control:not([data-qty="0"]) .card-add-qty { color: #fcfaf4; }
.card-add-control:not([data-qty="0"]) .card-add-minus:hover,
.card-add-control:not([data-qty="0"]) .card-add-plus:hover { background: rgba(255, 248, 240, 0.14); }

.cart-count.flash { animation: cart-count-pulse 0.5s ease; }
@keyframes cart-count-pulse {
  0%   { transform: scale(1);   background: #ff6b35; }
  40%  { transform: scale(1.35); background: #1f5d3f; color: #fcfaf4; }
  100% { transform: scale(1);   background: #ff6b35; }
}

@media (max-width: 480px) {
  .card-add-control { height: 32px; }
  .card-add-control[data-qty="0"] { width: 32px; height: 32px; }
  .card-add-control .card-add-plus { width: 28px; }
  .card-add-control .card-add-plus iconify-icon { font-size: 16px; }
  .card-add-control .card-add-minus { width: 26px; font-size: 20px; }
  .card-add-control .card-add-qty { font-size: 13px; min-width: 20px; }
}

/* Merged price+stepper row — price left, stepper right (same as home pattern) */
.product-footer { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-footer-row { margin-top: 6px; }


/* 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;
}

/* Weight-variant pills + price ranges on cards (competitor teardown takeaway) */
.card-weights { display:flex; flex-wrap:wrap; gap:5px; margin:2px 0 10px; }
.card-weights span { font-size:10.5px; font-weight:700; padding:2px 8px; border:1.5px solid #e2dccd; border-radius:980px; color:#6b6b6b; background:#faf7f0; }

/* ============== Price range slider (replaces price checkboxes) ============== */
.price-slider { padding: 4px 2px 2px; }
.price-readout { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 800; color: #1a1a1a; margin-bottom: 8px; }
.price-track { position: relative; height: 26px; }
.price-track::before { content: ""; position: absolute; left: 0; right: 0; top: 11px; height: 4px; background: #e0d8c8; border-radius: 980px; }
.price-fill { position: absolute; top: 11px; height: 4px; background: #ff6b35; border-radius: 980px; }
.price-range { position: absolute; left: 0; top: 0; width: 100%; height: 26px; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.price-range:focus { outline: none; }
.price-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; pointer-events: auto; width: 18px; height: 18px; border-radius: 50%; background: #fcfaf4; border: 2px solid #1a1a1a; box-shadow: 2px 2px 0 #1a1a1a; cursor: grab; }
.price-range::-webkit-slider-thumb:active { cursor: grabbing; background: #ff6b35; }
.price-range::-moz-range-thumb { pointer-events: auto; width: 14px; height: 14px; border-radius: 50%; background: #fcfaf4; border: 2px solid #1a1a1a; box-shadow: 2px 2px 0 #1a1a1a; cursor: grab; }
.price-range:focus-visible::-webkit-slider-thumb { outline: 2px solid #ff6b35; outline-offset: 2px; }
.refine-drawer .price-slider { max-width: 320px; }

/* ============== Left filter rail (same shell as the 4 category pages) ============== */
/* Feel (.feel-chip) and Strains (.type-chip) are styled identically to
   Category (.rail-strain) — same row shell, same hover/active treatment
   — just kept as separate classes so filters.js can still tell them apart
   (Category is single-select, Feel/Strains toggle multiple at once). */
.toolbar { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.toolbar-controls { display:flex; align-items:center; gap:10px; }
.shop-layout { display:grid; grid-template-columns: 248px 1fr; gap:30px; max-width:1384px; margin:0 auto; padding:28px 32px 72px; align-items:start; }
.cat-rail { position:sticky; top:88px; display:flex; flex-direction:column; gap:20px; background:#fff; border:2.5px solid #1a1a1a; border-radius:16px; box-shadow:5px 5px 0 #1a1a1a; padding:20px 18px; max-height:calc(100vh - 110px); overflow:auto; }
.rail-title { font-size:11px; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; color:#888; margin:0 0 9px; }
.rail-strains, .rail-feels, .rail-types { display:flex; flex-direction:column; gap:5px; }
.rail-strain, .feel-chip, .type-chip { display:flex; align-items:center; gap:8px; padding:8px 11px; background:transparent; border:2px solid transparent; border-radius:10px; font-family:inherit; font-size:13.5px; font-weight:700; color:#1a1a1a; cursor:pointer; text-align:left; text-decoration:none; }
.rail-strain:hover, .feel-chip:hover, .type-chip:hover { background:#f6f1e7; }
.rail-strain.active, .feel-chip.active, .type-chip.active { background:#1a1a1a; color:#fcfaf4; }
.rail-strain.active .count, .feel-chip.active .count, .type-chip.active .count { color:#ff6b35; }
.rail-strain .count, .feel-chip .count, .type-chip .count { margin-left:auto; font-size:11.5px; font-weight:700; color:#999; }
.cat-circle:focus:not(:focus-visible),
.rail-strain:focus:not(:focus-visible),
.feel-chip:focus:not(:focus-visible),
.type-chip:focus:not(:focus-visible) { outline: none; }
.rail-option { display:flex; align-items:center; gap:9px; padding:5px 0; font-size:13.5px; font-weight:600; color:#3a3a3a; cursor:pointer; }
.rail-option input { width:16px; height:16px; accent-color:#1f5d3f; }
.rail-option .count { margin-left:auto; font-size:11.5px; color:#999; }
.shop-layout .products-grid { grid-template-columns:repeat(4,1fr) !important; max-width:none; margin:0; padding:0; gap:16px !important; }
.shop-layout .toolbar { max-width:none; margin:0 0 20px; padding:0; }
.shop-layout .refine-btn { display:none; }
.card-cat { display:block; font-size:10px; font-weight:800; letter-spacing:0.09em; text-transform:uppercase; color:#1f5d3f; margin:0 0 4px; }
@media (max-width:1024px) {
  .shop-layout { grid-template-columns:1fr; padding:20px 20px 56px; }
  .cat-rail { display:none; }
  .shop-layout .refine-btn { display:inline-flex; }
  .shop-layout .products-grid { grid-template-columns:repeat(2,1fr) !important; }
}
@media (max-width:560px) { .shop-layout .products-grid { grid-template-columns:repeat(2,1fr) !important; } }
/* The 480px section tightener uses !important; keep its 12px sides, restore the bottom gap */
@media (max-width: 480px) {
  section.shop-layout { padding-bottom: 56px !important; }
}


/* Square product-card image (matches WooCommerce 1:1 catalog thumbnail).
   Scoped + !important so it wins over the copy-pasted mobile height overrides;
   gives a consistent square crop at every breakpoint. */
.products-grid .product-image { aspect-ratio: 1 / 1 !important; height: auto !important; }

/* 44px add-button tap target on phones (Apple/Google minimum) */
@media (max-width: 640px) {
  .products-grid .card-add-control { height: 44px !important; }
  .products-grid .card-add-control[data-qty="0"] { width: 44px !important; height: 44px !important; }
  .products-grid .card-add-control .card-add-plus { width: 44px !important; }
}





.hb-plus-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    max-width: 36px;
    border-radius: 50%;
    min-height: 0 !important;
    background: #1f5d3f;
    border: 2px solid #1a1a1a;
    box-shadow: 2px 2px 0 #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fcfaf4;
    font-size: 18px;
    text-decoration: none;
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
}


.hb-plus-btn:hover,
.hb-plus-btn:focus,
.hb-plus-btn:active,
.hb-plus-btn:focus-visible {
    background: #1f5d3f;
    color: #fcfaf4;
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 #1a1a1a;
    outline: none;
    border-color: #1a1a1a;
}

@media (max-width: 767px) {
    .hb-plus-btn {
        width: 25px;
        height: 25px;
        min-width: 25px;
        max-width: 25px;
        min-height: 25px !important;
        font-size: 15px;
    }
}


/* ========================================
   BUNDLES CATEGORY — no sidebar/filters
   Matches design-package/bundles.html. Only used when
   is_product_category('bundles') branches out of the
   sidebar layout in archive-product.php.
   ======================================== */
.category-label-bar { background:#fcfaf4; border-bottom:3px solid #1a1a1a; padding:16px 32px 12px; }
.category-label-bar .container { max-width:1320px; margin:0 auto; }
.category-label-bar .category-label-content { display:flex; flex-direction:column; gap:12px; align-items:flex-start; }
.category-label-bar .breadcrumb { margin-bottom:0; }
.category-title-big { display:inline-flex; align-items:center; gap:16px; font-size:clamp(40px,6vw,64px); font-weight:900; font-style:italic; letter-spacing:-0.03em; line-height:1; color:#1a1a1a; margin:0; }
.category-title-icon { font-size:0.85em; color:#ff6b35; }
.category-title-big .cat-word {
  background:linear-gradient(135deg,#1f5d3f 0%,#ff6b35 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
@media (max-width:768px) {
  .category-label-bar { padding:24px 20px 16px; }
  .category-title-big { font-size:34px; gap:12px; }
}

.bundles-grid-section { padding:28px 32px 72px; background:#fcfaf4; }
.bundles-grid-inner { max-width:1280px; margin:0 auto; }
.bundles-grid-section .toolbar { max-width:none; margin:0 0 20px; padding:0; }
.bundles-grid-section .products-grid { max-width:1320px; margin:0 auto; }
@media (max-width:1024px) {
  .bundles-grid-section { padding:20px 20px 56px; }
}