/* ========================================
   AfroNoël - E-commerce de Noël
   ======================================== */

:root {
  --christmas-red: #c41e3a;
  --christmas-red-dark: #a01830;
  --christmas-green: #165b33;
  --christmas-green-light: #1e7b46;
  --gold: #d4af37;
  --gold-light: #f0d77a;
  --cream: #faf8f5;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #adb5bd;
  --gray-700: #495057;
  --whatsapp-green: #25d366;
  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.text-gold {
  color: var(--gold);
}
.text-christmas {
  color: var(--christmas-red);
}

/* ========================================
   Top Banner
   ======================================== */
.top-banner {
  background: linear-gradient(90deg, var(--christmas-red), var(--christmas-red-dark));
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.top-banner .snowflake {
  margin: 0 10px;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ========================================
   Header
   ======================================== */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--christmas-green);
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--christmas-red) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-action {
  color: var(--dark);
  font-size: 1.25rem;
  position: relative;
  transition: color 0.3s;
}

.header-action:hover {
  color: var(--christmas-red);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--christmas-red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   Buttons
   ======================================== */
.btn-christmas {
  background: linear-gradient(135deg, var(--christmas-red), var(--christmas-red-dark));
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.btn-christmas:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: var(--white);
}

.btn-add-cart {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.btn-add-cart:hover {
  background: var(--christmas-red);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  position: relative;
  min-height: 600px;
  background: linear-gradient(
    135deg,
    var(--christmas-green) 0%,
    var(--christmas-green-light) 50%,
    var(--christmas-red) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-categories {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-delivery {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Snowflakes Animation */
.snowflakes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.snowflakes .snowflake {
  position: absolute;
  top: -10%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  animation: fall linear infinite;
}

.snowflakes .snowflake:nth-child(1) {
  left: 5%;
  animation-duration: 10s;
  animation-delay: 0s;
}
.snowflakes .snowflake:nth-child(2) {
  left: 15%;
  animation-duration: 12s;
  animation-delay: 1s;
}
.snowflakes .snowflake:nth-child(3) {
  left: 30%;
  animation-duration: 8s;
  animation-delay: 2s;
}
.snowflakes .snowflake:nth-child(4) {
  left: 45%;
  animation-duration: 14s;
  animation-delay: 0.5s;
}
.snowflakes .snowflake:nth-child(5) {
  left: 60%;
  animation-duration: 11s;
  animation-delay: 3s;
}
.snowflakes .snowflake:nth-child(6) {
  left: 75%;
  animation-duration: 9s;
  animation-delay: 1.5s;
}
.snowflakes .snowflake:nth-child(7) {
  left: 85%;
  animation-duration: 13s;
  animation-delay: 2.5s;
}
.snowflakes .snowflake:nth-child(8) {
  left: 95%;
  animation-duration: 10s;
  animation-delay: 0.8s;
}

@keyframes fall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0.3;
  }
}

/* ========================================
   Sections
   ======================================== */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.view-all {
  color: var(--christmas-red);
  font-weight: 500;
  text-decoration: none;
}

.view-all:hover {
  text-decoration: underline;
}

/* Flash Sales */
.flash-sales-section {
  padding: 4rem 0;
  background: var(--white);
}

.countdown {
  display: flex;
  gap: 1rem;
}

.countdown-item {
  background: var(--christmas-red);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 60px;
}

.countdown-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Categories */
.categories-section {
  padding: 4rem 0;
}

.category-card {
  display: block;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--gold);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray-500);
}

.category-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

/* Products Section */
.products-section {
  padding: 4rem 0;
}

.products-section.bg-light {
  background: var(--gray-100);
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-300);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-discount {
  background: var(--christmas-red);
  color: var(--white);
}

.badge-bestseller {
  background: var(--gold);
  color: var(--dark);
  top: auto;
  bottom: 10px;
}

.product-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  flex: 1;
}

.product-name a {
  color: var(--dark);
  text-decoration: none;
}

.product-name a:hover {
  color: var(--christmas-red);
}

.product-price {
  margin-bottom: 0.75rem;
}

.current-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--christmas-red);
}

.old-price {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* Budget Section */
.budget-section {
  padding: 4rem 0;
  background: var(--white);
}

.budget-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.budget-card-1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.budget-card-2 {
  background: linear-gradient(135deg, var(--christmas-green), #2d8f5e);
}
.budget-card-3 {
  background: linear-gradient(135deg, var(--christmas-red), #e64a6d);
}
.budget-card-4 {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.budget-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.budget-subtitle {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.budget-products {
  flex: 1;
  margin-bottom: 1rem;
}

.budget-product-link {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.budget-product-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Brands */
.brands-section {
  padding: 4rem 0;
  background: var(--gray-100);
}

.brands-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  align-items: center;
}

.brand-item img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================================
   Product Page
   ======================================== */
.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}

.main-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--christmas-red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
}

.thumbnail-images {
  display: flex;
  gap: 0.75rem;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--christmas-red);
}

.product-details {
  padding-left: 2rem;
}

.product-category-label {
  color: var(--gray-500);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.product-price-block {
  margin-bottom: 1.5rem;
}

.product-price-block .current-price {
  font-size: 2rem;
}

.product-price-block .old-price {
  font-size: 1.25rem;
}

.savings {
  display: block;
  color: var(--christmas-green);
  font-weight: 500;
  margin-top: 0.25rem;
}

.product-description {
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.size-options,
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.size-option,
.color-option {
  cursor: pointer;
}

.size-option input,
.color-option input {
  display: none;
}

.size-option span,
.color-option span {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all 0.3s;
}

.size-option input:checked + span,
.color-option input:checked + span {
  border-color: var(--christmas-red);
  background: var(--christmas-red);
  color: var(--white);
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--gray-100);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.3s;
}

.qty-btn:hover {
  background: var(--gray-200);
}

.quantity-selector input {
  width: 60px;
  height: 44px;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

.stock-info {
  margin-left: 1rem;
  font-size: 0.875rem;
}

.product-actions {
  margin: 2rem 0;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-200);
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.feature i {
  color: var(--christmas-green);
}

/* ========================================
   Cart Page
   ======================================== */
.page-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cart-items {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.cart-item-name a {
  color: var(--dark);
  text-decoration: none;
}

.cart-item-variants {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--christmas-red);
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-quantity .qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.qty-value {
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.cart-item-subtotal {
  font-weight: 700;
  font-size: 1.125rem;
  min-width: 120px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-500);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
}

.cart-item-remove:hover {
  color: var(--christmas-red);
}

/* Order Summary */
.order-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.summary-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1rem;
}

.free-shipping-notice {
  background: var(--gray-100);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.payment-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  text-align: center;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-cart-icon {
  font-size: 5rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.empty-cart h2 {
  margin-bottom: 1rem;
}

.empty-cart p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

/* WhatsApp Modal */
.whatsapp-modal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-intro {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.order-preview {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1.5rem;
}

.order-preview h6 {
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.message-preview {
  font-size: 0.875rem;
  white-space: pre-wrap;
  color: var(--gray-700);
  max-height: 200px;
  overflow-y: auto;
}

/* ========================================
   Category & Search
   ======================================== */
.category-header,
.search-header {
  margin-bottom: 2rem;
}

.category-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.results-count {
  color: var(--gray-700);
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-options select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.search-form-large {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.search-input-large {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-300);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 1rem;
}

.search-input-large:focus {
  outline: none;
  border-color: var(--christmas-red);
}

.search-form-large .btn-christmas {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.search-results-info {
  text-align: center;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state i {
  font-size: 4rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.empty-state h3 {
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-desc {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--christmas-red);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .product-details {
    padding-left: 0;
    margin-top: 2rem;
  }

  .cart-item {
    flex-wrap: wrap;
  }

  .cart-item-subtotal {
    min-width: auto;
    width: 100%;
    text-align: left;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .countdown {
    justify-content: center;
  }

  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .category-image {
    width: 80px;
    height: 80px;
  }

  .filters-bar {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }
}
