/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES - B.G.G COSMETIC
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Color Palette */
  --primary-green: #0D5C34;         /* Luxury deep forest green */
  --primary-green-light: #27AE60;   /* Vibrant emerald green */
  --primary-green-rgb: 13, 92, 52;
  --secondary-gold: #D4AF37;        /* Metallic gold */
  --secondary-gold-light: #F1C40F;  /* Bright champagne gold */
  --accent-red: #E74C3C;            /* Promo / Sale badge */
  --accent-orange: #E67E22;         /* Special badges / stock warnings */
  
  /* Neutral Palette */
  --text-dark: #1A2F25;             /* Soft dark green-gray */
  --text-muted: #7F8C8D;
  --bg-pure: #FFFFFF;
  --bg-cream: #FAF7F2;              /* Warm cream secondary background */
  --bg-gray: #F8F9FA;
  --border-color: #ECEAE5;
  
  /* Layout & Shadows */
  --shadow-sm: 0 4px 12px rgba(13, 92, 52, 0.04);
  --shadow-md: 0 8px 24px rgba(13, 92, 52, 0.08);
  --shadow-lg: 0 16px 48px rgba(13, 92, 52, 0.12);
  --border-radius-sm: 8px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  
  /* Animations */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Fonts */
  --font-title: 'Outfit', 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* Base Styles & Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-pure);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green-light);
}

/* Typography & Global Tags */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary-green);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Image Fallbacks (Beautiful Gradient Placeholders) */
.img-placeholder {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1a422d 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  color: var(--secondary-gold);
  font-family: var(--font-title);
  font-weight: 500;
  text-align: center;
  padding: 20px;
  min-height: 200px;
}
.img-placeholder::after {
  content: "B.G.G Cosmetic";
  font-size: 1.2rem;
  letter-spacing: 2px;
  border: 1px solid var(--secondary-gold);
  padding: 8px 16px;
  border-radius: 4px;
  opacity: 0.8;
}

/* Global Layout Elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.text-center { text-align: center; }

/* Buttons & Links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--bg-pure);
  box-shadow: 0 4px 15px rgba(13, 92, 52, 0.2);
}
.btn-primary:hover {
  background-color: var(--primary-green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}
.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--bg-pure);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--secondary-gold);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.btn-gold:hover {
  background-color: var(--secondary-gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--bg-pure);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Badge Styling */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.5px;
  color: var(--bg-pure);
}
.badge-promo { background-color: var(--accent-red); }
.badge-new { background-color: var(--primary-green-light); }
.badge-best { background-color: var(--secondary-gold); color: var(--text-dark); }

/* Header & Sticky Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.header-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-green);
}
.logo-main span {
  color: var(--secondary-gold);
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-gold);
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-green);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Panier Cart Icon */
.cart-trigger {
  position: relative;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary-green);
  cursor: pointer;
  padding: 6px;
  transition: var(--transition-fast);
}
.cart-trigger:hover {
  color: var(--secondary-gold);
  transform: scale(1.05);
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--accent-red);
  color: var(--bg-pure);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bg-pure);
}

/* Mobile Menu Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-green);
  cursor: pointer;
  padding: 4px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  animation: pulse-green 2s infinite;
}

.whatsapp-float i, .whatsapp-float svg {
  color: white;
  font-size: 1.8rem;
  fill: currentColor;
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(15deg);
  background-color: #20BA5A;
}

/* Tooltip WhatsApp */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--primary-green);
  color: var(--bg-pure);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Cart Drawer (Side panel) */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(13, 92, 52, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  background-color: var(--bg-pure);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.cart-close:hover {
  color: var(--accent-red);
  transform: rotate(90deg);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
  gap: 16px;
}
.cart-empty-state i {
  font-size: 3rem;
  color: var(--border-color);
}

/* Cart Item Cards */
.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  background-color: var(--bg-cream);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cart-item-price {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--secondary-gold);
  font-size: 1rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}
.qty-btn {
  background: var(--bg-gray);
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
  color: var(--primary-green);
}
.qty-btn:hover {
  background-color: var(--border-color);
}
.qty-val {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  padding: 4px;
}
.cart-item-remove:hover {
  color: var(--accent-red);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-cream);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-total-label {
  font-weight: 600;
  color: var(--primary-green);
}
.cart-total-val {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-gold);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}

.toast {
  background-color: var(--primary-green);
  color: var(--bg-pure);
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  border-left: 4px solid var(--secondary-gold);
  transform: translateY(100px);
  opacity: 0;
  animation: slide-in-toast 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast i {
  color: var(--secondary-gold);
  font-size: 1.1rem;
}

/* Page Section headers */
.page-hero {
  background: linear-gradient(135deg, rgba(13, 92, 52, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%), var(--bg-cream);
  padding: 120px 0 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.page-hero-title {
  font-size: 2.5rem;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs a:hover {
  color: var(--primary-green);
}
.breadcrumbs span {
  color: var(--secondary-gold);
}

/* ==========================================================================
   PAGE D'ACCUEIL (index.html)
   ========================================================================== */

/* Hero Banner */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(13, 92, 52, 0.95) 0%, rgba(13, 92, 52, 0.85) 100%);
  padding-top: 80px;
  overflow: hidden;
  color: var(--bg-pure);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, rgba(0,0,0,0) 70%);
  filter: blur(50px);
}
.hero-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(39,174,96,0.25) 0%, rgba(0,0,0,0) 70%);
  filter: blur(40px);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.hero-slogan {
  font-family: var(--font-title);
  color: var(--secondary-gold);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-title {
  font-size: 3.5rem;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bg-pure);
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.hero-title span {
  color: var(--secondary-gold);
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  margin-top: 4px;
}

.hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.hero-image-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  animation: fade-in-scale 1.2s cubic-bezier(0.175, 0.885, 0.32, 1) 0.3s forwards;
}

/* Luxury circular frame */
.hero-image-frame {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.4);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed var(--secondary-gold);
  animation: rotate 60s linear infinite;
}

.hero-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--primary-green-light);
}

.hero-floating-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 16px 24px;
  color: var(--bg-pure);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.hero-card-1 {
  bottom: 30px;
  left: -20px;
}
.hero-card-2 {
  top: 40px;
  right: -10px;
  animation-delay: -3s;
}

.hero-floating-card i {
  color: var(--secondary-gold);
  font-size: 1.4rem;
}

.hero-floating-card p {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Value Props / Rapid Presentation */
.features-section {
  background-color: var(--bg-cream);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  box-shadow: 0 -10px 30px rgba(13, 92, 52, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--bg-pure);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(13, 92, 52, 0.03);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.2);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  background-color: rgba(13, 92, 52, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary-green);
  color: var(--bg-pure);
}

.feature-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Section Header Shared */
.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: var(--font-title);
  color: var(--secondary-gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-gold);
  border-radius: 2px;
}

.section-header-left {
  text-align: left;
}
.section-header-left .section-title::after {
  left: 0;
  transform: none;
}

/* Carousel Best-Sellers */
.carousel-wrapper {
  position: relative;
  padding: 0 40px;
}

.carousel-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  display: flex;
  gap: 24px;
  padding: 15px 0 30px 0;
  scrollbar-width: none; /* Firefox */
}
.carousel-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-container .product-card {
  width: calc(33.333% - 16px);
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-pure);
  border: 1px solid var(--border-color);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}
.carousel-btn:hover {
  background-color: var(--primary-green);
  color: var(--bg-pure);
  border-color: var(--primary-green);
}
.carousel-btn-left { left: -10px; }
.carousel-btn-right { right: -10px; }

/* Product Cards */
.product-card {
  background-color: var(--bg-pure);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(13, 92, 52, 0.02);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.15);
}

.product-img-wrapper {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background-color: var(--bg-cream);
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition-smooth);
}
.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(13,92,52,0.8) 0%, rgba(13,92,52,0) 100%);
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}
.product-card:hover .product-card-actions {
  transform: translateY(0);
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 600;
}

.product-card-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.product-card-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  margin-top: auto;
}

.product-card-price {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-gold);
}

.product-card-old-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card-btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
}

/* About Short Section (index) */
.about-teaser-section {
  background-color: var(--bg-cream);
  position: relative;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-teaser-image {
  position: relative;
}
.about-teaser-image-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background-color: var(--primary-green);
}

.about-teaser-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary-green);
  color: var(--secondary-gold);
  border: 2px solid var(--secondary-gold);
  padding: 24px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-title);
  animation: float 5s ease-in-out infinite;
}
.about-teaser-badge span {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about-teaser-badge p {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.about-teaser-content h2 {
  margin-bottom: 20px;
}
.about-teaser-content p {
  color: var(--text-dark);
  margin-bottom: 24px;
  opacity: 0.9;
}

/* Testimonials / Avis Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-cream);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid rgba(13, 92, 52, 0.02);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-pure);
  border-color: rgba(212, 175, 55, 0.2);
}

.testimonial-stars {
  color: var(--secondary-gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-green-light);
  color: var(--bg-pure);
  font-family: var(--font-title);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testimonial-username {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-green);
}
.testimonial-usercity {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, #164f30 100%);
  color: var(--bg-pure);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.newsletter-box {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  color: var(--bg-pure);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.newsletter-box p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0 24px;
  color: var(--bg-pure);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-input:focus {
  outline: none;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Footer styling */
.footer {
  background-color: #0A1C13;
  color: #B5BEB9;
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
  border-top: 4px solid var(--secondary-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--bg-pure);
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-family: var(--font-title);
  position: relative;
  padding-bottom: 8px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-gold);
}

.footer-about .logo-main {
  color: var(--bg-pure);
  margin-bottom: 16px;
}
.footer-about p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-pure);
  transition: var(--transition-fast);
}
.footer-social-link:hover {
  background-color: var(--primary-green);
  color: var(--secondary-gold);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a:hover {
  color: var(--secondary-gold);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--secondary-gold);
  margin-top: 4px;
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.8rem;
}

/* ==========================================================================
   PAGE CATALOGUE (catalogue.html)
   ========================================================================== */

/* Search and Filters */
.catalog-control-panel {
  background-color: var(--bg-cream);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.catalog-search-row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
  margin-bottom: 24px;
}

.search-box {
  position: relative;
}
.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-pure);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.search-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(13, 92, 52, 0.1);
}
.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.sort-select {
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-pure);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}
.sort-select:focus {
  outline: none;
  border-color: var(--primary-green);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background-color: var(--bg-pure);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-dark);
}
.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--bg-pure);
}

/* Dynamic Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.pagination-area {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* ==========================================================================
   PAGE PRODUIT DÉTAILLÉE (produit.html)
   ========================================================================== */

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* Gallery Section */
.product-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-image-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  position: relative;
  cursor: zoom-in;
  padding-top: 100%;
}

.main-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.main-image-container.zoomed img {
  transform: scale(1.5);
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumbnail-item {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background-color: var(--bg-cream);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}
.thumbnail-item.active {
  border-color: var(--secondary-gold);
}
.thumbnail-item img:hover {
  opacity: 0.8;
}

/* Product Info Section */
.product-detail-info {
  display: flex;
  flex-direction: column;
}

.product-ref {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.product-title-h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}

.product-price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.detail-price {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-gold);
}
.detail-old-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 30px;
  width: fit-content;
}
.stock-in {
  background-color: rgba(39, 174, 96, 0.1);
  color: var(--primary-green-light);
}
.stock-order {
  background-color: rgba(230, 126, 34, 0.1);
  color: var(--accent-orange);
}

.product-spec-row {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  margin-bottom: 30px;
  font-size: 0.9rem;
}
.spec-label {
  font-weight: 700;
  color: var(--primary-green);
}

/* Description Tabs */
.product-tabs-wrapper {
  margin-bottom: 40px;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  gap: 24px;
  margin-bottom: 24px;
}
.tab-nav-btn {
  background: none;
  border: none;
  padding: 12px 0;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}
.tab-nav-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-gold);
  transition: var(--transition-fast);
}
.tab-nav-btn:hover, .tab-nav-btn.active {
  color: var(--primary-green);
}
.tab-nav-btn.active::after {
  width: 100%;
}

.tab-pane {
  display: none;
  animation: fade-in-up 0.4s ease forwards;
}
.tab-pane.active {
  display: block;
}

.tab-pane ul, .tab-pane ol {
  padding-left: 20px;
  margin-top: 12px;
}
.tab-pane li {
  margin-bottom: 8px;
}

/* Detail CTAs */
.detail-cta-block {
  background-color: var(--bg-cream);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  margin-top: auto;
}

.detail-whatsapp-alert {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.qty-selector-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.qty-selector-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.action-buttons-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

/* Review Section */
.reviews-section {
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.review-form-card {
  background-color: var(--bg-cream);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}
.review-form-card h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-pure);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.rating-select {
  display: flex;
  gap: 8px;
  font-size: 1.4rem;
  color: var(--border-color);
  cursor: pointer;
}
.rating-select i:hover, .rating-select i.active {
  color: var(--secondary-gold);
}

.reviews-list-block h3 {
  margin-bottom: 24px;
}
.review-list-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 10px;
}

/* ==========================================================================
   PAGE À PROPOS (a-propos.html)
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
.about-content p {
  margin-bottom: 16px;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.value-card-boxed {
  background-color: var(--bg-cream);
  padding: 30px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--border-color);
}
.value-card-boxed i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}
.value-card-boxed h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.value-card-boxed p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Key Stats Counters */
.stats-section {
  background-color: var(--primary-green);
  color: var(--bg-pure);
  padding: 60px 0;
  border-top: 3px solid var(--secondary-gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--secondary-gold);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1;
}
.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   PAGE CONTACT (contact.html)
   ========================================================================== */

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-details-card {
  background-color: var(--bg-cream);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-block h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item-row {
  display: flex;
  gap: 16px;
}
.contact-item-row i {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-top: 4px;
}
.contact-item-row h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-item-row p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-whatsapp-promo {
  background-color: rgba(37, 211, 102, 0.08);
  border: 1px dashed #25D366;
  padding: 24px;
  border-radius: var(--border-radius-sm);
  text-align: center;
}
.contact-whatsapp-promo p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-form-block {
  background-color: var(--bg-pure);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}
.contact-form-block h3 {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.map-section {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
}
.map-iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* FAQ section */
.faq-section {
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-color);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-pure);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-green);
  font-family: var(--font-title);
  font-size: 1.05rem;
}
.faq-question i {
  transition: var(--transition-fast);
  color: var(--secondary-gold);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  padding: 0 24px 20px 24px;
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-toast {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scroll reveal class */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
  .section-padding { padding: 60px 0; }
  .hero-title { font-size: 2.8rem; }
  .hero-container { gap: 30px; }
  .features-grid { gap: 20px; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail-grid { gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 991px) {
  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-pure);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-menu.active {
    left: 0;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0;
  }
  .hero-desc { margin: 0 auto 30px auto; }
  .hero-btns { justify-content: center; }
  .hero-image-area { margin-top: 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .carousel-container .product-card {
    width: calc(50% - 12px);
  }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-teaser-badge { bottom: 10px; right: 10px; width: 100px; height: 100px; padding: 12px; }
  .about-teaser-badge span { font-size: 1.4rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .catalog-search-row { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-layout-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.2rem; }
  .carousel-container .product-card {
    width: 100%;
  }
  .carousel-wrapper { padding: 0; }
  .carousel-btn { display: none; }
  .catalog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .action-buttons-group { grid-template-columns: 1fr; }
  .qty-selector-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .newsletter-form { flex-direction: column; border-radius: var(--border-radius); padding: 12px; }
  .newsletter-input { padding: 12px; text-align: center; }
  .toast-container { left: 16px; right: 16px; max-width: none; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-tooltip { display: none; }
}
