/* ==========================================================================
   SCOOPS CHIGATA - Guide de Style & Système de Design (Responsive Mobile-First)
   Couleurs officielles :
   - Vert : #588057
   - Brun : #995929
   - Jaune pâle : #ffe6a7
   - Crème clair : #fdfae2
   Typographies :
   - H1 & Titres principaux : 'Arial Rounded MT Bold', Arial, sans-serif
   - Corps & H2/H3 : 'Montserrat', sans-serif
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --color-vert: #588057;
  --color-vert-dark: #426341;
  --color-brun: #995929;
  --color-brun-dark: #77431d;
  --color-jaune: #ffe6a7;
  --color-creme: #fdfae2;
  --color-white: #ffffff;
  --color-dark: #1e293b;
  --color-text: #334155;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  
  --font-heading: "Arial Rounded MT Bold", Arial, sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 18px rgba(88, 128, 87, 0.08);
  --shadow-lg: 0 12px 28px rgba(153, 89, 41, 0.12);
  --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.14);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
}

/* Styles de Réinitialisation et Base */
*, *::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(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.25;
}

h1 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

a:hover {
  color: var(--color-brun);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Zone de protection et dimensions du Logo */
.site-logo {
  display: inline-block;
  padding: 4px 6px;
  transition: transform var(--transition-fast);
}

.site-logo:hover {
  transform: scale(1.02);
}

.site-logo img, .site-logo svg {
  height: 48px; /* Hauteur réduite pour une navbar compacte et élégante */
  width: auto;
  max-width: 220px;
  display: block;
  transition: height var(--transition-fast);
}

@media (max-width: 480px) {
  .site-logo img, .site-logo svg {
    height: 40px;
    max-width: 170px;
  }
  .site-logo {
    padding: 2px;
  }
}

/* Variantes d'Arrière-Plan des Sections */
.bg-white { background-color: var(--color-white); }
.bg-creme { background-color: var(--color-creme); }
.bg-jaune { background-color: var(--color-jaune); }
.bg-vert { background-color: var(--color-vert); color: var(--color-white); }
.bg-vert h1, .bg-vert h2, .bg-vert h3 { color: var(--color-white); }

.section-padding {
  padding: 5rem 0;
}

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

/* Bandeaux de Titres Asymétriques (Vert + Brun) */
.section-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .section-title-wrapper {
    margin-bottom: 2.25rem;
    gap: 0.5rem;
  }
}

.section-title-wrapper h2 {
  order: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  color: var(--color-vert-dark);
  margin-bottom: 0;
}

.section-title-wrapper h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--color-vert) 0%, var(--color-brun) 100%);
  border-radius: 5px 15px 5px 15px; /* Forme arrondie asymétrique */
}

.section-title-wrapper .subtitle-badge {
  order: 2;
  display: inline-block;
  background-color: var(--color-jaune);
  color: var(--color-brun-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px 5px 20px 5px; /* Forme asymétrique */
  border-left: 4px solid var(--color-brun);
  margin-top: 0.5rem;
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
}

/* Styles des Boutons et Actions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-height: 44px; /* Dimension minimale tactile (44px) */
}

.btn-primary {
  background-color: var(--color-vert);
  color: var(--color-white);
  border-color: var(--color-vert);
}

.btn-primary:hover {
  background-color: var(--color-brun);
  border-color: var(--color-brun);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-brun);
  color: var(--color-white);
  border-color: var(--color-brun);
}

.btn-secondary:hover {
  background-color: var(--color-vert);
  border-color: var(--color-vert);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-vert);
  border-color: var(--color-vert);
}

.btn-outline:hover {
  background-color: var(--color-vert);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

/* En-tête et Navigation Fixe (Sticky Header) */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-vert);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-vert);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  width: 44px;
  height: 44px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--color-brun);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 11px;
}

.hamburger span:nth-child(1) {
  top: 13px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 27px;
}

/* Voile d'Ombrage Arrière-Plan Mobile (Overlay) */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

/* Tiroir de Navigation Mobile Coulissant */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-creme);
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.75rem 2rem 1.75rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    transition: right var(--transition-normal);
    gap: 0.5rem;
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(153, 89, 41, 0.12);
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active, .nav-link:hover {
    background-color: var(--color-jaune);
    color: var(--color-brun-dark);
  }

  .hamburger.active span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.active span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }
}

/* Section Hero d'Accueil */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(88, 128, 87, 0.88) 0%, rgba(153, 89, 41, 0.85) 100%), var(--hero-bg, url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?q=80&w=1200&auto=format&fit=crop')) center/cover no-repeat;
  color: var(--color-white);
  padding: 6rem 0 7rem 0;
  border-radius: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-section {
    padding: 4rem 0 5rem 0;
    border-radius: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-jaune);
}

.hero-description {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 620px;
}

@media (max-width: 900px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-actions {
    justify-content: center;
  }
}

.hero-stats-card {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-dark);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-left: 6px solid var(--color-brun);
}

@media (max-width: 576px) {
  .hero-stats-card {
    padding: 1.25rem;
    gap: 1rem;
  }
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-vert);
  display: block;
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 1.9rem;
  }
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* Disposition des Grilles et Cartes */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Style Général des Cartes */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .card {
    padding: 1.35rem;
  }
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-jaune);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 10px;
  background-color: var(--color-creme);
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cartes de Présentation des Produits */
.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.product-image {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.badge {
  background-color: var(--color-jaune);
  color: var(--color-brun-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}

.product-price {
  font-family: var(--font-heading);
  color: var(--color-vert-dark);
  font-size: 1.1rem;
  margin-top: auto;
  padding-top: 1rem;
}

/* Chronologie et Étapes du Processus de Fabrication */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

@media (max-width: 992px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 576px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

.process-step-card {
  background-color: var(--color-white);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  border-top: 5px solid var(--color-vert);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.process-step-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--color-brun);
}

.step-number {
  width: 36px;
  height: 36px;
  background-color: var(--color-brun);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
}

/* Filtres et Grille de la Galerie Photo */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

@media (max-width: 600px) {
  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    white-space: nowrap;
    padding: 0.5rem 1.15rem;
    font-size: 0.85rem;
  }
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-text);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 40px;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--color-vert);
  border-color: var(--color-vert);
  color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 240px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

@media (max-width: 768px) {
  .gallery-overlay {
    opacity: 1; /* Toujours visible sur mobile pour lisibilité sans hover */
  }
}

.gallery-caption {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Styles de la Carte Interactive (Google Maps / OpenStreetMap) */
#leaflet-map, .map-iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--color-white);
  z-index: 1;
}

@media (max-width: 576px) {
  #leaflet-map, .map-iframe {
    height: 320px;
  }
}

/* Styles du Formulaire de Contact */
.contact-form {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--color-vert);
}

@media (max-width: 576px) {
  .contact-form {
    padding: 1.5rem 1.25rem;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-vert);
  box-shadow: 0 0 0 3px rgba(88, 128, 87, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Grille des Boutons d'Action (Mail & WhatsApp Side-by-Side) */
.form-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-email {
  background-color: var(--color-vert);
  color: var(--color-white);
  border-color: var(--color-vert);
  width: 100%;
  min-height: 40px;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}

.btn-email svg,
.btn-whatsapp svg {
  width: 16px;
  height: 16px;
  margin-right: 0 !important;
}

.btn-email:hover {
  background-color: var(--color-vert-dark);
  border-color: var(--color-vert-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border-color: #25D366;
  width: 100%;
  min-height: 40px;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}

.btn-whatsapp:hover {
  background-color: #1ebc57;
  border-color: #1ebc57;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 576px) {
  .form-actions-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* Styles du Pied de Page (Footer) */
.footer {
  background-color: #1a251a; /* Vert sombre profond */
  color: #d1d5db;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 6px solid var(--color-brun);
}

@media (max-width: 768px) {
  .footer {
    padding-top: 3rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 550px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-title {
  color: var(--color-jaune);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-brun);
}

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

.footer-links a {
  color: #9ca3af;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Utilitaires d'Animations au Défilement (.fade-in-up) */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bouton Flottant WhatsApp (Bas à Droite) */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  z-index: 1050;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

