/* ============================================================
   SHOP PAGE — shop.css  (CS2 Skin Store — front-page style)
   Redesigned to match the mush home design system:
   accent #cde738, dark #0c1202 bg, rounded panels & pills,
   glossy inset shadows, mush-scard-matched product cards.
   Page scope: body.page-id-589 (slug "shop-3").
   Card internals (.dc-*) come from discount.css — overridden
   here (scoped to .shop-grid, higher specificity) to visually
   match the home .mush-scard card.
   ============================================================ */

:root {
  --sf-accent: #cde738;
  --sf-bg: #0c1202;
}

/* ── PAGE BACKGROUND ──
   Global rule sets body{background-color:#111 !important}; we beat it
   with opaque background-IMAGE layers (color stays #111 underneath). */
body.page-id-589 {
  background-image:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(25, 62, 4, 0.55) 0%, transparent 62%),
    linear-gradient(#0c1202, #0c1202) !important;
  background-attachment: fixed, scroll;
  background-repeat: no-repeat;
}


/* ════════════════════════════════════════════════════════════
   SHOP HERO
════════════════════════════════════════════════════════════ */
.shop-hero {
  position: relative;
  background: transparent;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 0;
}

.shop-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 26px;
  padding-bottom: 34px;
}

.shop-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.shop-hero__heading span {
  background: radial-gradient(ellipse at 50% 60%, #fff152 0%, #cfe636 50%, #9edb1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.shop-hero__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
  line-height: 1.55;
}

.shop-hero__stats {
  display: flex;
  gap: 14px;
  width: 100%;
  align-items: stretch;
}

.shop-hero__stat {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 18px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

.shop-hero__stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--sf-accent);
  line-height: 1;
}

.shop-hero__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* Category tabs row */
.shop-hero__tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}

.shop-cat-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 16px 0 4px;
}

.shop-cat-tabs::-webkit-scrollbar { display: none; }

.shop-cat-tab {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
}

.shop-cat-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.shop-cat-tab--active {
  color: #0c1202;
  background: var(--sf-accent);
  border-color: var(--sf-accent);
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, 0.5), 0 4px 18px rgba(197, 255, 0, 0.14);
}


/* ════════════════════════════════════════════════════════════
   SHOP SECTION
════════════════════════════════════════════════════════════ */
.shop-section {
  padding-top: 40px;
  padding-bottom: 90px;
}


/* ════════════════════════════════════════════════════════════
   TOOLBAR
════════════════════════════════════════════════════════════ */
.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* Search */
.shop-search {
  position: relative;
  flex: 1;
  max-width: 460px;
}

.shop-search__input {
  width: 100%;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0 48px 0 20px;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.shop-search__input::placeholder { color: rgba(255, 255, 255, 0.32); }

.shop-search__input:focus {
  border-color: rgba(205, 231, 56, 0.5);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(205, 231, 56, 0.1);
}

.shop-search__icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  width: 18px;
  height: 18px;
}

/* Suggestions dropdown */
.shop-search__suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #131c0c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  z-index: 100;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}

.shop-search__suggestions.is-open { display: flex; }

.shop-search__suggestion {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: background .15s;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
}

.shop-search__suggestion:hover { background: rgba(205, 231, 56, 0.07); }

.shop-search__suggestion-name { flex: 1; }

.shop-search__suggestion-price {
  font-size: 13px;
  color: var(--sf-accent);
  font-weight: 600;
}

.shop-search__suggestion-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Sort */
.shop-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.shop-sort__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.shop-sort__select {
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 0 38px 0 18px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cde738' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  min-width: 184px;
  transition: border-color .2s, box-shadow .2s;
}

.shop-sort__select:hover { border-color: rgba(255, 255, 255, 0.2); }
.shop-sort__select:focus {
  border-color: rgba(205, 231, 56, 0.5);
  box-shadow: 0 0 0 3px rgba(205, 231, 56, 0.1);
}

.shop-sort__select option { background: #131c0c; color: #fff; }

/* Results count */
.shop-toolbar__count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
  font-weight: 500;
}

/* Filter toggle (mobile) */
.shop-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}

.shop-filter-toggle:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.18); }
.shop-filter-toggle svg { width: 18px; height: 18px; }

.shop-filter-toggle__badge {
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--sf-accent);
  color: #0c1202;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
}

.shop-filter-toggle__badge.has-filters { display: inline-flex; }


/* ════════════════════════════════════════════════════════════
   QUICK FILTER CHIPS
════════════════════════════════════════════════════════════ */
.shop-quick-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.shop-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.shop-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.shop-chip--active {
  background: var(--sf-accent);
  border-color: var(--sf-accent);
  color: #0c1202;
  font-weight: 700;
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, 0.5);
}

.shop-chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════════════════ */
.shop-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}


/* ════════════════════════════════════════════════════════════
   FILTER PANEL (sidebar) — rounded card, NO internal scroll
════════════════════════════════════════════════════════════ */
.shop-filter {
  width: 276px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  padding: 22px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--mush-card-shadow, inset 0 1px 1px rgba(255, 255, 255, 0.08));
}

.filter-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.filter-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 18px;
}

.filter-section__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}

.filter-section__title:hover { color: rgba(255, 255, 255, 0.7); }

.filter-section__arrow {
  width: 14px;
  height: 14px;
  transition: transform .2s;
  color: var(--sf-accent);
}

.filter-section.is-collapsed .filter-section__arrow { transform: rotate(-90deg); }
.filter-section.is-collapsed .filter-section__body { display: none; }

/* Price range */
.price-range { display: flex; flex-direction: column; gap: 14px; }

.price-range__track-wrap {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}

.price-range__track {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.price-range__fill {
  position: absolute;
  height: 100%;
  border-radius: 999px;
  background: var(--sf-accent);
  pointer-events: none;
}

.price-range__input {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
}

.price-range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--sf-accent);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform .15s;
}

.price-range__input::-webkit-slider-thumb:hover { transform: scale(1.18); }

.price-range__input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--sf-accent);
  cursor: pointer;
  pointer-events: all;
}

.price-range__values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.price-range__val {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 7px 10px;
  min-width: 74px;
  text-align: center;
  flex: 1;
}

.price-range__sep {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* Checkboxes */
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 10px;
  transition: background .15s;
}

.filter-check:hover { background: rgba(255, 255, 255, 0.05); }

.filter-check input { display: none; }

.filter-check__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
}

.filter-check input:checked ~ .filter-check__box {
  background: var(--sf-accent);
  border-color: var(--sf-accent);
}

.filter-check input:checked ~ .filter-check__box::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid #0c1202;
  border-bottom: 2px solid #0c1202;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.filter-check input:focus-visible ~ .filter-check__box {
  outline: 2px solid var(--sf-accent);
  outline-offset: 2px;
}

.filter-check__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.filter-check__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}

.filter-check:hover .filter-check__label { color: #fff; }

.filter-check__count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

/* Reset button */
.filter-reset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.filter-reset:hover {
  border-color: rgba(255, 100, 100, 0.5);
  color: #ff7676;
  background: rgba(255, 80, 80, 0.06);
}

.filter-reset svg { width: 14px; height: 14px; }


/* ════════════════════════════════════════════════════════════
   PRODUCTS GRID
════════════════════════════════════════════════════════════ */
.shop-grid-wrap { flex: 1; min-width: 0; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Legacy hover-panel bits (unused markup) — keep hidden */
.product-card__hover-panel { display: none; }


/* ════════════════════════════════════════════════════════════
   PRODUCT CARD — match the home .mush-scard look
   Cards render as .product-card.dc-card (discount.css styles the
   .dc-* internals with !important). We override here scoped to
   .shop-grid (higher specificity) to mirror the mush-scard card.
════════════════════════════════════════════════════════════ */

/* Card shell → mush green-dark gradient + layered gloss */
.shop-grid .dc-card {
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(15, 32, 20, 1) 0%, rgba(3, 4, 1, 1) 100%) !important;
  box-shadow:
    inset 0px 0.723px 1.879px -0.333px rgba(255, 255, 255, 0.12),
    inset 0px 2.746px 7.14px -0.667px rgba(255, 255, 255, 0.18),
    inset 0px 12px 31.2px -1px rgba(255, 255, 255, 0.08) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.shop-grid .dc-card.card-bg--rare,
.shop-grid .dc-card.card-bg--ancient,
.shop-grid .dc-card.card-bg--legendary,
.shop-grid .dc-card.card-bg--common,
.shop-grid .dc-card.card-bg--uncommon,
.shop-grid .dc-card.card-bg--exceedingly,
.shop-grid .dc-card.card-bg--immortal {
  background: linear-gradient(180deg, rgba(15, 32, 20, 1) 0%, rgba(3, 4, 1, 1) 100%) !important;
}

/* Hover: lift + green glow (like mush-scard) */
.shop-grid .dc-card:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    inset 0px 0.723px 1.879px -0.333px rgba(255, 255, 255, 0.18),
    inset 0px 2.746px 7.14px -0.667px rgba(255, 255, 255, 0.28),
    inset 0px 12px 31.2px -1px rgba(255, 255, 255, 0.14),
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(197, 255, 0, 0.1) !important;
}

/* Image area — taller, mush-style breathing room */
.shop-grid .dc-img-area {
  height: 196px;
  border-radius: 26px 26px 0 0;
}

.shop-grid .dc-card .product-card__img-wrap {
  padding: 44px 22px 10px !important;
}

.shop-grid .dc-card:hover .product-card__img { transform: scale(1.08); }

/* Circular action buttons → mush-product-btn look */
.shop-grid .dc-btn {
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0px 1px 1px 0px rgba(255, 255, 255, 0.06),
    inset 0px 1px 7.14px 0px rgba(255, 255, 255, 0.14),
    inset 0px 4px 8px 0px rgba(255, 255, 255, 0.18);
}

.shop-grid .dc-btn:hover { opacity: 0.8; background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%); }

/* Info row → left (name+skin) / right (prices) split like mush-scard */
.shop-grid .dc-info {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 8px;
  row-gap: 3px;
  padding: 10px 16px 16px !important;
}

.shop-grid .dc-name-row { grid-column: 1; grid-row: 1; min-width: 0; overflow: hidden; }

.shop-grid .dc-weapon-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-grid .dc-exterior {
  grid-column: 1;
  grid-row: 2;
  color: rgba(255, 255, 255, 0.45);
}

.shop-grid .dc-price-row {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1px;
}

/* Discount badge → mush red radial pill */
.shop-grid .dc-pct-badge {
  background: radial-gradient(ellipse at 50% 100%,
    rgba(209, 67, 70, 1) 0%, rgba(170, 53, 55, 1) 25%,
    rgba(131, 38, 40, 1) 50%, rgba(91, 24, 24, 1) 75%, rgba(52, 9, 9, 1) 100%);
  border: none;
}


/* ════════════════════════════════════════════════════════════
   SALES BANNER (inline in grid)
════════════════════════════════════════════════════════════ */
.shop-sales-banner {
  grid-column: 1 / -1;
  position: relative;
  display: flex;
  align-items: center;
  padding: 22px 30px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 90% 200% at 0% 50%, rgba(205, 231, 56, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.012) 100%);
  border: 1px solid rgba(205, 231, 56, 0.16);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  gap: 20px;
  min-height: 88px;
}

.shop-sales-banner__content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.shop-sales-banner__badge {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--sf-accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  line-height: 1;
}

.shop-sales-banner__text { min-width: 0; }

.shop-sales-banner__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.shop-sales-banner__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.shop-sales-banner__cta {
  flex-shrink: 0;
  height: 42px;
  padding: 0 24px;
  background: var(--sf-accent);
  color: #0c1202;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, 0.5);
  transition: transform .15s, box-shadow .2s;
}

.shop-sales-banner__cta:hover { transform: translateY(-2px); box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, 0.5), 0 6px 18px rgba(197, 255, 0, 0.2); }

.shop-sales-banner__deco {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 96px;
  color: rgba(205, 231, 56, 0.06);
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.04em;
}


/* ════════════════════════════════════════════════════════════
   EMPTY STATE
════════════════════════════════════════════════════════════ */
.shop-empty {
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  display: none;
}

.shop-empty.is-visible { display: flex; }

.shop-empty__icon {
  font-size: 60px;
  margin-bottom: 18px;
  opacity: 0.4;
  line-height: 1;
}

.shop-empty__title {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.shop-empty__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
}

.shop-empty__reset {
  height: 46px;
  padding: 0 30px;
  background: var(--sf-accent);
  color: #0c1202;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, 0.5);
  transition: transform .15s;
}

.shop-empty__reset:hover { transform: translateY(-2px); }


/* ════════════════════════════════════════════════════════════
   LOAD MORE (pagination control)
════════════════════════════════════════════════════════════ */
.shop-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.shop-load-more .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 36px;
  background: var(--sf-accent);
  color: #0c1202;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, 0.5);
  transition: transform .15s, box-shadow .2s, opacity .2s;
  clip-path: none;
}

.shop-load-more .btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, 0.5), 0 8px 24px rgba(197, 255, 0, 0.22);
}

.shop-load-more .btn:disabled { opacity: 0.6; cursor: wait; transform: none; }

.shop-load-more .btn__icon { width: 18px; height: 18px; }
.shop-load-more .btn__icon path { stroke: #0c1202; }


/* ════════════════════════════════════════════════════════════
   MOBILE FILTER BOTTOM SHEET
════════════════════════════════════════════════════════════ */
.filter-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}

.filter-sheet.is-open { display: block; }

.filter-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(2px);
}

.filter-sheet__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0e1606;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px 28px 0 0;
  max-height: 86vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  padding: 0 20px 36px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32, 0, .67, 0);
}

.filter-sheet.is-open .filter-sheet__panel {
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.33, 1, .68, 1);
}

.filter-sheet__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0 8px;
}

.filter-sheet__handle-bar {
  width: 42px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.filter-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 22px;
}

.filter-sheet__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  color: #fff;
}

.filter-sheet__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}

.filter-sheet__close:hover { background: rgba(255, 255, 255, 0.13); }
.filter-sheet__close svg { width: 18px; height: 18px; }

.filter-sheet__footer {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 20px;
}

/* "Show Results" = closes the sheet; filtering is already live on every
   change (no real Apply step). Styled as the primary sheet CTA. */
.filter-sheet__apply {
  flex: 1;
  height: 52px;
  background: var(--sf-accent);
  color: #0c1202;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, 0.5);
  transition: transform .15s;
}

.filter-sheet__apply:hover { transform: translateY(-2px); }

.filter-sheet__reset-btn {
  height: 52px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.filter-sheet__reset-btn:hover {
  border-color: rgba(255, 100, 100, 0.5);
  color: #ff7676;
}


/* ════════════════════════════════════════════════════════════
   BLOCK REARRANGEMENT  (CSS-only re-order of the fixed widget markup)
   New flow:  hero (stats strip) → quick-picks bar → toolbar →
              [ product grid LEFT | filter sidebar RIGHT ]
════════════════════════════════════════════════════════════ */

/* Make the shop-section container a flex column so its top blocks
   (toolbar / chips / layout) can be re-ordered. */
body.page-id-589 .shop-section > .container {
  display: flex;
  flex-direction: column;
}

/* Quick-pick chips lifted to the very top as a quick-nav bar */
body.page-id-589 .shop-quick-filters {
  order: 1;
  margin-bottom: 14px;
}

body.page-id-589 .shop-toolbar {
  order: 2;
  margin-bottom: 24px;
}

body.page-id-589 .shop-layout { order: 3; }

/* Main product grid on the LEFT, filter sidebar on the RIGHT */
body.page-id-589 .shop-grid-wrap { order: 1; }
body.page-id-589 .shop-filter    { order: 2; }

/* Toolbar: results count pulled to the far left (sort keeps margin-left:auto) */
body.page-id-589 .shop-toolbar__count {
  order: -1;
  margin-right: 6px;
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */

/* Side gutters once the 1140px container starts touching screen edges
   (.container has no horizontal padding of its own). */
@media (max-width: 1180px) {
  body.page-id-589 .container {
    box-sizing: border-box;
    padding-left: clamp(16px, 4vw, 28px);
    padding-right: clamp(16px, 4vw, 28px);
  }
}

@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .shop-filter { display: none; }
  .shop-filter-toggle { display: flex; }
  .shop-layout { gap: 0; }
  .shop-hero__stats { gap: 10px; }
  .shop-hero__stat { padding: 12px 16px; }
  .shop-hero__stat-num { font-size: 28px; }
}

@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-toolbar { flex-wrap: wrap; }

  .shop-search {
    max-width: 100%;
    order: -1;
    flex: 1 1 100%;
  }

  .shop-sort { margin-left: 0; }

  .shop-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 28px;
  }

  .shop-hero__stats { width: 100%; }
  .shop-hero__stat { flex: 1; }

  .shop-grid .dc-img-area { height: 168px; }

  .shop-sales-banner__deco { display: none; }

  .shop-sales-banner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
  }

  .shop-sales-banner__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .shop-grid { gap: 10px; }
  .shop-cat-tab { padding: 8px 16px; font-size: 13px; }
  .shop-hero__stats { flex-wrap: wrap; }
}
