:root {
  --primary: #c5a47e; /* Or Homi */
  --black: #111111;
  --white: #ffffff;
  --grey-bg: #f8f8f8;
  --transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}
/* Header Adaptatif */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
/* État au Scroll */
header.scrolled {
  background-color: var(--white);
  color: var(--primary);
  border-bottom: 1px solid #e0e0e0;
}
/* Pas de changement de fond au hover (Ta demande) */
header:hover {
  background-color: transparent;
}
header.scrolled:hover {
  background-color: var(--white);
}
.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Logo & Icon */
.logo {
  display: flex;
  align-items: center;
  gap: 0px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  color: gray;
}
.logo img {
  width: 170px; /* Garde les proportions */
  height: 170px; /* Taille adaptée pour ne pas déborder du header de 80px */
  margin-left: -90px; /* "Aspire" le texte vers l'icône pour un look soudé */
  object-fit: contain;
}
/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  color: white;
}
nav ul li a {
  text-decoration: none;
  color: gray;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  padding-bottom: 31px; /* Alignement sur la ligne du header */
}
/* Barre Active Précise */
nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}
/* Icons Section */
.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  color: gray;
}
.cart-icon {
  position: relative;
  color: gray;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #ff4757; /* Rouge Jotech */
  color: white;
  font-size: 11px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex; /* Important pour centrer le chiffre */
  align-items: center;
  justify-content: center;
}
/*================================================
  HERO SECTION (STYLE HOMI)
================================================*/
/* Importation des polices Homi */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');
.hero {
  min-height: 100vh;
  width: 100%;
  /* 1. On retire le dégradé noir pour plus de clarté comme sur Homi */
  /* 2. On utilise '80% center' pour décaler l'image vers la droite */
  background: url('image/image/iphone.png') no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center; /* Garde le texte centré verticalement */
  position: relative;
  padding-top: 80px; /* Laisse de la place pour le header sans écraser l'image */
  overflow: hidden;
}
.hero-container {
  width: 100%;
  max-width: 1400px; /* Largeur maximale de la grille */
  margin: 0 auto; /* Centre la grille sur les très grands écrans */
  padding-left: 5%; /* Réduit pour coller plus à gauche comme Homi */
  display: flex;
  justify-content: flex-start; /* Aligne le contenu au début (gauche) */
  align-items: flex-start;
  padding-top: 120px; /* Crée de l'espace sous le header */
  padding-bottom: 50px;
  text-align: left;
  flex-direction: column;
}
.hero-text-block {
  max-width: 600px;
  text-align: left; /* Force l'alignement du texte à gauche */
  margin-left: 0; /* Supprime toute marge parasite à gauche */
}
.mode {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: white; /* Couleur dorée Homi */
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 0;
  margin-bottom: 10px;
}
.hero h1 {
  font-family: 'Playfair Display', serif; /* Police Serif identique à Homi */
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.03;
  margin-bottom: 25px;
  font-weight: 700;
  color: white;
}
.hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
  font-weight: 300;
  color: white;
}
/* Bouton Explore rectangulaire */
.btn-explore {
  display: inline-block;
  background: #c5a47e;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 600;
  transition: 0.3s ease;
  margin-top: 20px; /* Espace par rapport au texte descriptif */
}
.btn-explore:hover {
  background: #ffffff;
  color: #000000;
}
/* Conteneur du bouton Play */
#openVideo {
  position: absolute;
  right: 10%; /* Le pousse vers la droite comme sur l'image Homi */
  top: 50%; /* Le centre verticalement */
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
/* Bouton Play (Triangle blanc sans bordure) */
.play-triangle {
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 40px solid #ffffff; /* Triangle blanc pur comme Homi */
  cursor: pointer;
  transition: transform 0.3s ease;
}
.play-triangle:hover {
  transform: scale(1.1);
}
/* Modal pour masquer la vidéo de l'interface principale */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}
/*================================================
  SECTION SERVICES (FEATURES) - STYLE LUXE CAMPUS
================================================*/
/* Importation des polices : Playfair pour les titres (Luxe) et Poppins pour le texte (Moderne) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,600&family=Poppins:wght@300;400;500&display=swap');
:root {
  --arisu-gold: #a68e73; /* Couleur dorée/bronze comme Homi */
  --arisu-black: #1a1a1a; /* Noir profond pour le texte */
  --arisu-gray: #777777; /* Gris pour les descriptions */
  --bg-light: #ffffff; /* Fond blanc pur */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/*C'est le RECTANGLE BLANC qui remonte sur l'image */
.features-container {
  min-width: 1300px;
  margin: 0 auto;
  background: #ffffff; /* Fond blanc pur */
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  /* L'effet Homi : on remonte le bloc de 60px pour chevaucher l'image */
  margin-top: 60px;
  align-items: flex-start;
  /* Ombre très douce pour l'aspect luxe */
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  position: relative;
  z-index: 20; /* Pour passer au-dessus de l'image du hero */
}
.features-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 80px;
  gap: 60px;
  background-color: var(--bg-light);
  text-align: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
  flex: 1; /* Chaque bloc occupe 33% du rectangle */
  padding: 0 20px;
  /* Optionnel : ajoute une ligne de séparation entre les blocs sauf le dernier */
  border-right: 1px solid #f0f0f0;
}
.features-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 80px;
  gap: 60px;
  background-color: var(--bg-light);
  text-align: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
  flex: 1; /* Chaque bloc occupe 33% du rectangle */
  padding: 0 20px;
  /* Optionnel : ajoute une ligne de séparation entre les blocs sauf le dernier */
  border-right: 1px solid #f0f0f0;
}
.feature-item:last-child {
  border-right: none;
}
/* Le cercle de l'icône (Inspiré du design minimaliste de Homi) */
.feature-icon-container {
  width: 90px;
  height: 90px;
  border: 1px solid #e5e5e5; /* Bordure très fine */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  background-color: transparent;
  transition: var(--transition-smooth);
  cursor: default;
}
.feature-icon-inner {
  font-size: 1.6rem;
  color: var(--arisu-gold);
  transition: var(--transition-smooth);
}
/* Effet au survol de l'élément entier */
.feature-item:hover .feature-icon-container {
  background-color: var(--arisu-gold);
  border-color: var(--arisu-gold);
  transform: translateY(-8px); /* Petit saut élégant */
  box-shadow: 0 10px 20px rgba(166, 142, 115, 0.2);
}
.feature-item:hover .feature-icon-inner {
  color: #ffffff; /* L'icône devient blanche sur le fond doré */
}
/* Style du Titre (Le "Homi Look") */
.feature-item h3 {
  font-family:
    'Playfair Display', serif; /* Police à empattement pour le côté Premium */
  font-size: 1.35rem;
  color: var(--arisu-black);
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize; /* "Style Premium" au lieu de "STYLE PREMIUM" pour plus de douceur */
}
/* Style du Texte de description */
.feature-item p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--arisu-gray);
  line-height: 1.8; /* Grand interligne pour la lisibilité */
  max-width: 280px;
  font-weight: 300;
  margin: 0 auto;
}
/* --- ADAPTATION MOBILE (RESPONSIVE) --- */
@media (max-width: 990px) {
  .features-section {
    grid-template-columns: 1fr; /* Une seule colonne sur tablette/mobile */
    padding: 60px 5%;
    gap: 50px;
  }
  .feature-icon-container {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
}
/*CATEGORIES*/
.categories-container {
  padding: 80px 8%; /*decole tout vers la droite*/
  background: #ffffff;
}
.section-title {
  /*CENTRE CATEGORIES*/
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  margin-bottom: 50px;
  color: #1a1a1a;
}
.ARISU-categories-grid {
  display: grid; /*les griles*/
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.ARISU-cat-card {
  height: 380px; /*centralise les produits*/
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding-left: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
}
/* Couleurs de fond pastel style Homi */
.cat-grey {
  background-color: #dce1e8;
}
.cat-orange {
  background-color: #fce3cc;
}
.cat-pink {
  background-color: #fbe2e2;
}
.cat-blue {
  background-color: #d8eef5;
}

/* L'image fare positionnée à droite */
.cat-img-fare {
  position: absolute;
  right: -10px;
  bottom: 20px;
  height: 85%; /* Ajustement de la taille */
  width: auto;
  object-fit: contain;
  z-index: 5;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Ombre naturelle sous l'objet sans fond */
  filter: drop-shadow(-15px 15px 25px rgba(0, 0, 0, 0.15));
}
.ARISU-cat-card:hover {
  transform: translateY(-5px);
}
/* Adaptation Mobile */
@media (max-width: 900px) {
  .ARISU-categories-grid {
    grid-template-columns: 1fr;
  }
  .ARISU-cat-card {
    height: 320px;
    padding-left: 30px;
  }
  .cat-content h3 {
    font-size: 2.2rem;
  }
  .cat-img-fare {
    height: 70%;
    right: 0;
  }
}
/* --- SECTION NEW ARRIVAL (STYLE LUXE HOMI) --- */
.arisu-new-arrival {
  background-color: #d1e2e1; /*couleur Vert d'eau Homi */
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh; /* Presque toute la hauteur de l'écran */
  overflow: visible;
}
.arrival-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* Espace équilibré entre image et texte */
}
/* L'image doit dominer la section */
.arrival-image-box {
  flex: 1; /* Plus large que le texte */
  display: flex;
  justify-content: flex-start; /* Aligne l'image à gauche du conteneur */
}
.arrival-img {
  width: 110%; /* L'image est volontairement plus grande que son conteneur */
  min-width: 650px;
  height: auto;

  filter: drop-shadow(40px 40px 60px rgba(0, 0, 0, 0.1));
  transform: scale(1.4) translateX(-50px); /* Effet de débordement style Homi */
  z-index: 1;
}
/* Bloc de texte */
.arrival-text-content {
  flex: 1;
  z-index: 2;
  padding-left: 30px; /* Espace entre l'image et le texte */
}
.promo-badge {
  color: #0d7477; /* Couleur secondaire Homi */
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}
.arrival-title {
  font-family: 'Playfair Display', serif; /* Police ARISU */
  font-size: 4.5rem;
  color: #1a1a1a;
  line-height: 1.05;
  margin-bottom: 25px;
  word-wrap: break-word;
}

.arrival-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Bouton Explore Now */
.btn-explore-arrival {
  display: inline-block;
  padding: 18px 45px;
  background-color: #0d7477;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.btn-explore-arrival:hover {
  background-color: #085a5c;
  transform: translateY(-3px);
}
/* Responsive pour Mobile */
@media (max-width: 1024px) {
  .arrival-container {
    flex-direction: column;
    text-align: center;
  }
  .arrival-img {
    transform: scale(1) translateX(0);
    width: 100%;
  }
  .arrival-title {
    font-size: 3.5rem;
  }
}
/* --- NEWSLETTER FULL BANNER --- */
.newsletter-full-banner {
  background: url('image/image/television.png') no-repeat center center/cover;
  padding: 100px 0;
  position: relative;
  margin: 50px 0;
}
.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.newsletter-content {
  max-width: 600px;
  background: rgba(255, 255, 255, 0); /* Transparent */
}
.newsletter-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: black;
  margin-bottom: 20px;
}
.newsletter-content p {
  color: black;
  margin-bottom: 30px;
}

/* Le Formulaire Inline */
.newsletter-form-inline {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 100%;
}

.newsletter-form-inline input {
  flex-grow: 1; /* Force l'input à prendre tout l'espace disponible */
  border: none;
  background: white;
  padding: 15px 0;
  font-size: 1rem;
  outline: none;
  color: #000;
}

.newsletter-form-inline input::placeholder {
  color: #888;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.newsletter-form-inline button {
  background-color: #a8947a; /* Teinte dorée/beige Homi */
  color: white;
  border: none;
  padding: 15px 40px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.newsletter-form-inline button:hover {
  background-color: #8e7d66; /* Un peu plus sombre au survol */
}
/* --- SECTION TRENDING (STYLE HOMI) --- */
.trending-section {
  padding: 90px 0;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}
.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 50px;
  padding: 0 20px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; /* Grand format comme Homi */
  color: #1a1a1a;
  margin: 0;
}
.homi-trending-section {
  padding: 80px 0;
  background-color: #fff;
}

.homi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn-browse-shop {
  padding: 10px 20px;
  background-color: #f8f8f8;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #eee;
  transition: 0.3s;
  /*metre le bouton a droite*/
}
.btn-browse-shop:hover {
  background-color: #b5a489; /* Changement vers la couleur ARISU au survol */
  color: white;
}
/* Grille de 4 colonnes */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 produits alignés */
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Cadre de l'image (Gris clair Homi) */
.product-img-container {
  background-color: #f6f6f6; /* Gris Homi */
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.product-img-container img {
  max-width: 85%;
  height: auto;
  mix-blend-mode: multiply; /* Fusionne le blanc de l'image avec le gris */
  transition: transform 0.5s ease;
}
/* Overlay du bouton "Add to cart" noir */
.product-overlay {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 55px;
  transition: bottom 0.3s ease;
}
.trending-card:hover .product-overlay {
  bottom: 0; /*LE BOUTON VIENT CA PAR*/
}
.trending-card:hover img {
  transform: scale(1.1);
}
/* Infos Produits */
.product-info {
  text-align: center;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.price {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.old-price {
  text-decoration: line-through;
  color: #bbb;
  font-size: 0.9rem;
  margin-left: 8px;
}
.stars {
  color: #ccae62; /* Or pour les étoiles */
  font-size: 0.8rem;
}
/* Badges Promo Noirs */
.badge-promo {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #1a1a1a;
  color: white;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 5;
}
/* BOUTON */
.btn-add-cart {
  background: #b59b6b;
  border: none;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.btn-add-cart:hover {
  background: black;
}
/* Responsive */
@media (max-width: 1024px) {
  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  .trending-grid {
    grid-template-columns: 1fr;
  }
}
/*================================================
  6. FOOTER (Épuré et Noir)
================================================*/
.site-footer {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding-top: 60px;
}
.footer-widgets {
  display: grid;
  /* Auto-fit crée automatiquement le nombre de colonnes selon la place */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5% 60px 5%;
}
.footer-widget-col {
  padding: 0 0px;
  border-right: 1px solid rgba(255, 255, 255, 0.1); /* Ligne verticale */
}
.footer-widget-col:last-child {
  border-right: none; /* Pas de ligne sur la dernière colonne */
}

.footer-widget-col h4 {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-widget-col ul {
  list-style: none;
} /*reture les point*/
.footer-widget-col ul li {
  margin-bottom: 15px;
}
.footer-widget-col ul li a {
  color: #999;
  text-decoration: none; /*retire le soulignement*/
  font-size: 0.9rem;
  transition: 0.3s;
}
.footer-widget-col ul li a:hover {
  color: var(--white);
}
/* Newsletter Style */
.newsletter input {
  width: 100%;
  padding: 15px;
  background: #222; /*fond*/
  border: none;
  color: white; /*texte blanc*/
  margin-bottom: 15px;
  margin-top: 20px;
}
.newsletter button {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
/* Style de l'overlay (fond sombre) */
.modal-overlay {
  display: none; /* Caché par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Contenu de la popup */
.modal-content {
  background: #fff;
  color: #333;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Boutons */
.modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.btn-yes,
.btn-no {
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-yes {
  background: #a8947a;
  color: white;
} /* Couleur Homi */
.btn-no {
  background: #eee;
  color: #555;
}

.btn-yes:hover {
  background: #000;
}
.btn-no:hover {
  background: #ddd;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
.footer-newsletter-form button:hover {
  background-color: #8e7354;
  transform: translateY(-2px);
}
.payment-icons {
  margin-top: 25px;
  font-size: 1.5rem;
  display: flex;
  gap: 50px;
  opacity: 0.6;
}
.payment-methods img {
  height: 20px;
}
/* Copyright Bar */
.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  font-size: 0.85rem;
}
.social-icons {
  display: flex;
  gap: 20px;
}
.social-icons a {
  color: #555;
  font-size: 1rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #fff;
}
/*================================================
  7. RESPONSIVE DESIGN (Media Queries)
================================================*/

/* Tablette (Max 992px) */
@media (max-width: 992px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablette */
  }
}

/* Smartphone (Max 600px) */
@media (max-width: 600px) {
  .footer-widgets {
    grid-template-columns: 1fr; /* 1 seule colonne */
    text-align: center;
  }

  .footer-widget-col {
    border-right: none;
    margin-bottom: 40px;
  }

  .payment-icons,
  .social-icons {
    justify-content: center;
  }

  .footer-copyright-bar {
    flex-direction: column; /* Texte au dessus des icônes */
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/*================================================
  7. UTILS & FLOATS
================================================*/
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
