/* ==========================================================================
   RETAILDOKAN - SHOP / CATEGORY PAGE STYLES (shop.css - Enhanced Final)
   Matches exact layout, colors, typography, and aesthetics of RetailDokan
   ========================================================================== */

/* 1. Page Container Overrides */
.container.shop-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* 2. Breadcrumbs */
.shop-breadcrumb {
  padding: 16px 0 14px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.shop-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.shop-breadcrumb a:hover {
  color: var(--primary-red);
}

.shop-breadcrumb .separator {
  margin: 0 10px;
  color: #D1D5DB;
}

.shop-breadcrumb .current {
  color: var(--text-main);
  font-weight: 600;
}

/* 3. Hero Category Banner */
.category-hero-banner {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFF8F6 50%, #FDF2F4 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #FFE4E6;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  min-height: 240px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.04);
}

.category-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  width: 100%;
  padding: 30px 44px;
  gap: 24px;
}

.hero-text-col {
  z-index: 2;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 46, 45, 0.08);
  color: var(--primary-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.hero-main-title {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 14.5px;
  color: #4B5563;
  margin-bottom: 22px;
  font-weight: 500;
  max-width: 580px;
  line-height: 1.5;
}

.hero-perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-perk-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.hero-perk-pill svg {
  color: var(--primary-red);
  flex-shrink: 0;
}

.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.hero-banner-image {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
}

.hero-script-tag {
  position: absolute;
  top: 10px;
  right: 15px;
  text-align: right;
  font-family: 'Caveat', cursive, sans-serif;
  color: #1F2937;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  transform: rotate(-3deg);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-script-tag .heart {
  color: #F43F5E;
  display: inline-block;
  animation: pulseHeart 1.5s infinite;
}

@keyframes pulseHeart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* 4. Main Shop Layout (Two Columns) */
.shop-layout-container {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 50px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* 5. Left Sidebar Filters */
.shop-sidebar {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.filter-section {
  border-bottom: 1px solid #F3F4F6;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

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

.filter-heading {
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Category List */
.category-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-filter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
  font-size: 13px;
  color: #4B5563;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
  margin-bottom: 2px;
}

.category-filter-item:hover {
  background: #F9FAFB;
  color: var(--primary-red);
}

.category-filter-item.active {
  background: #FEF2F2;
  color: var(--primary-red);
  font-weight: 700;
}

.category-filter-item .count {
  font-size: 11.5px;
  color: #9CA3AF;
  font-weight: 500;
}

.category-filter-item.active .count {
  color: var(--primary-red);
  font-weight: 700;
}

/* Price Range Slider */
.price-slider-wrap {
  margin-top: 8px;
}

.range-slider-track {
  position: relative;
  height: 5px;
  background: #E5E7EB;
  border-radius: 4px;
  margin: 16px 4px 18px;
}

.range-slider-progress {
  position: absolute;
  left: 0%;
  right: 0%;
  height: 100%;
  background: var(--primary-red);
  border-radius: 4px;
}

.range-slider-inputs {
  position: relative;
}

.range-slider-inputs input[type="range"] {
  position: absolute;
  top: -21px;
  left: 0;
  width: 100%;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  height: 5px;
}

.range-slider-inputs input[type="range"]::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--primary-red);
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.price-inputs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.price-input-box {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: #1F2937;
  font-weight: 600;
  background: #FFFFFF;
  text-align: center;
}

.price-separator {
  color: #9CA3AF;
  font-size: 14px;
}

.btn-price-apply {
  background: var(--primary-red);
  color: #FFFFFF;
  width: 100%;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 12.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-price-apply:hover {
  background: var(--primary-red-hover);
}

/* Custom Styled Checkboxes */
.checkbox-filter-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #4B5563;
  cursor: pointer;
  user-select: none;
}

.checkbox-label:hover {
  color: #111827;
}

.checkbox-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #D1D5DB;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: all 0.2s ease;
  background: #FFFFFF;
  flex-shrink: 0;
}

.custom-checkbox:checked {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

.custom-checkbox:checked::before {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg) translate(1px, -1px);
}

.checkbox-label .count {
  font-size: 11.5px;
  color: #9CA3AF;
}

/* Color Swatches Grid */
.color-swatches-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: center;
}

.color-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  transition: all 0.2s ease;
  padding: 0;
}

.color-dot:hover, .color-dot.active {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px var(--primary-red);
}

.color-dot.white {
  border: 1px solid #D1D5DB;
}

.color-more-link {
  grid-column: span 2;
  font-size: 11.5px;
  color: #6B7280;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: color 0.15s;
}

.color-more-link:hover {
  color: var(--primary-red);
}

/* Rating Stars Row */
.rating-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-stars-row .stars {
  display: flex;
  gap: 2px;
}

.rating-text {
  font-size: 12px;
  color: #4B5563;
  margin-left: 4px;
}

.btn-clear-all-filters {
  display: inline-block;
  margin-top: 10px;
  font-size: 12.5px;
  color: #6B7280;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.15s;
}

.btn-clear-all-filters:hover {
  color: var(--primary-red);
}

/* 6. Right Content Area (Products Grid & Controls) */
.shop-main-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Top Controls Bar */
.shop-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 16px;
}

.shop-category-heading {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.4px;
}

.shop-category-heading .product-count {
  font-size: 12px;
  font-weight: 700;
  color: #6B7280;
  background: #F3F4F6;
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 0;
}

.shop-controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-sort-select {
  height: 38px;
  padding: 0 38px 0 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.shop-sort-select:hover {
  border-color: #D1D5DB;
  background-color: #F9FAFB;
}

.shop-sort-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(229, 46, 45, 0.12);
}

/* 7. Brand Quick Filter Pills (Modern Horizontal Pill Chips) */
.brand-pills-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 14px 2px;
  margin-bottom: 22px;
  scrollbar-width: thin;
  scrollbar-color: #E5E7EB transparent;
}

.brand-pills-bar::-webkit-scrollbar {
  height: 5px;
}

.brand-pills-bar::-webkit-scrollbar-track {
  background: transparent;
}

.brand-pills-bar::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 9999px;
}

.brand-pills-bar::-webkit-scrollbar-thumb:hover {
  background: #D1D5DB;
}

.brand-pills-bar .brand-pill {
  flex-shrink: 0;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  height: 38px !important;
  padding: 0 16px 0 12px !important;
  border-radius: 9999px !important;
  border: 1.5px solid #E5E7EB !important;
  background: #FFFFFF !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  cursor: pointer !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-align: left !important;
  white-space: nowrap !important;
}

.brand-pills-bar .brand-pill:hover {
  border-color: #D1D5DB !important;
  background: #F9FAFB !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07) !important;
  color: #111827 !important;
}

.brand-pills-bar .brand-pill.active {
  background: #FEF2F2 !important;
  border-color: var(--primary-red) !important;
  color: var(--primary-red) !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 10px rgba(229, 46, 45, 0.16) !important;
}

.brand-pills-bar .brand-pill .brand-icon {
  height: auto !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.brand-badge-emblem {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}

/* 8. 4-Column Product Grid (4 items per line) */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
  box-sizing: border-box;
}

/* Product Card - Edge-to-Edge Thumbnail */
.shop-products-grid .product-card {
  min-width: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0 12px 14px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.25s ease;
}

.shop-products-grid .product-card:hover {
  border-color: #FECDD3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.shop-products-grid .badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  z-index: 3;
}

.shop-products-grid .badge-discount.badge-new {
  background: #10B981;
}

.shop-products-grid .btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  z-index: 3;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.shop-products-grid .btn-wishlist:hover,
.shop-products-grid .btn-wishlist.active {
  color: var(--primary-red);
}

.shop-products-grid .product-thumb {
  width: calc(100% + 24px);
  margin: 0 -12px 12px -12px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #F8F9FA;
  cursor: pointer;
}

.shop-products-grid .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.shop-products-grid .product-card:hover .product-thumb img {
  transform: scale(1.05);
}

.shop-products-grid .product-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #1F2937;
  line-height: 1.35;
  margin-bottom: 6px;
  height: 34px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
  text-decoration: none;
}

.shop-products-grid .product-title:hover {
  color: var(--primary-red);
}

.shop-products-grid .product-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.shop-products-grid .price-current {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-red);
}

.shop-products-grid .price-original {
  font-size: 11.5px;
  color: var(--text-light);
  text-decoration: line-through;
}

.shop-products-grid .product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.shop-products-grid .stars {
  display: flex;
  gap: 1.5px;
}

.shop-products-grid .rating-count {
  font-size: 11px;
  color: var(--text-muted);
}

.shop-products-grid .btn-add-cart {
  background: var(--primary-red);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: auto;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.shop-products-grid .btn-add-cart:hover {
  background: var(--primary-red-hover);
}

/* 9. Custom Phone Cases Promo Banner */
.custom-cases-banner {
  background: linear-gradient(135deg, #FFF0F2 0%, #FEE8EB 40%, #FDF2F4 100%);
  border: 1px solid #FBCFE8;
  border-radius: var(--radius-lg);
  padding: 26px 36px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.custom-banner-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.custom-banner-text {
  z-index: 2;
}

.custom-banner-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.custom-banner-subtitle {
  font-size: 13.5px;
  color: #4B5563;
  margin-bottom: 18px;
  line-height: 1.45;
}

.btn-create-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-red);
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(229, 46, 45, 0.25);
}

.btn-create-custom:hover {
  background: var(--primary-red-hover);
  transform: translateX(2px);
}

.custom-banner-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-mockup-img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.custom-banner-steps {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 12px;
}

.custom-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.custom-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #FCE7F3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
}

.custom-step-item span {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}

/* 10. Pagination Controls */
.shop-pagination-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #F3F4F6;
  flex-wrap: wrap;
  gap: 14px;
}

.pagination-info {
  font-size: 13.5px;
  color: #6B7280;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-btn {
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  color: #4B5563;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.page-btn:hover:not(:disabled) {
  border-color: #D1D5DB;
  background: #F9FAFB;
}

.page-btn.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #FFFFFF;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-ellipsis {
  color: #9CA3AF;
  font-size: 13px;
  padding: 0 4px;
}

/* Mobile Filter Trigger Button */
.mobile-filter-trigger {
  display: none;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
}

/* 11. Categories Dropdown Menu */
.nav-categories-wrap {
  position: relative;
}

.categories-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  z-index: 100;
  display: none;
}

.categories-dropdown-menu.active {
  display: block;
}

.cat-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}

.cat-dropdown-item:hover {
  background: #FEF2F2;
  color: var(--primary-red);
}

.cat-dropdown-item.active {
  color: var(--primary-red);
  font-weight: 700;
}

/* 12. Responsive Breakpoints */
@media (max-width: 1050px) {
  .shop-layout-container {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
  }
  .shop-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .custom-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .custom-banner-mockup {
    order: 2;
  }
  .custom-banner-steps {
    order: 3;
  }
  .custom-banner-text {
    order: 1;
  }
}

@media (max-width: 900px) {
  .category-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-perks-row {
    justify-content: center;
  }
  .hero-visual-col {
    display: none;
  }
  .shop-layout-container {
    grid-template-columns: 1fr;
  }
  .mobile-filter-trigger {
    display: inline-flex;
  }
  /* Slide-out Drawer for Sidebar on Mobile */
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    z-index: 1000;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
  }
  .shop-sidebar.drawer-open {
    left: 0;
  }
  .drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .drawer-overlay.active {
    display: block;
  }
  .drawer-close-btn {
    display: flex !important;
    justify-content: flex-end;
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hero-main-title {
    font-size: 28px;
  }
}
