*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f5f5f7;
  color: #111827;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.products-section.container {
  max-width: 100%;
  padding: 0 2rem;
}

.header {
  background: #ffffff;
  color: #111827;
  padding: 1.25rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: transform 0.3s ease-in-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-self: start;
}

.nav-link {
  color: #111827;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #6366f1;
}

.nav-link.active {
  color: #6366f1;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: #6366f1;
  border-radius: 2px;
}

.brand {
  justify-self: center;
}

.brand-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.christmas-icon {
  font-size: 1.5rem;
  animation: christmas-pulse 2s ease-in-out infinite;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.christmas-icon:hover {
  transform: scale(1.2) rotate(10deg);
}

.christmas-icon.hidden {
  display: none;
}

@keyframes christmas-pulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}

.brand-title {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  max-width: 280px;
  width: 100%;
}

.search-form input {
  flex: 1;
  padding: 0.6rem 1rem 0.6rem 2.75rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.search-form input:focus {
  outline: none;
  border-color: #6366f1;
  background: #ffffff;
}

.search-form input::placeholder {
  color: #9ca3af;
}

.search-button {
  position: absolute;
  left: 0.75rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.search-button:hover {
  color: #6366f1;
}

.language-toggle {
  position: relative;
  color: #111827;
  background: none;
  border: none;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.language-toggle:hover {
  color: #6366f1;
  background: #f3f4f6;
  transform: scale(1.1);
}

.language-toggle:active {
  transform: scale(0.95);
}

#language-flag {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
}

.cart-icon {
  position: relative;
  color: #111827;
  text-decoration: none;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  border-radius: 50%;
}

.cart-icon:hover {
  color: #6366f1;
  background: #f3f4f6;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #6366f1;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}


.main {
  padding: 1.5rem 0 3rem;
}

.filters {
  margin-bottom: 1rem;
}

.filters-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.filters label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-right: 0.35rem;
}

.filters select {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.9rem;
}

.products-section {
  margin-top: 1rem;
}

/* ====== Section Horaires d'ouverture ====== */
.opening-hours-section {
  margin: 0;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  text-align: center;
}
.opening-hours-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.9);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.opening-hours-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem 0;
  text-align: center;
}

.opening-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.opening-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.opening-hours-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.opening-hours-item.today {
  background: linear-gradient(135deg, #eef2ff, #f0f9ff);
  border-color: #6366f1;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.opening-hours-item.closed {
  opacity: 0.6;
}

.opening-hours-day {
  font-weight: 600;
  color: #111827;
  font-size: 0.9rem;
}

.opening-hours-time {
  color: #4b5563;
  font-size: 0.85rem;
  font-weight: 500;
}

.opening-hours-item.closed .opening-hours-time {
  color: #9ca3af;
}

.opening-hours-badge {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}

/* ====== Bannière Demander un devis ====== */
.quote-banner-section {
  margin: 3rem 0;
  padding: 0 2rem;
}

.quote-banner {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.quote-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.quote-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.quote-banner-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quote-banner-button {
  background: #ffffff;
  color: #6366f1;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quote-banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  background: #f9fafb;
}

.quote-banner-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .quote-banner-section {
    padding: 0 1rem;
  }

  .quote-banner {
    padding: 2rem 1.5rem;
  }

  .quote-banner-title {
    font-size: 1.5rem;
  }

  .quote-banner-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .quote-banner-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.product-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid rgba(229, 231, 235, 0.9);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: rgba(99, 102, 241, 0.5);
}

.product-image-wrapper {
  border-radius: 0.8rem;
  overflow: hidden;
  background: radial-gradient(circle at top left, #eef2ff, #f9fafb);
  position: relative;
}

.product-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0 0,
    rgba(59, 130, 246, 0.18),
    transparent 55%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

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

.product-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

.product-price-regular {
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.badge-sale {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  z-index: 10;
  white-space: nowrap;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
}

.product-rating {
  font-size: 0.75rem;
  color: #fbbf24;
}

.product-button {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: #111827;
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.product-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
  background: #020617;
}

.loader {
  text-align: center;
  margin: 2rem 0;
  color: #6b7280;
}

.error {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.hidden {
  display: none;
}

/* ====== Loader global (overlay) ====== */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  backdrop-filter: blur(6px);
  color: #f9fafb;
  font-size: 0.95rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid rgba(249, 250, 251, 0.15);
  border-top-color: #38bdf8;
  border-right-color: #6366f1;
  animation: spin 0.7s linear infinite;
  margin-bottom: 0.75rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.pagination button {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.15s ease, box-shadow 0.15s ease,
    transform 0.15s ease;
}

.pagination button:hover:not(:disabled) {
  background: #111827;
  color: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}

.pagination #page-info {
  font-size: 0.85rem;
  color: #6b7280;
}

.footer {
  border-top: 1px solid #e5e7eb;
  padding: 2rem 0 2.5rem;
  font-size: 0.85rem;
  color: #6b7280;
  background: #f9fafb;
}

.footer a {
  color: #6366f1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  text-decoration: underline;
  color: #4f46e5;
}

.footer-column ul li a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #6366f1;
  text-decoration: underline;
}

.category-section {
  margin-bottom: 2.5rem;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #111827;
}

.image-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border-radius: 0.8rem;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  align-items: flex-start;
}

.footer-column h3,
.footer-column h4 {
  margin: 0 0 0.5rem;
  color: #111827;
}

.footer-column p {
  margin: 0.15rem 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin: 0.15rem 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0.5rem 0;
}

.social-link:hover {
  color: #6366f1;
  transform: translateX(4px);
}

.social-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.social-link span {
  font-size: 0.9rem;
}

/* ====== Page Détail Produit ====== */
.back-button {
  color: #f9fafb;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.product-detail-image {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-detail-image > img:first-child {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  background: #f9fafb;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.product-detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.product-detail-gallery img:hover {
  border-color: #6366f1;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-detail-category {
  font-size: 0.85rem;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.product-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}

.product-detail-price-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: #059669;
}

.product-detail-price-regular {
  font-size: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.product-detail-description {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1rem;
}

.product-detail-description p {
  margin: 0.75rem 0;
}

.product-detail-description ul,
.product-detail-description ol {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.product-detail-specs {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
}

.product-detail-specs h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  color: #111827;
}

.product-detail-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-detail-specs li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
}

.product-detail-specs li:last-child {
  border-bottom: none;
}

.product-detail-specs strong {
  color: #111827;
  margin-right: 0.5rem;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.product-detail-button-whatsapp {
  flex: 1;
  min-width: 200px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.product-detail-button-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.product-detail-button-whatsapp:active {
  transform: translateY(0);
}

.product-detail-button-link {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: inline-block;
}

.product-detail-button-link:hover {
  border-color: #6366f1;
  background: #f9fafb;
}

.product-detail-button-favorite {
  flex: 1;
  min-width: 200px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.product-detail-button-favorite:hover {
  border-color: #ef4444;
  background: #fef2f2;
  color: #ef4444;
}

.product-detail-button-favorite.active {
  background: #fef2f2;
  border-color: #ef4444;
  color: #ef4444;
}

.product-detail-button-favorite svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 1400px) {
  .products-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.5rem 0;
  }

  .header-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .header-nav {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .brand {
    order: 1;
    justify-self: center;
  }

  .brand-logo {
    height: 35px;
  }

  .header-actions {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
  }

  .nav-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }

  .search-form {
    max-width: 100%;
    flex: 1;
  }

  .search-form input {
    padding: 0.5rem 0.875rem 0.5rem 2.5rem;
    font-size: 0.85rem;
  }

  .cart-icon {
    padding: 0.4rem;
  }

  .filters-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .products-section.container {
    padding: 0 1rem;
  }

  .product-card {
    padding: 0.6rem;
    gap: 0.4rem;
  }

  .product-image {
    height: 120px;
  }

  .product-title {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .product-price-regular {
    font-size: 0.75rem;
  }

  .product-category {
    font-size: 0.65rem;
  }

  .badge-sale {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    top: 0.5rem;
    left: 0.5rem;
  }

  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .product-detail-title {
    font-size: 1.5rem;
  }

  .product-detail-price {
    font-size: 1.5rem;
  }

  .product-detail-actions {
    flex-direction: column;
  }

  .product-detail-button-whatsapp,
  .product-detail-button-link {
    width: 100%;
  }

  .product-detail-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ====== Page À propos ====== */
.about-section {
  padding: 2rem 0 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 1.5rem;
  color: #6366f1;
  font-weight: 600;
  margin: 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.9);
  text-align: center;
}

.about-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem 0;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
  text-align: left;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: linear-gradient(135deg, #eef2ff, #f0f9ff);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.75rem 0;
}

.value-text {
  font-size: 1.1rem;
  color: #6366f1;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

.about-mission {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2.5rem;
  border-left: 4px solid #6366f1;
}

.mission-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem 0;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

.about-contact-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.contact-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}

.contact-label {
  font-weight: 600;
  color: #6366f1;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-value a {
  color: #6366f1;
  text-decoration: none;
  transition: color 0.2s ease;
}

  .contact-value a:hover {
    color: #4f46e5;
    text-decoration: underline;
  }

/* ====== Page Services ====== */
.services-section {
  padding: 2rem 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.services-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem 0;
  text-align: center;
}

.service-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: #4b5563;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: 700;
  font-size: 1.1rem;
}

.services-cta {
  background: linear-gradient(135deg, #eef2ff, #f0f9ff);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.2);
  margin-top: 2rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem 0;
}

.cta-text {
  font-size: 1.1rem;
  color: #4b5563;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
}

.cta-button-secondary {
  background: #ffffff;
  color: #6366f1;
  border: 2px solid #6366f1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  background: #f9fafb;
}

@media (max-width: 768px) {
  .header-nav {
    gap: 0.5rem;
  }

  .nav-link {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
  }

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

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

  .about-card,
  .about-mission,
  .about-contact-card {
    padding: 1.5rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

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

  .services-subtitle {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .services-cta {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* ====== Page Catégories ====== */
.categories-section {
  padding: 2rem 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.categories-hero {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.categories-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.categories-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.category-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.category-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.category-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem 0;
}

.category-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.category-button {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.category-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
  .categories-title {
    font-size: 2rem;
  }

  .categories-subtitle {
    font-size: 1.1rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .category-card {
    padding: 1.5rem;
  }
}

/* ====== Bouton flottant WhatsApp ====== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 5rem; /* Ajusté pour ne pas chevaucher le menu de navigation */
    right: 1.5rem;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

/* ====== Menu de navigation mobile (Bottom Navigation) ====== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.75rem 0.5rem;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  max-width: 100%;
}

.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-decoration: none;
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  flex: 1;
  max-width: 80px;
}

.bottom-nav .nav-item:hover {
  color: #6366f1;
  background: #f3f4f6;
}

.bottom-nav .nav-item.active {
  color: #6366f1;
  background: #eef2ff;
}

.bottom-nav .nav-item.active .nav-icon {
  stroke: #6366f1;
  fill: none;
}

.bottom-nav .nav-icon {
  width: 22px;
  height: 22px;
  stroke: #6b7280;
  transition: stroke 0.2s ease;
}

.bottom-nav .nav-item.active .nav-icon {
  stroke: #6366f1;
}

.bottom-nav .nav-item span {
  font-size: 0.65rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

/* Ajuster le padding du body pour éviter que le contenu soit caché par le menu */
@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .main {
    padding-bottom: 1rem;
  }
}

/* Masquer le menu de navigation sur desktop */
@media (min-width: 769px) {
  .bottom-nav {
    display: none;
  }
  
  body {
    padding-bottom: 0;
  }
}

/* ====== Système de Favoris ====== */
.product-favorite-btn {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 15;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.product-favorite-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-favorite-btn.active {
  background: rgba(239, 68, 68, 0.1);
}

.product-favorite-btn.active:hover {
  background: rgba(239, 68, 68, 0.2);
}

.favorite-icon {
  width: 20px;
  height: 20px;
  stroke: #6b7280;
  transition: all 0.2s ease;
}

.product-favorite-btn.active .favorite-icon {
  stroke: #ef4444;
  fill: #ef4444;
}

.product-favorite-btn:hover .favorite-icon {
  stroke: #ef4444;
}

/* Notification pour les favoris */
.favorite-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #ffffff;
  color: #111827;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-left: 4px solid #6366f1;
  animation: slideInRight 0.3s ease;
  max-width: 300px;
}

.favorite-notification.added {
  border-left-color: #10b981;
}

.favorite-notification.removed {
  border-left-color: #ef4444;
}

.favorite-notification::before {
  content: "❤️";
  font-size: 1.2rem;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Badge dans le menu mobile */
.nav-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

@media (max-width: 768px) {
  .favorite-notification {
    top: auto;
    bottom: 80px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* ====== Modal de Sélection de Langue ====== */
.language-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.language-modal:not(.hidden) {
  display: flex;
}

.language-modal.hidden {
  display: none;
}

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

.language-modal-content {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
  text-align: center;
}

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

.language-modal-header {
  margin-bottom: 2rem;
}

.language-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.language-modal-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.language-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}

.language-option:hover {
  background: #f3f4f6;
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.language-option:active {
  transform: translateY(0);
}

.language-flag {
  font-size: 2rem;
  line-height: 1;
}

.language-name {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .language-modal-content {
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
  }

  .language-modal-title {
    font-size: 1.5rem;
  }

  .language-modal-subtitle {
    font-size: 0.9rem;
  }

  .language-option {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .language-flag {
    font-size: 1.75rem;
  }
}

/* ====== Page Favoris ====== */
.favorites-section {
  padding: 2rem 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.favorites-hero {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 0;
}

.favorites-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.favorites-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
}

.empty-favorites {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.empty-favorites h2 {
  font-size: 1.5rem;
  color: #111827;
  margin: 0 0 1rem 0;
}

.empty-favorites p {
  color: #6b7280;
  margin: 0 0 2rem 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .favorites-title {
    font-size: 2rem;
  }

  .favorites-subtitle {
    font-size: 1rem;
  }

  .empty-favorites {
    padding: 3rem 1.5rem;
  }
}

/* ====== Section Catégories Populaires (Style Price in Kenya adapté) ====== */
.popular-categories-section {
  padding: 2rem 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem 0;
}

.section-header p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 1rem 0;
}

.all-cats-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.all-cats-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.popular-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.popular-cat-card {
  background: #ffffff;
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.popular-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(99, 102, 241, 0.5);
}

.popular-cat-icon {
  font-size: 3rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff, #f0f9ff);
  border-radius: 1rem;
  border: 2px solid rgba(99, 102, 241, 0.2);
  transition: transform 0.2s ease;
}

.popular-cat-card:hover .popular-cat-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-color: rgba(99, 102, 241, 0.5);
}

.popular-cat-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.popular-cat-stats {
  font-weight: 700;
  color: #111827;
  font-size: 1.1rem;
  margin: 0;
}

.popular-cat-stats span {
  color: #6366f1;
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 0.25rem;
}

@media (min-width: 768px) {
  .popular-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .popular-cat-card {
    padding: 2rem 1.5rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .popular-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .popular-cat-card {
    padding: 1.25rem 0.75rem;
  }

  .popular-cat-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }

  .popular-cat-card h3 {
    font-size: 0.9rem;
  }

  .popular-cat-stats {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }
}


