/* ═══════════════════════════════════════════════════════════════
   DULHAN FAMILY — Shop Page Styles (exclusive.html + sarees.html)
   ═══════════════════════════════════════════════════════════════ */

/* ── Shop Hero Banner ── */
.shop-hero-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
}
.shop-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,0,0.88) 0%, rgba(26,10,0,0.4) 50%, rgba(26,10,0,0.2) 100%);
}
.shop-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
}
.shop-hero-text { }
.shop-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--ivory);
  margin: 0.4rem 0 0.5rem;
  line-height: 1.1;
}
.shop-hero-title em { color: var(--gold-light); }
.shop-hero-sub {
  font-size: 0.84rem;
  color: rgba(250,244,228,0.65);
  letter-spacing: 0.04em;
}

/* ── Category Quick Nav ── */
.cat-quick-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--total-nav-h);
  z-index: 500;
}
.cat-quick-inner {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-quick-inner::before,
.cat-quick-inner::after {
  content: '';
  flex: 0 0 max(1.5rem, calc((100vw - 1440px) / 2 + 1.5rem));
}
.cat-quick-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--txt-2);
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--t-fast);
  flex-shrink: 0;
}
.cat-pill:hover { color: var(--maroon); border-color: var(--maroon); }
.cat-pill.active {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
  box-shadow: var(--shadow-brand);
}

/* ── Shop Layout ── */
.shop-body-wrap { padding: 2.5rem 0 5rem; }
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ── Filter Sidebar (desktop) ── */
.filter-sidebar-desktop {
  position: sticky;
  top: calc(var(--total-nav-h) + 60px);
  max-height: calc(100vh - var(--total-nav-h) - 80px);
  overflow-y: auto;
}
.filter-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.filter-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  background: var(--ivory-2);
}
.filter-panel-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.filter-clear-btn {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--maroon);
  cursor: pointer;
  transition: var(--t-fast);
  text-decoration: underline;
}
.filter-section {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.filter-section:last-child { border-bottom: none; }
.filter-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-4);
  margin-bottom: 0.8rem;
}
.filter-options { display: flex; flex-direction: column; gap: 0.4rem; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--txt-2);
  transition: var(--t-fast);
}
.filter-option:hover { color: var(--maroon); }
.filter-option input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--maroon);
  cursor: pointer;
}
.filter-price-range {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.price-slider {
  width: 100%;
  accent-color: var(--maroon);
}
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--txt-4);
}

/* ── Shop Toolbar ── */
.shop-main-area { min-width: 0; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.shop-results-info {
  font-size: 0.82rem;
  color: var(--txt-4);
}
.shop-results-info strong { color: var(--maroon); }
.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sort-select {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--txt-2);
  font-size: 0.8rem;
  cursor: pointer;
  outline: none;
  transition: var(--t-fast);
}
.sort-select:focus { border-color: var(--maroon); }
.view-toggle {
  display: flex;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.view-btn {
  padding: 0.5rem 0.8rem;
  color: var(--txt-4);
  transition: var(--t-fast);
  display: flex; align-items: center;
}
.view-btn:first-child {
  border-right: 1.5px solid var(--border-2);
}
.view-btn.active { background: var(--maroon); color: #fff; }
.view-btn:hover:not(.active) { background: var(--surface-2); }

/* Load more */
.load-more-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* No results */
.no-results {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--txt-4);
}

/* ── List view overrides ── */
.product-grid-list .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.product-grid-list .product-img-wrap {
  height: 260px;
  aspect-ratio: unset;
}
.product-grid-list .product-body {
  padding: 1.5rem;
}
.product-grid-list .product-name {
  font-size: 1.1rem;
  -webkit-line-clamp: unset;
}
.product-grid-list .product-quick-add { display: none !important; }

/* ── Sarees page accent ── */
.sarees-hero-banner .shop-hero-overlay {
  background: linear-gradient(to top, rgba(26,10,0,0.9) 0%, rgba(60,30,0,0.4) 50%, transparent 100%);
}

/* ── Active filters chips ── */
.active-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: var(--brand-light);
  color: var(--maroon);
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 500;
}
.active-filter-chip button {
  color: var(--maroon);
  font-size: 0.85rem;
  line-height: 1;
  transition: var(--t-fast);
}
.active-filter-chip button:hover { color: var(--maroon-deep); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar-desktop { display: none; }
  .shop-hero-banner { height: 240px; }
  .shop-hero-overlay {
    background: linear-gradient(to top, rgba(26,10,0,0.95) 0%, rgba(26,10,0,0.75) 40%, rgba(26,10,0,0.55) 100%);
  }
  .shop-hero-bg img {
    object-position: center center;
  }
}
@media (max-width: 600px) {
  .product-grid-3 { grid-template-columns: 1fr 1fr !important; }
  .product-grid-list .product-card { grid-template-columns: 1fr; }
  .product-grid-list .product-img-wrap { height: auto; aspect-ratio: 3/4; }
  .shop-hero-title { font-size: 1.8rem; }
  .shop-hero-overlay {
    background: linear-gradient(to top, rgba(26,10,0,0.97) 0%, rgba(26,10,0,0.85) 40%, rgba(26,10,0,0.65) 100%);
  }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM ETHNIC fashion CARD & QUICK VIEW ADVANCED STYLING
   ═══════════════════════════════════════════════════════════════ */

/* Enhanced Card Badges */
.badge-brand { background: var(--maroon); color: var(--ivory); }
.badge-heritage { background: var(--gold-deep); color: var(--ivory); }
.badge-new { background: #1b5e20; color: var(--ivory); }
.badge-sale { background: #b71c1c; color: var(--ivory); }
.badge-gold { background: var(--gold); color: var(--ink); font-weight: 700; }
.badge-outline { background: transparent; color: var(--maroon); border: 1px solid var(--maroon); }

/* Card Stock Indicator */
.card-stock-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  z-index: 10;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}
.card-stock-badge.low-stock {
  background: rgba(255, 152, 0, 0.95);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,152,0,0.3);
}
.card-stock-badge.out-of-stock {
  background: rgba(244, 67, 54, 0.95);
  color: #fff;
  box-shadow: 0 2px 8px rgba(244,67,54,0.3);
}

/* Card Color Swatches */
.card-swatches {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.35rem;
  align-items: center;
  min-height: 12px;
}
.card-swatch-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-swatch-dot:hover {
  transform: scale(1.4);
}

/* Hover Zoom & Elevation */
.product-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s;
  background: var(--surface);
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(92, 26, 26, 0.08);
  border-color: rgba(201, 144, 42, 0.35);
}

/* Quick Action WhatsApp Button on Hover */
.product-img-wrap .product-whatsapp-quick {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background-color 0.2s;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
  z-index: 20;
  border: none;
  cursor: pointer;
}
.product-card:hover .product-whatsapp-quick {
  opacity: 1;
  transform: translateY(0);
}
.product-img-wrap .product-whatsapp-quick:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: scale(1.1);
}
.product-img-wrap .product-whatsapp-quick svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Quick View Modal Premium Layout */
#quick-view-modal .modal-box {
  max-width: 960px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(26,10,0,0.25);
  background: var(--surface);
}

/* Modal Image Gallery Container */
.qv-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.qv-main-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  position: relative;
}
.qv-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease-out;
}
.qv-thumb-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}
.qv-thumb-strip::-webkit-scrollbar {
  height: 4px;
}
.qv-thumb-strip::-webkit-scrollbar-thumb {
  background: var(--border-2);
  border-radius: var(--r-pill);
}
.qv-thumb {
  width: 65px;
  height: 85px;
  object-fit: cover;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
  background: var(--surface-2);
}
.qv-thumb:hover {
  transform: scale(1.04);
}
.qv-thumb.active {
  border-color: var(--maroon);
  box-shadow: 0 2px 8px rgba(92,26,26,0.15);
}

/* Modal Right Column Details */
.qv-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-left: 0.25rem;
}
.qv-title-row {
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 0.85rem;
}
.qv-spec-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 1.8rem;
  font-size: 0.82rem;
  line-height: 1.6;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 0.85rem 0;
}
.qv-spec-label {
  font-weight: 700;
  color: var(--txt-4);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.qv-spec-value {
  color: var(--ink);
}

/* Custom Selectors */
.qv-selector-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-4);
  margin-bottom: 0.5rem;
}

.qv-sizes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.qv-size-btn {
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--surface);
  color: var(--txt-2);
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.qv-size-btn:hover {
  border-color: var(--maroon);
  color: var(--maroon);
  background: var(--brand-light);
}
.qv-size-btn.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--ivory);
  box-shadow: 0 4px 12px rgba(92,26,26,0.2);
}

.qv-colors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.qv-color-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border-2);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.qv-color-btn:hover {
  transform: scale(1.15);
}
.qv-color-btn.active {
  outline: 3px solid var(--maroon);
  outline-offset: 1.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Quantity Row */
.qv-qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.4rem;
}
.qv-qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-pill);
  overflow: hidden;
  background: var(--surface);
}
.qv-qty-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--txt-2);
  cursor: pointer;
  transition: background-color 0.2s;
  background: none;
  border: none;
}
.qv-qty-btn:hover {
  background: var(--brand-light);
  color: var(--maroon);
}
.qv-qty-num {
  width: 38px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

/* Action Buttons inside Quick View Modal */
.qv-actions-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-top: 0.8rem;
}
.qv-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  text-decoration: none;
}
.qv-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.qv-btn-wishlist {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-2);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface);
}
.qv-btn-wishlist:hover {
  border-color: var(--maroon);
  color: var(--maroon);
  background: var(--brand-light);
  transform: scale(1.05);
}
.qv-btn-wishlist.wished {
  background: var(--brand-light);
  color: var(--maroon);
  border-color: var(--maroon);
}
.qv-btn-wishlist.wished svg {
  fill: var(--maroon);
  stroke: none;
}

/* Related Products Strip */
.qv-related-section {
  margin-top: 2.2rem;
  border-top: 1px solid var(--border-2);
  padding-top: 1.6rem;
}
.qv-related-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.qv-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.qv-related-grid .product-card {
  border-radius: var(--r-md);
  box-shadow: none;
}
.qv-related-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.qv-related-grid .product-name {
  font-size: 0.82rem;
}
.qv-related-grid .product-img-wrap {
  aspect-ratio: 3/4;
}

/* Category count badge style */
.cat-pill .cat-count {
  margin-left: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.05);
  color: var(--txt-3);
  padding: 0.1rem 0.35rem;
  border-radius: var(--r-pill);
  transition: all 0.2s;
}
.cat-pill.active .cat-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--ivory);
}

/* Grid Animations */
@keyframes fadeInUpStagger {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-card.animate-fade-in {
  animation: fadeInUpStagger 0.45s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

/* Custom responsive layout overrides */
@media (max-width: 768px) {
  .qv-actions-row {
    grid-template-columns: 1fr;
  }
  .qv-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qv-btn-wishlist {
    width: 100%;
    border-radius: var(--r-pill);
    gap: 0.5rem;
  }
}

/* ═══════════════════════════════════
   MOBILE FILTER BUTTON (shown below 900px)
   ═══════════════════════════════════ */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: var(--maroon);
  color: var(--ivory);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-brand);
}
@media (max-width: 900px) {
  .mobile-filter-btn { display: flex; }
}

/* Mobile filter drawer */
.mobile-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 960;
  background: rgba(26,10,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.mobile-filter-drawer.open { opacity: 1; visibility: visible; }
.mobile-filter-panel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  max-height: 82vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.38s var(--ease-out);
  box-shadow: 0 -8px 40px rgba(26,10,0,0.18);
  padding: 1.5rem 1.5rem 2.5rem;
}
.mobile-filter-drawer.open .mobile-filter-panel {
  transform: translateY(0);
}
.mobile-filter-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.mobile-filter-panel-header strong {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--ink);
}
.mobile-filter-close {
  font-size: 1.4rem;
  color: var(--txt-4);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.2rem;
}
.mobile-filter-apply {
  display: block;
  width: 100%;
  padding: 0.85rem;
  margin-top: 1.5rem;
  background: var(--maroon);
  color: var(--ivory);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: var(--shadow-brand);
}

/* Quick view modal on mobile */
@media (max-width: 768px) {
  #quick-view-modal .modal-box {
    max-width: 100%;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    max-height: 90vh;
  }
  .qv-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qv-main-img-wrap {
    aspect-ratio: 4/5;
  }
}

@media (max-width: 480px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .shop-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
  .sort-select {
    flex: 1;
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
  }
  .product-grid-3 {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem;
  }
  .shop-hero-banner {
    height: 200px;
  }
  .shop-hero-overlay {
    background: rgba(26,10,0,0.88);
  }
  .shop-hero-title {
    font-size: 1.6rem !important;
  }
  .shop-hero-sub {
    font-size: 0.72rem;
  }
  .cat-quick-inner {
    padding: 0.6rem 0;
    gap: 0.4rem;
  }
  .cat-pill {
    padding: 0.38rem 0.85rem;
    font-size: 0.72rem;
  }
  .product-grid-list .product-card {
    grid-template-columns: 120px 1fr;
  }
  .product-grid-list .product-img-wrap {
    height: 160px;
  }
}
