/* ============================================================
   SHOP PAGE — Enhanced Stylesheet
   Extends styles.css · Shop-specific overrides & enhancements
   ============================================================ */

/* ─── PRODUCT IMAGE ──────────────────────────────────────── */
.product-img {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
  display    : block;
  transition : transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-name { transition: color 0.3s ease; }
.product-card:hover .product-name { color: var(--gold-dark); }

/* ─── PRODUCT WISH BTN ───────────────────────────────────── */
.product-wish-btn {
  border-radius: 50%;
  transition   : transform 0.2s ease;
  z-index      : 3;
  box-shadow   : 0 1px 6px rgba(0,0,0,0.14);
}
.product-wish-btn:hover { transform: scale(1.15); }

/* ─── QUICK ADD (slide-up on hover) ─────────────────────── */
.product-quick-add {
  position      : absolute;
  bottom        : 0;
  left          : 0;
  right         : 0;
  width         : 100%;
  background    : rgba(8, 8, 8, 0.8);
  color         : var(--white);
  font-size     : 0.63rem;
  font-weight   : 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding       : 13px;
  text-align    : center;
  transform     : translateY(100%);
  transition    : transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor        : pointer;
  border        : none;
  font-family   : var(--font-sans);
}
.product-card:hover .product-quick-add { transform: translateY(0); }

/* ─── FEATURED CARD ──────────────────────────────────────── */
.product-card.is-featured {
  grid-column           : span 2;
  display               : grid;
  grid-template-columns : 1fr 270px;
}
.product-card.is-featured .product-img-wrap {
  aspect-ratio: unset;
  min-height  : 400px;
}
.product-card.is-featured .product-data {
  padding        : 40px 32px;
  background     : var(--bg-cream);
  display        : flex;
  flex-direction : column;
  justify-content: center;
  border-left    : 1px solid var(--border-lt);
}
.product-card.is-featured .product-name   { font-size: 1.3rem; line-height: 1.25; }
.product-card.is-featured .product-data .btn { align-self: flex-start; }
.product-featured-desc {
  font-size    : 0.83rem;
  color        : var(--text-muted);
  line-height  : 1.8;
  margin-top   : 12px;
  margin-bottom: 22px;
}
.product-card.is-featured .product-colors { margin-bottom: 22px; }

/* ─── CARD ENTRANCE ANIMATION ────────────────────────────── */
@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-card                { animation: cardFadeUp 0.55s ease both; }
.product-card:nth-child(1)   { animation-delay: 0.05s; }
.product-card:nth-child(2)   { animation-delay: 0.12s; }
.product-card:nth-child(3)   { animation-delay: 0.19s; }
.product-card:nth-child(4)   { animation-delay: 0.26s; }
.product-card:nth-child(5)   { animation-delay: 0.32s; }
.product-card:nth-child(6)   { animation-delay: 0.38s; }
.product-card:nth-child(7)   { animation-delay: 0.44s; }
.product-card:nth-child(8)   { animation-delay: 0.50s; }
.product-card:nth-child(9)   { animation-delay: 0.56s; }
.product-card:nth-child(10)  { animation-delay: 0.62s; }
.product-card:nth-child(11)  { animation-delay: 0.68s; }
.product-card:nth-child(12)  { animation-delay: 0.74s; }

/* ─── PAGE HEADER (shop override) ───────────────────────── */
.page-header {
  background   : var(--bg-section);
  border-bottom: none;
  padding      : 0;
  margin-bottom: 0;
  overflow     : hidden;
}
.ph-inner {
  display              : grid;
  grid-template-columns: 1fr auto;
  align-items          : flex-end;
  padding              : 72px 0 60px;
  position             : relative;
  gap                  : 32px;
}
.ph-inner > * { position: relative; z-index: 1; }
.ph-deco-text {
  position      : absolute;
  right         : 0;
  bottom        : -8px;
  font-family   : var(--font-serif);
  font-size     : clamp(5rem, 13vw, 10.5rem);
  font-weight   : 700;
  color         : rgba(8,8,8,0.055);
  line-height   : 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select   : none;
  z-index       : 0;
}
.ph-gold-line {
  width     : 44px;
  height    : 2px;
  background: var(--gold);
  margin    : 18px 0;
}
.ph-stats {
  display      : flex;
  gap          : 28px;
  align-items  : flex-end;
  padding-bottom: 6px;
  flex-shrink  : 0;
}
.ph-stat     { text-align: right; }
.ph-stat-num {
  font-family: var(--font-serif);
  font-size  : 2rem;
  font-weight: 600;
  color      : var(--text-dark);
  line-height: 1;
  display    : block;
}
.ph-stat-lbl {
  font-size     : 0.58rem;
  font-weight   : 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color         : var(--text-muted);
  margin-top    : 5px;
  display       : block;
}

/* ─── SHOP EDITORIAL BAR ─────────────────────────────────── */
.shop-editorial-bar { background: var(--black); padding: 11px 0; }
.editorial-bar-inner {
  display        : flex;
  align-items    : center;
  gap            : 22px;
  white-space    : nowrap;
  overflow-x     : auto;
  scrollbar-width: none;
  font-size      : 0.58rem;
  font-weight    : 600;
  letter-spacing : 0.22em;
  text-transform : uppercase;
  color          : rgba(255,255,255,0.45);
}
.editorial-bar-inner::-webkit-scrollbar { display: none; }
.editorial-dot { color: var(--gold); }

/* ─── FILTER BAR ─────────────────────────────────────────── */
.filter-bar {
  display                 : flex;
  align-items             : center;
  justify-content         : space-between;
  padding                 : 16px var(--pad);
  border-bottom           : 1px solid var(--border-lt);
  margin-bottom           : 52px;
  gap                     : 20px;
  position                : sticky;
  top                     : var(--nav-h);
  z-index                 : 100;
  background              : rgba(255,255,255,0.96);
  backdrop-filter         : blur(12px);
  -webkit-backdrop-filter : blur(12px);
  margin-left             : calc(-1 * var(--pad));
  margin-right            : calc(-1 * var(--pad));
}
.mobile-shop-controls {
  display: none;
  width: 100%;
  min-width: 0;
  align-items: center;
  gap: 12px;
}
.filter-groups { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label  {
  font-size     : 0.65rem;
  font-weight   : 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color         : var(--text-muted);
  margin-right  : 4px;
  white-space   : nowrap;
}
.filter-chip {
  padding       : 7px 16px;
  font-size     : 0.67rem;
  font-weight   : 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border        : 1px solid var(--border);
  background    : var(--white);
  color         : var(--text-dark);
  cursor        : pointer;
  border-radius : 100px;
  transition    : background 0.18s, color 0.18s, border-color 0.18s;
  white-space   : nowrap;
}
.filter-chip:hover     { background: var(--bg-cream); }
.filter-chip.is-active {
  background  : var(--black);
  color       : var(--white);
  border-color: var(--black);
}
.sort-wrapper { display: flex; align-items: center; gap: 10px; }
.sort-label   {
  font-size     : 0.65rem;
  font-weight   : 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color         : var(--text-muted);
  white-space   : nowrap;
}
.sort-select {
  padding            : 8px 36px 8px 12px;
  border             : 1px solid var(--border);
  background         : var(--white);
  font-size          : 0.8rem;
  color              : var(--text-dark);
  outline            : none;
  appearance         : none;
  cursor             : pointer;
  border-radius      : 6px;
  background-image   : url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat  : no-repeat;
  background-position: right 12px center;
}
.mobile-sort-box {
  display: none;
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.mobile-sort-box .sort-select {
  width: 100%;
  max-width: none;
  min-width: 0;
}

/* ─── VIEW TOGGLE ────────────────────────────────────────── */
.view-toggle { display: flex; gap: 3px; }
.view-btn {
  width          : 30px;
  height         : 30px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  border         : 1px solid var(--border-lt);
  background     : var(--white);
  cursor         : pointer;
  color          : var(--text-muted);
  transition     : all 0.15s;
}
.view-btn.is-active { background: var(--black); color: var(--white); border-color: var(--black); }
.view-btn svg { width: 13px; height: 13px; }

/* ─── SHOP LAYOUT ────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 52px; align-items: start; }

/* ─── SIDEBAR ────────────────────────────────────────────── */
.sidebar-sticky {
  position: sticky;
  top     : calc(var(--nav-h) + 72px);
}
.sidebar-section { margin-bottom: 32px; }
.sidebar-title {
  font-size     : 0.65rem;
  font-weight   : 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color         : var(--text-dark);
  margin-bottom : 16px;
  padding-bottom: 10px;
  border-bottom : 1px solid var(--border-lt);
}
.sidebar-options { display: flex; flex-direction: column; gap: 10px; }
.sidebar-option  { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.sidebar-check {
  width          : 16px;
  height         : 16px;
  border         : 1.5px solid var(--border);
  background     : var(--white);
  flex-shrink    : 0;
  display        : flex;
  align-items    : center;
  justify-content: center;
  transition     : background 0.15s, border-color 0.15s;
}
.sidebar-check.is-checked { background: var(--black); border-color: var(--black); }
.sidebar-check.is-checked::after {
  content      : '';
  width        : 8px;
  height       : 5px;
  border-left  : 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform    : rotate(-45deg) translateY(-1px);
  display      : block;
}
.sidebar-option-text  { font-size: 0.85rem; color: var(--text-body); line-height: 1; }
.sidebar-option-count { font-size: 0.73rem; color: var(--text-faint); margin-left: auto; }

/* ─── PREMIUM PRICE RANGE SLIDER ────────────────────────── */
.price-slider-container {
  position: relative;
  height: 40px;
  width: 100%;
  padding-top: 15px;
}

.price-slider-track {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--border-lt);
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.price-slider-container input[type="range"] {
  position: absolute;
  width: 100%;
  height: 2px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.price-slider-container input[type="range"]::-webkit-slider-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-slider-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.price-slider-container input[type="range"]::-moz-range-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  pointer-events: auto;
  -moz-appearance: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-range-info {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.price-min-val, .price-max-val {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

.price-sep {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin: 0 4px;
}

/* ─── CIRCULAR COLOR SWATCHES ────────────────────────────── */
.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.colour-swatch {
  width        : 26px;
  height       : 26px;
  border-radius: 50%;
  border       : 2px solid transparent;
  cursor       : pointer;
  transition   : transform 0.15s;
}
.colour-swatch:hover { transform: scale(1.1); }
.colour-swatch.is-selected {
  border-color: var(--black);
  box-shadow  : 0 0 0 2px var(--white), 0 0 0 3.5px var(--black);
}

/* ─── SIZE BUTTONS ───────────────────────────────────────── */
.size-buttons { display: flex; gap: 6px; flex-wrap: wrap; }
.size-btn {
  padding       : 5px 12px;
  font-size     : 0.68rem;
  font-weight   : 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border        : 1px solid var(--border);
  background    : var(--white);
  color         : var(--text-body);
  cursor        : pointer;
  font-family   : var(--font-sans);
  transition    : background 0.15s, color 0.15s, border-color 0.15s;
}
.size-btn:hover     { background: var(--bg-cream); border-color: var(--border); }
.size-btn.is-active { background: var(--black); color: var(--white); border-color: var(--black); }
.sidebar-empty { font-size: 0.78rem; color: var(--text-faint); }

/* ─── PRODUCT GRID ───────────────────────────────────────── */
.product-grid-3 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
.product-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }

.results-bar {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  margin-bottom  : 24px;
}
.results-count        { font-size: 0.82rem; color: var(--text-muted); }
.results-count strong { color: var(--text-dark); font-weight: 600; }

/* ─── PAGINATION ─────────────────────────────────────────── */
.pagination {
  display        : flex;
  align-items    : center;
  justify-content: center;
  gap            : 6px;
  margin-top     : 72px;
  padding-top    : 48px;
  border-top     : 1px solid var(--border-lt);
}
.pg-btn {
  width          : 40px;
  height         : 40px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  border         : 1px solid var(--border-lt);
  background     : var(--white);
  font-size      : 0.8rem;
  color          : var(--text-dark);
  cursor         : pointer;
  font-family    : var(--font-sans);
  border-radius  : 50%;
  transition     : all 0.15s;
}
.pg-btn:hover:not(.is-active) { background: var(--bg-cream); border-color: var(--border); }
.pg-btn.is-active  { background: var(--black); color: var(--white); border-color: var(--black); font-weight: 600; }
.pg-btn.pg-arrow   { font-size: 1rem; color: var(--text-muted); border-color: var(--border); }
.pg-btn.pg-arrow:hover { background: var(--bg-cream); color: var(--text-dark); }

/* ═══════════════════════════════════════════════════════════
   MOBILE FILTER DRAWER
   ═══════════════════════════════════════════════════════════ */

/* Mobile filter toggle button */
.filter-toggle-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  margin-top: 24px;
  margin-bottom: 16px;
}

.filter-toggle-mobile svg {
  width: 16px;
  height: 16px;
}

/* Mobile filter overlay */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.filter-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Mobile filter panel */
.filter-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 24px;
  padding-top: 60px;
}

.filter-panel.is-active {
  transform: translateX(0);
}

.filter-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-lt);
}

.filter-panel-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.filter-panel-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 4px;
}

.filter-panel .sidebar-section {
  margin-bottom: 24px;
}

.filter-panel .sidebar-title {
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.filter-panel .sidebar-options {
  gap: 8px;
}

.filter-panel .price-range-inputs {
  margin-top: 4px;
}

.filter-panel .color-swatches {
  gap: 6px;
}

.filter-panel .colour-swatch {
  width: 28px;
  height: 28px;
}

.filter-panel .filter-chip {
  padding: 6px 12px;
  font-size: 0.65rem;
}

.filter-panel-apply {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE STYLES - TABLET (max-width: 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Page Header */
  .ph-inner {
    grid-template-columns: 1fr;
    padding: 48px 0 40px;
    gap: 24px;
  }

  .ph-title {
    font-size: 2.25rem;
  }

  .ph-stats {
    justify-content: flex-start;
    gap: 24px;
  }

  .ph-stat-num {
    font-size: 1.6rem;
  }

  .ph-deco-text {
    font-size: clamp(3.5rem, 18vw, 7rem);
  }

  /* Filter Bar */
  .filter-bar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px var(--pad);
    margin-bottom: 32px;
  }

  .mobile-shop-controls {
    display: flex;
  }

  .filter-groups,
  .sort-wrapper-desktop {
    display: none;
  }

  .filter-toggle-mobile {
    display: inline-flex;
    width: 52px;
    min-width: 52px;
    height: 48px;
    padding: 0;
    margin: 0;
  }

  .mobile-sort-box {
    display: block;
    overflow: hidden;
    flex: 1 1 0;
    width: 0;
    max-width: calc(100% - 64px);
  }

  .mobile-sort-box .sort-select {
    display: block;
    height: 48px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: 34px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-sort-box .sort-select option {
    white-space: normal;
  }

  /* Shop Layout */
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Sidebar - hide on tablet, show filter button */
  .sidebar-sticky {
    display: none;
  }
  /* Product Grid */
  .product-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 14px;
  }

  .product-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }

  /* Featured Card */
  .product-card.is-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .product-card.is-featured .product-img-wrap {
    min-height: 300px;
  }

  .product-card.is-featured .product-data {
    padding: 24px;
    border-left: none;
    border-top: 1px solid var(--border-lt);
  }

  /* Results Bar */
  .results-bar {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Pagination */
  .pagination {
    margin-top: 48px;
    padding-top: 32px;
  }

  .pg-btn {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .product-card--mobile-hidden {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE STYLES - MOBILE (max-width: 640px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Tighten container side padding on mobile */
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Fix filter bar negative margins to match new container padding */
  .filter-bar {
    margin-left: -12px;
    margin-right: -12px;
  }

  /* Page Header */
  .page-header {
    margin-bottom: 24px;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--white) 100%);
  }

  .ph-inner {
    padding: 36px 0 32px;
    position: relative;
    overflow: hidden;
  }

  .ph-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(184,147,90,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .ph-crumb {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

  .ph-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .ph-gold-line {
    width: 32px;
    height: 2px;
    margin: 14px 0;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  }

  .ph-desc {
    font-size: 0.85rem;
    margin-top: 10px;
    line-height: 1.6;
  }

  .ph-stats {
    gap: 20px;
    padding: 16px 0;
    background: rgba(184,147,90,0.05);
    border-radius: 8px;
    margin-top: 8px;
  }

  .ph-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .ph-stat-lbl {
    font-size: 0.52rem;
  }

  /* Editorial Bar */
  .shop-editorial-bar {
    padding: 10px 0;
    background: linear-gradient(90deg, var(--black) 0%, #1a1a1a 100%);
  }

  .editorial-bar-inner {
    font-size: 0.52rem;
    gap: 16px;
  }

  /* Filter Bar */
  .filter-bar {
    padding: 10px 12px;
    margin-bottom: 16px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-top: 8px;
  }

  .filter-label {
    display: none;
  }

  .filter-chip {
    padding: 8px 14px;
    font-size: 0.6rem;
    border-radius: 20px;
  }

  .sort-label {
    display: none;
  }

  /* Product Grid */
  .product-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
  }

  .product-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
  }

  /* Product Card */
  .product-card {
    background: var(--white);
    border: 1px solid var(--border-lt);
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .product-card:active {
    transform: scale(0.98);
  }

  .product-img-wrap {
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
  }

  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .product-card:hover .product-img-wrap img {
    transform: scale(1.05);
  }

  .product-badge {
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 0.48rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    border-radius: 0;
  }

  .badge-sale {
    background: #c75b5b;
    color: var(--white);
  }

  .product-wish-btn {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .product-wish-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.5;
  }

  .product-wish-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
  }

  .product-wish-btn:hover svg {
    fill: var(--white);
  }

  /* Product quick-add: always visible on mobile */
  .product-quick-add {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(8, 8, 8, 0.85);
    color: var(--white);
    transform: translateY(0);
    backdrop-filter: blur(4px);
    border: none;
  }

  .product-data {
    padding: 12px;
  }

  .product-label {
    font-size: 0.5rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .product-name {
    font-size: 0.88rem;
  }

  .price-now {
    font-size: 0.85rem;
    font-weight: 700;
  }

  .price-was {
    font-size: 0.75rem;
  }

  .price-save {
    font-size: 0.68rem;
  }

  /* Results */
  .results-count {
    font-size: 0.75rem;
    width: 100%;
  }

  .view-toggle {
    display: none;
  }

  /* Pagination */
  .pagination {
    margin-top: 36px;
    padding-top: 24px;
    gap: 4px;
  }

  .pg-btn {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .pg-btn.pg-arrow {
    display: none;
  }

  /* Product quick-add: always visible on mobile */
  .product-quick-add {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    font-size: 0.6rem;
    transform: translateY(0);
  }

  /* Enhanced badge styles */
  .product-badge {
    font-size: 0.55rem;
    padding: 5px 10px;
    border-radius: 4px;
  }

  .badge-new {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  }

  .badge-sale {
    background: linear-gradient(135deg, #b83232 0%, #8b2525 100%);
  }

  .badge-limited {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  }

  /* Footer Enhancement */
  .site-footer {
    margin-top: 80px;
    padding: 0 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE TOUCH SUPPORT - Show quick-add by default on touch devices
   ═══════════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .product-quick-add {
    transform: translateY(0);
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-grid-3 {
    gap: 6px;
    padding: 0;
  }

  .product-grid-2 {
    gap: 6px;
    padding: 0;
  }

  .filter-bar {
    padding: 10px 12px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .page-header {
    position: relative;
    overflow: hidden;
  }

  .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184,147,90,0.08) 0%, transparent 50%);
    pointer-events: none;
  }

  .ph-inner {
    position: relative;
  }

  /* Enhanced product card animations */
  .product-card {
    opacity: 0;
    transform: translateY(15px);
    animation: cardFadeUpMobile 0.5s ease forwards;
  }

  @keyframes cardFadeUpMobile {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .product-card:nth-child(1) { animation-delay: 0.05s; }
  .product-card:nth-child(2) { animation-delay: 0.1s; }
  .product-card:nth-child(3) { animation-delay: 0.15s; }
  .product-card:nth-child(4) { animation-delay: 0.2s; }
  .product-card:nth-child(5) { animation-delay: 0.25s; }
  .product-card:nth-child(6) { animation-delay: 0.3s; }
  .product-card:nth-child(7) { animation-delay: 0.35s; }
  .product-card:nth-child(8) { animation-delay: 0.4s; }
  .product-card:nth-child(9) { animation-delay: 0.45s; }
  .product-card:nth-child(10) { animation-delay: 0.5s; }
  .product-card:nth-child(11) { animation-delay: 0.55s; }
  .product-card:nth-child(12) { animation-delay: 0.6s; }

  /* Better touch targets */
  .filter-chip,
  .view-btn,
  .pg-btn {
    min-height: 40px;
    min-width: 40px;
  }

  /* Enhanced editorial bar */
  .editorial-bar-inner {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
  }

  /* Smooth scroll behavior */
  html {
    scroll-behavior: smooth;
  }

  /* Better visual hierarchy */
  .product-name {
    font-size: 1rem;
    font-weight: 600;
  }

  .product-label {
    font-size: 0.65rem;
    color: var(--gold);
  }

  /* Enhanced pagination */
  .pagination {
    gap: 8px;
  }

  /* Mobile cart/wishlist buttons enhancement */
  .nav-icon-btn {
    padding: 8px;
  }

  .nav-icon-btn svg {
    width: 22px;
    height: 22px;
  }

  /* Better footer on mobile */
  .site-footer {
    margin-top: 80px;
  }

  .foot-logo {
    font-size: 1.5rem;
  }
}
