/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ═══ FALLBACK NOTICE ═══ */
.products-page-hero {
  min-height: 42vh;
  margin-top: var(--header-height);
}

.products-fallback-notice {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-4);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--text-primary);
}
.products-fallback-notice a {
  color: var(--color-primary);
  font-weight: var(--font-semibold);
  text-decoration: underline;
}

/* ═══ FILTERS SIDEBAR ═══ */
.filters-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-8);
  align-items: start;
}

.products-area {
  min-width: 0;
}

.filters-sidebar {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
  min-width: 0;
  direction: rtl;
}

.filter-section {
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-gray-300);
}

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

.filter-title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

/* Search Input */
.search-box {
  position: relative;
  margin-bottom: var(--space-6);
}

.search-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  padding-right: var(--space-12);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: all var(--transition-base);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-icon {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-500);
  font-size: var(--text-lg);
}

/* Category Filters */
.category-filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: var(--space-3);
  margin-bottom: var(--space-2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  gap: var(--space-3);
}

.category-filter:hover {
  background: var(--bg-secondary);
}

.category-filter.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.category-filter input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-gray-400);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
}

.category-filter input[type="radio"]:checked {
  border-color: var(--color-white);
  background: var(--color-white);
}

.category-filter input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.category-filter.active input[type="radio"]:checked::after {
  background: var(--color-primary);
}

.category-icon {
  width: 24px;
  min-width: 24px;
  display: inline-grid;
  place-items: center;
  font-size: var(--text-xl);
  line-height: 1;
}

.category-name {
  flex: 1;
  font-weight: var(--font-medium);
  white-space: nowrap;
}

/* Price Range Slider */
.price-slider {
  margin: var(--space-4) 0;
}

.price-slider input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    to left,
    var(--color-primary) 0 var(--price-progress, 100%),
    var(--color-gray-300) var(--price-progress, 100%) 100%
  );
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  direction: rtl;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.price-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

.price-display {
  display: flex;
  justify-content: space-between;
  direction: rtl;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: var(--font-semibold);
}

/* Sort Select */
.sort-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--color-white);
}

.sort-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Clear Filters Button */
.clear-filters {
  width: 100%;
  padding: var(--space-3);
  background: var(--color-gray-200);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-4);
}

.clear-filters:hover {
  background: var(--color-gray-300);
}

/* ═══ PRODUCTS GRID ═══ */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
}

.products-count {
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-8);
}

.products-cart-unavailable {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(245, 158, 11, 0.08);
  color: #92400e;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  line-height: 1.6;
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-primary);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(37, 99, 235, 0.05));
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  z-index: 2;
}

.product-badge.out-of-stock {
  background: var(--color-gray-600);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-gray-100), var(--color-gray-200));
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-2);
  overflow-wrap: anywhere;
}

.product-name {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
  line-height: 1.4;
  flex: 1;
  color: var(--text-primary);
  overflow-wrap: anywhere;
}

.product-price {
  font-size: var(--text-2xl);
  font-weight: var(--font-extrabold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.product-actions {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-3);
  min-width: 0;
}

.product-cta {
  width: 100%;
  min-height: 44px;
  padding: var(--space-3);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.product-cta-primary {
  flex: 1 1 auto;
  min-width: 0;
}

.product-cta-secondary {
  flex: 0 0 48px;
  width: 48px;
  background: var(--color-secondary);
}

.product-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.product-cta:hover::before {
  width: 200px;
  height: 200px;
}

.product-cta:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.product-cta:active {
  transform: translateY(0);
}

/* Products Loading */
.products-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-16);
  gap: var(--space-4);
  color: var(--text-secondary);
}
.products-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* No Results */
.no-results {
  text-align: center;
  padding: var(--space-20) 0;
  grid-column: 1 / -1;
}

.no-results-icon {
  font-size: var(--text-6xl);
  margin-bottom: var(--space-6);
}

.no-results-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.no-results-text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

/* ═══ PRODUCT MODAL ═══ */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  backdrop-filter: blur(5px);
}

.product-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: var(--text-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: var(--color-gray-200);
  transform: scale(1.1);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.modal-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-2xl) 0 0 var(--radius-2xl);
}

.modal-details {
  padding: var(--space-8);
}

.modal-category {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-3);
}

.modal-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.modal-price {
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

.modal-description {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.modal-features {
  background: var(--bg-secondary);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-8);
}

.modal-features h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.modal-features ul {
  list-style: none;
}

.modal-features li {
  padding: var(--space-2) 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.modal-features li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
}

.modal-buy-button {
  width: 100%;
  padding: var(--space-5);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-xl);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.modal-buy-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl);
}

.modal-buy-button:disabled {
  background: var(--color-gray-400);
  box-shadow: none;
  cursor: not-allowed;
}

.modal-buy-button:disabled:hover {
  background: var(--color-gray-400);
  transform: none;
  box-shadow: none;
}

.modal-buy-button:active {
  transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .filters-container {
    grid-template-columns: 240px 1fr;
  }
  
  .modal-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-image {
    height: 350px;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .products-page-hero {
    min-height: 34vh;
  }

  .filters-container {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  
  .filters-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-4);
    position: static;
    margin-bottom: 0;
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
  }

  .search-box {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

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

  .filter-section:nth-of-type(2) {
    grid-column: 1 / -1;
  }

  .filter-title {
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
  }

  #categoryFilters {
    display: flex;
    gap: var(--space-2);
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: var(--space-1);
    scroll-snap-type: x proximity;
  }

  .category-filter {
    flex: 0 0 auto;
    min-height: 42px;
    padding: var(--space-2) var(--space-3);
    margin-bottom: 0;
    border: 1px solid var(--color-gray-300);
    scroll-snap-align: start;
  }

  .category-filter input[type="radio"] {
    width: 16px;
    height: 16px;
  }

  .category-icon {
    font-size: var(--text-lg);
  }

  .price-slider {
    margin: 0;
  }

  .sort-select,
  .clear-filters {
    min-height: 44px;
  }

  .clear-filters {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .products-header {
    margin-bottom: var(--space-4);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .product-card:hover {
    transform: none;
  }

  .product-image-wrapper {
    height: 220px;
  }

  .product-info {
    padding: var(--space-5);
  }

  .product-name {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
  }

  .product-price {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
  }
  
  .modal-content {
    max-height: 100vh;
    border-radius: 0;
  }
  
  .modal-details {
    padding: var(--space-6);
  }
  
  .modal-title {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 420px) {
  .products-page-hero {
    min-height: 30vh;
  }

  .product-image-wrapper {
    height: 200px;
  }

  .product-info {
    padding: var(--space-4);
  }
}

/* ═══ CUSTOMER STORE PROPORTION STANDARDIZATION ═══ */
.products-page-hero {
  min-height: clamp(240px, 32vh, 360px);
}

.products-page-hero .hero-title {
  margin-bottom: var(--space-4);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  line-height: 1.15;
}

.products-page-hero .hero-subtitle {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(var(--text-base), 1.6vw, var(--text-lg));
  line-height: 1.7;
}

.products-page-hero + .section {
  padding-top: var(--space-12);
}

.filters-container {
  grid-template-columns: minmax(240px, 260px) 1fr;
  gap: var(--space-6);
}

.filters-sidebar {
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.filter-section {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom-color: var(--color-gray-200);
}

.filter-title {
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-extrabold);
}

.search-box {
  margin-bottom: var(--space-4);
}

.search-input,
.sort-select,
.clear-filters {
  min-height: 44px;
  border-radius: var(--radius-md);
}

.search-input,
.sort-select {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.category-filter {
  min-height: 42px;
  padding: var(--space-2) var(--space-3);
  gap: var(--space-2);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
}

.category-filter:hover {
  border-color: var(--color-gray-300);
}

.category-icon {
  font-size: var(--text-base);
  line-height: 1;
}

.products-header {
  margin-bottom: var(--space-5);
}

.products-count {
  margin: 0;
  color: var(--color-gray-700);
  font-size: var(--text-base);
  font-weight: var(--font-extrabold);
}

.products-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}

.product-card {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  top: var(--space-3);
  right: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}

.product-image-wrapper {
  height: 236px;
}

.product-info {
  padding: var(--space-5);
}

.product-category,
.modal-category {
  text-transform: none;
  letter-spacing: 0;
}

.product-name {
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  margin-bottom: var(--space-3);
  font-size: var(--text-xl);
}

.product-cta {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}

.products-help-section {
  background: var(--color-gray-900);
  color: var(--color-white);
  text-align: center;
  padding: var(--space-12) 0;
}

.products-help-section h2 {
  margin-bottom: var(--space-3);
  color: var(--color-white);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
}

.products-help-section p {
  max-width: 560px;
  margin: 0 auto var(--space-6);
  color: rgba(255,255,255,0.82);
  font-size: var(--text-lg);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .products-page .cart-button {
    top: calc(var(--header-height) + var(--space-2));
    width: 44px;
    height: 44px;
    font-size: var(--text-lg);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
  }

  .products-page .cart-button:hover {
    transform: none;
  }

  .products-page-hero {
    min-height: 188px;
  }

  .products-page-hero .hero-title {
    margin-bottom: var(--space-2);
    font-size: var(--text-2xl);
  }

  .products-page-hero .hero-subtitle {
    max-width: 320px;
    font-size: var(--text-sm);
    line-height: 1.65;
  }

  .products-page-hero + .section {
    padding-top: var(--space-4);
  }

  .filters-container {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .filters-sidebar {
    gap: var(--space-2);
    padding: var(--space-3);
    border-radius: var(--radius-md);
  }

  .search-box {
    margin-bottom: var(--space-1);
  }

  .search-input,
  .sort-select,
  .clear-filters {
    min-height: 40px;
  }

  .filter-title {
    margin-bottom: var(--space-1);
    font-size: var(--text-xs);
  }

  #categoryFilters {
    gap: var(--space-1);
    padding-bottom: 0;
  }

  .category-filter {
    min-height: 38px;
    padding: var(--space-1) var(--space-2);
    font-size: var(--text-sm);
  }

  .category-icon {
    font-size: var(--text-sm);
  }

  .price-display {
    margin-top: var(--space-1);
    font-size: var(--text-xs);
  }

  .price-slider input[type="range"] {
    height: 4px;
  }

  .price-slider input[type="range"]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
  }

  .clear-filters {
    margin-top: var(--space-1);
    font-size: var(--text-sm);
  }

  .products-header {
    margin-bottom: var(--space-3);
  }

  .products-grid {
    gap: var(--space-4);
  }

  .product-image-wrapper {
    height: 210px;
  }

  .product-info {
    padding: var(--space-4);
  }

  .products-help-section {
    padding: var(--space-10) 0;
  }

  .products-help-section p {
    font-size: var(--text-base);
  }
}

@media (max-width: 420px) {
  .products-page-hero {
    min-height: 176px;
  }
}
