/* ============================================================
   PATEL DENTAL DEPOT — Premium Shop Page Stylesheet
   shop.css  |  Loaded AFTER style.css on shop page only
   ============================================================ */

/* ================================================================
   SHOP BANNER
   ================================================================ */
.shop-banner {
  background: linear-gradient(135deg, #0a0f1e 0%, #0F172A 55%, #0d2a26 100%);
  padding-top: 92px; /* navbar height + extra */
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
}

/* Animated blobs */
.shop-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,0.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}

.shop-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,234,212,0.1) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  pointer-events: none;
}

.shop-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.shop-banner-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.shop-banner-text h1 span {
  background: linear-gradient(135deg, #5EEAD4, #14B8A6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-banner-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.shop-banner-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(94,234,212,0.1);
  border: 1px solid rgba(94,234,212,0.2);
  color: #5EEAD4;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.shop-banner-stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.shop-banner-stat {
  text-align: center;
}

.shop-banner-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #5EEAD4;
  line-height: 1;
  display: block;
}

.shop-banner-stat .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ================================================================
   CATEGORY CHIPS ROW
   ================================================================ */
.category-chips-wrap {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}

.category-chips-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-chips-inner::-webkit-scrollbar { display: none; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  border: 1.5px solid #E2E8F0;
  background: #fff;
  color: #475569;
  flex-shrink: 0;
  outline: none;
}

.chip:hover {
  border-color: #0F766E;
  color: #0F766E;
  background: #F0FDFA;
}

.chip.active {
  background: linear-gradient(135deg, #0F766E, #14B8A6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15,118,110,0.35);
}

.chip i {
  font-size: 0.82rem;
}

.chip .chip-count {
  background: rgba(0,0,0,0.12);
  color: inherit;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 50px;
  font-weight: 700;
}

.chip.active .chip-count {
  background: rgba(255,255,255,0.25);
}

/* ================================================================
   SHOP LAYOUT (sidebar + main)
   ================================================================ */
.shop-body {
  background: #f8fafc;
  min-height: 60vh;
}

.shop-content-wrap {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 24px;
  padding: 28px 0 60px;
}

/* ================================================================
   FILTER SIDEBAR
   ================================================================ */
.shop-sidebar {
  position: sticky;
  top: 140px; /* navbar + chips bar */
  align-self: start;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
}

.sidebar-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
}

.sidebar-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-header h3 i {
  color: #0F766E;
  font-size: 0.9rem;
}

.sidebar-clear-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0F766E;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
  padding: 4px 8px;
  border-radius: 6px;
}

.sidebar-clear-btn:hover {
  color: #0d5c57;
  background: #F0FDFA;
}

/* Filter group */
.sidebar-filter-group {
  margin-bottom: 18px;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 18px;
}

.sidebar-filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-filter-label {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
  margin-bottom: 10px;
  display: block;
}

.sidebar-select {
  width: 100%;
  padding: 10px 12px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  color: #0F172A;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230F766E' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
  cursor: pointer;
}

.sidebar-select:focus {
  border-color: #0F766E;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
}

/* Price range inputs */
.price-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.price-input {
  width: 100%;
  padding: 9px 10px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  color: #0F172A;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  text-align: center;
}

.price-input:focus {
  border-color: #0F766E;
  outline: none;
  box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
}

.price-range-sep {
  font-size: 0.8rem;
  color: #94A3B8;
  text-align: center;
  font-weight: 600;
}

/* ================================================================
   SHOP MAIN (products area)
   ================================================================ */
.shop-main-area {
  min-width: 0;
}

/* Products toolbar */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #E2E8F0;
  padding: 12px 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.toolbar-search {
  position: relative;
  flex: 1;
  max-width: 320px;
}

.toolbar-search-input {
  width: 100%;
  padding: 9px 14px 9px 38px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 50px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  transition: all 0.25s ease;
}

.toolbar-search-input::placeholder { color: #94A3B8; }

.toolbar-search-input:focus {
  outline: none;
  border-color: #0F766E;
  box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
  background: #fff;
}

.toolbar-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 0.85rem;
  pointer-events: none;
}

.toolbar-results-count {
  font-size: 0.85rem;
  color: #64748B;
  white-space: nowrap;
  font-weight: 500;
}

.toolbar-results-count strong {
  color: #0F172A;
  font-weight: 700;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toolbar-sort {
  padding: 8px 14px;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230F766E' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 28px;
}

.toolbar-sort:focus {
  outline: none;
  border-color: #0F766E;
}

/* View toggle */
.view-toggle {
  display: flex;
  gap: 0;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
}

.view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
  border: none;
  cursor: pointer;
  color: #94A3B8;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.view-btn.active {
  background: #0F766E;
  color: #fff;
}

.view-btn:hover:not(.active) {
  background: #F0FDFA;
  color: #0F766E;
}

/* ================================================================
   PREMIUM PRODUCT GRID
   ================================================================ */
.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.premium-product-grid.list-view {
  grid-template-columns: 1fr;
}

/* ================================================================
   PREMIUM PRODUCT CARD
   ================================================================ */
.ppc {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid #E2E8F0;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.ppc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15,23,42,0.12);
  border-color: rgba(15,118,110,0.2);
}

/* Card image zone */
.ppc-image-zone {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #F0FDFA 0%, #F8FAFC 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ppc-image-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  mix-blend-mode: multiply;
}

.ppc:hover .ppc-image-zone img {
  transform: scale(1.07);
}

/* Badges */
.ppc-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: row; /* Horizontal row on desktop */
  gap: 6px;
  z-index: 3;
}

.ppc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%; /* Circular icon on desktop */
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.ppc-badge .badge-text {
  display: none; /* Hide text, show icon only */
}

.ppc-badge-new {
  background: #0F766E;
  color: #fff;
}

.ppc-badge-best {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff;
}

.ppc-badge-hot {
  background: #EF4444;
  color: #fff;
}

.ppc-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #EF4444;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 3;
}

/* Out of stock overlay */
.ppc-oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.ppc-oos-overlay span {
  background: #0F172A;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Wishlist button */
.ppc-wish-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  color: #CBD5E1;
  font-size: 0.85rem;
  z-index: 3;
  transition: all 0.25s ease;
  opacity: 0;
}

.ppc:hover .ppc-wish-btn {
  opacity: 1;
}

.ppc-wish-btn:hover {
  color: #EF4444;
  transform: scale(1.1);
}

/* Card body */
.ppc-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ppc-brand {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0F766E;
  margin-bottom: 6px;
}

.ppc-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ppc-name a {
  color: inherit;
  text-decoration: none;
}

.ppc-name a:hover { color: #0F766E; }

/* Stars row */
.ppc-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.ppc-stars-icons {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  font-size: 0.72rem;
}

.ppc-review-count {
  font-size: 0.72rem;
  color: #94A3B8;
  font-weight: 500;
}

/* Price row */
.ppc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.ppc-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #0F172A;
}

.ppc-mrp {
  font-size: 0.82rem;
  color: #94A3B8;
  text-decoration: line-through;
}

.ppc-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16,185,129,0.1);
  padding: 2px 8px;
  border-radius: 50px;
}

/* Add to cart button */
.ppc-actions {
  margin-top: auto;
}

.ppc-cart-btn {
  width: 100%;
  padding: 11px 16px;
  background: linear-gradient(135deg, #0F766E, #14B8A6);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(15,118,110,0.25);
}

.ppc-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,118,110,0.4);
}

.ppc-cart-btn:active {
  transform: scale(0.97);
}

.ppc-notify-btn {
  width: 100%;
  padding: 11px 16px;
  background: transparent;
  color: #0F766E;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid #0F766E;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.ppc-notify-btn:hover {
  background: #F0FDFA;
}

/* ================================================================
   LIST VIEW CARD
   ================================================================ */
.premium-product-grid.list-view .ppc {
  flex-direction: row;
  height: 160px;
}

.premium-product-grid.list-view .ppc-image-zone {
  width: 180px;
  height: 100%;
  flex-shrink: 0;
  border-radius: 0;
}

.premium-product-grid.list-view .ppc-body {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}

.premium-product-grid.list-view .ppc-info-col {
  flex: 1;
  min-width: 0;
}

.premium-product-grid.list-view .ppc-actions {
  flex-shrink: 0;
  width: 180px;
  margin-top: 0;
}

/* ================================================================
   MOBILE FILTER BUTTON + DRAWER
   ================================================================ */
.mobile-shop-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 16px;
}

.mobile-filter-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0F172A;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  flex: 1;
  justify-content: center;
}

.mobile-filter-trigger:hover {
  border-color: #0F766E;
  color: #0F766E;
}

.filter-badge-count {
  background: #0F766E;
  color: #fff;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 50px;
  font-weight: 800;
}

.mobile-sort-select {
  flex: 1;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  appearance: none;
  -webkit-appearance: none;
}

/* Filter drawer */
.filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 24px 24px 0 0;
  z-index: 1100;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -20px 60px rgba(15,23,42,0.2);
}

.filter-drawer.open {
  transform: translateY(0);
}

.filter-drawer-handle {
  width: 40px;
  height: 4px;
  background: #E2E8F0;
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 14px;
  border-bottom: 1px solid #F1F5F9;
  flex-shrink: 0;
}

.filter-drawer-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F1F5F9;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.filter-drawer-close:hover {
  background: #EF4444;
  color: #fff;
}

.filter-drawer-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.filter-drawer-footer {
  padding: 14px 20px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.drawer-apply-btn {
  flex: 1;
  padding: 14px;
  background: linear-gradient(135deg, #0F766E, #14B8A6);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.drawer-apply-btn:hover {
  box-shadow: 0 8px 24px rgba(15,118,110,0.4);
}

.drawer-clear-btn {
  padding: 14px 20px;
  background: #F1F5F9;
  color: #475569;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.drawer-clear-btn:hover {
  background: #E2E8F0;
}

/* Backdrop */
.shop-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.shop-drawer-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.shop-empty-state {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
}

.shop-empty-state i {
  font-size: 3rem;
  color: #CBD5E1;
  margin-bottom: 20px;
  display: block;
}

.shop-empty-state h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.shop-empty-state p {
  color: #64748B;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ================================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .shop-content-wrap {
    grid-template-columns: 240px 1fr;
    gap: 18px;
  }

  .premium-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-banner-stats {
    gap: 20px;
  }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================================ */
@media (max-width: 768px) {
  .shop-banner {
    padding-top: 88px;
    padding-bottom: 24px;
  }

  .shop-banner-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .shop-banner-text h1 { font-size: 1.8rem; }
  .shop-banner-text p  { font-size: 0.88rem; }

  .shop-banner-badges {
    justify-content: center;
  }

  .shop-banner-stats {
    justify-content: center;
    gap: 28px;
  }

  /* Category chips — horizontal scroll */
  .category-chips-wrap {
    top: 64px;
  }

  /* Hide desktop sidebar */
  .shop-sidebar {
    display: none;
  }

  .shop-content-wrap {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  /* Show mobile bar */
  .mobile-shop-bar {
    display: flex;
  }

  /* Products toolbar */
  .toolbar-left { gap: 8px; }
  .toolbar-search { max-width: 100%; }
  .toolbar-results-count { display: none; }
  .view-toggle { display: none; }
  .toolbar-sort { display: none; }

  .products-toolbar {
    padding: 10px 14px;
  }

  /* Product grid — 2 col on mobile */
  .premium-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ppc-image-zone { height: 160px; }
  .ppc-name { font-size: 0.82rem; }
  .ppc-price { font-size: 1rem; }
  .ppc-cart-btn { font-size: 0.78rem; padding: 9px 10px; }
  .ppc-body { padding: 12px; }

  /* List view goes back to 1 col on mobile */
  .premium-product-grid.list-view .ppc {
    flex-direction: column;
    height: auto;
  }

  .premium-product-grid.list-view .ppc-image-zone {
    width: 100%;
    height: 160px;
  }

  .premium-product-grid.list-view .ppc-body {
    flex-direction: column;
    gap: 0;
  }

  .premium-product-grid.list-view .ppc-actions {
    width: 100%;
  }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ================================================================ */
@media (max-width: 480px) {
  .premium-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ppc-image-zone { height: 140px; }
  .ppc-body { padding: 10px; gap: 0; }
  .ppc-name { font-size: 0.78rem; -webkit-line-clamp: 2; }
  .ppc-price { font-size: 0.95rem; }
  .ppc-mrp, .ppc-save { display: none; }
  .ppc-stars { display: none; }
  .ppc-cart-btn {
    font-size: 0.74rem;
    padding: 8px 8px;
    border-radius: 8px;
  }

  .shop-banner-text h1 { font-size: 1.5rem; }
  .shop-banner-stat .num { font-size: 1.5rem; }
}

/* ================================================================
   RESPONSIVE — VERY SMALL (≤360px)
   ================================================================ */
@media (max-width: 360px) {
  .premium-product-grid {
    grid-template-columns: 1fr;
  }

  .ppc-image-zone { height: 180px; }
}
