* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --terracotta: #a2583d;
  --cacao: #6a3e2b;
  --sable: #e9d9c4;
  --sepia: #c9a27a;
  --eucalyptus: #aebf9a;
  --kaki: #c3c7a4;
  --terre-cuite: #d8a57a;
  --ebene: #3c2d26;
  --ivoire: #fff8f2;
  --gris-the: #8a817c;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--ivoire);
  color: var(--ebene);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 0px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

/* Header */
header {
  background-color: var(--ivoire);
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--sable);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(60, 45, 38, 0.05);
}

.logo-container {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
  display: block;
}

.logo-subtitle {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--cacao);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 3px;
}

nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

nav > a,
.dropdown > a {
  color: var(--cacao);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  position: relative;
  padding: 10px 0;
  display: inline-block;
}

nav > a::after,
.dropdown > a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--terracotta);
  transition: all 0.3s;
  transform: translateX(-50%);
}

nav > a:hover,
.dropdown > a:hover {
  color: var(--terracotta);
}

nav > a:hover::after,
.dropdown > a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  min-width: 240px;
  box-shadow: 0 8px 30px rgba(60, 45, 38, 0.2);
  border-radius: 0px;
  padding: 15px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 15px;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-content a {
  display: block;
  padding: 12px 25px;
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--ebene);
  transition: all 0.2s;
  text-decoration: none;
}

.dropdown-content a::after {
  display: none;
}

.dropdown-content a:hover {
  background-color: var(--sable);
  padding-left: 30px;
}

.header-icons {
  display: flex;
  gap: 25px;
  align-items: center;
}

.lang-switcher {
  font-size: 12px;
  color: var(--gris-the);
  cursor: pointer;
  transition: color 0.3s;
}

.lang-switcher:hover {
  color: var(--terracotta);
}

.icon-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.3s;
  color: var(--cacao);
}

.icon-btn:hover {
  opacity: 0.7;
}

/* Hero Slider Section */
.hero-slider {
  height: 70vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 40px;
}

.hero-slide-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-slide-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  line-height: 1.8;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Nouveau style chic pour les boutons principaux */
.hero-cta,
.contactez-nous-btn,
.rituel-slide-cta,
.harmonie-cta,
.social-follow-btn,
.newsletter-btn {
  display: inline-block;
  padding: 8px 0;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid currentColor;
  color: white;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Effet de loading élégant au survol */
.hero-cta::before,
.contactez-nous-btn::before,
.rituel-slide-cta::before,
.harmonie-cta::before,
.social-follow-btn::before,
.newsletter-btn::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}

.hero-cta:hover::before,
.contactez-nous-btn:hover::before,
.rituel-slide-cta:hover::before,
.harmonie-cta:hover::before,
.social-follow-btn:hover::before,
.newsletter-btn:hover::before {
  width: 100%;
}

.hero-cta:hover,
.contactez-nous-btn:hover,
.rituel-slide-cta:hover,
.harmonie-cta:hover,
.social-follow-btn:hover,
.newsletter-btn:hover {
  padding-right: 15px;
  letter-spacing: 2px;
}

/* Couleurs spécifiques pour différents contextes */
.contactez-nous-btn,
.rituel-slide-cta,
.harmonie-cta,
.social-follow-btn {
  color: var(--ivoire);
}

.newsletter-btn {
  color: white;
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.active {
  background-color: white;
  width: 40px;
  border-radius: 6px;
}

/* Section commune - ESPACES RÉDUITS */
.section {
  padding: 40px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--cacao);
  margin-bottom: 8px;
  font-weight: 400;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gris-the);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Styles pour les sections avec fond terracotta - TEXTE BLANC */
section[style*='terracotta'] .section-title,
.terracotta-section .section-title {
  color: var(--ivoire);
}

section[style*='terracotta'] .section-subtitle,
.terracotta-section .section-subtitle {
  color: rgba(255, 248, 242, 0.9);
}

section[style*='terracotta'] p,
.terracotta-section p {
  color: var(--ivoire);
}

section[style*='terracotta'] h3,
.terracotta-section h3 {
  color: var(--ivoire);
}

section[style*='terracotta'] .infusion-name,
.terracotta-section .infusion-name {
  color: var(--ivoire);
}

section[style*='terracotta'] .infusion-description,
.terracotta-section .infusion-description {
  color: rgba(255, 248, 242, 0.85);
}

/* Maison YENE - Version simplifiée - ESPACES RÉDUITS */
.maison-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.maison-image {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(60, 45, 38, 0.15);
}

.maison-image img {
  width: 100%;
  height: auto;
  display: block;
}

.maison-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--ivoire);
  font-size: 1.05rem;
}

.contactez-nous-btn {
  margin-top: 15px;
}

/* Excellence YENE - NOUVEAUX DESSINS AU LIEU DE CERCLES */
.excellence-section {
  padding: 40px 60px;
  background-color: var(--ivoire);
}

.excellence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.excellence-card {
  text-align: center;
  padding: 25px 15px;
  transition: all 0.3s;
}

.excellence-card:hover {
  transform: translateY(-5px);
}

/* Nouveaux styles pour les icônes dessinées */
.excellence-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.excellence-icon i {
  font-size: 3.5rem;
  color: var(--terracotta);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.excellence-card:hover .excellence-icon i {
  color: var(--cacao);
  transform: scale(1.15);
}

.excellence-title {
  font-size: 1.3rem;
  color: var(--cacao);
  margin-bottom: 8px;
  font-weight: 500;
}

.excellence-description {
  font-size: 0.95rem;
  color: var(--gris-the);
  line-height: 1.6;
}

/* Les Infusions - ESPACES RÉDUITS */
.infusions-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.infusions-slider {
  overflow: hidden;
}

.infusions-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.infusions-slide {
  min-width: 100%;
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 0 20px;
}

.infusion-card {
  flex: 1;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.infusion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.infusion-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.infusion-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 248, 242, 0.95);
  color: var(--terracotta);
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.infusion-content {
  padding: 20px;
}

.infusion-name {
  font-size: 1.8rem;
  color: var(--ivoire);
  margin-bottom: 8px;
  font-weight: 400;
}

.infusion-description {
  font-size: 0.95rem;
  color: rgba(255, 248, 242, 0.85);
  line-height: 1.7;
  margin-bottom: 15px;
  min-height: 60px;
}

.infusion-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.price-tag {
  font-size: 1.4rem;
  color: var(--ivoire);
  font-weight: 600;
}

.add-to-cart {
  background-color: transparent;
  color: var(--ivoire);
  border: none;
  padding: 8px;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.3rem;
  position: relative;
  overflow: visible;
}

.add-to-cart:hover {
  color: white;
  transform: scale(1.2);
}

.add-to-cart i {
  margin: 0;
}

.add-to-cart-tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(60, 45, 38, 0.95);
  color: white;
  padding: 6px 12px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.add-to-cart:hover .add-to-cart-tooltip {
  opacity: 1;
}

.see-composition {
  display: inline-block;
  width: auto;
  margin-top: 12px;
  padding: 8px 0;
  background-color: transparent;
  color: var(--ivoire);
  border: none;
  border-bottom: 1px solid rgba(255, 248, 242, 0.4);
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.see-composition::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--ivoire);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.see-composition:hover {
  padding-right: 10px;
  letter-spacing: 2px;
  border-bottom-color: var(--ivoire);
}

.see-composition:hover::before {
  width: 100%;
}

/* Slider Controls - ESPACES RÉDUITS */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-arrow {
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  padding: 10px;
}

.slider-arrow:hover:not(:disabled) {
  transform: scale(1.3);
}

.slider-arrow:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.slider-arrow i {
  font-size: 2rem;
  color: white;
  transition: all 0.3s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover:not(:disabled) i {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
  background-color: white;
  width: 30px;
  border-radius: 5px;
}

/* Modal Composition */
.composition-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 45, 38, 0.85);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(5px);
}

.composition-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.composition-modal-content {
  background: white;
  width: 90%;
  max-width: 600px;
  border-radius: 0px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.composition-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--sable);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 1;
}

.composition-modal-close:hover {
  background-color: var(--terracotta);
  transform: rotate(90deg);
}

.composition-modal-close i {
  color: var(--cacao);
  font-size: 1.3rem;
}

.composition-modal-close:hover i {
  color: white;
}

.composition-modal-header {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--cacao) 100%);
  padding: 50px 30px 30px;
  color: white;
}

.composition-modal-header h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.composition-modal-header p {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.7;
}

.composition-modal-body {
  padding: 40px 30px;
}

.composition-modal-body h4 {
  font-size: 1.4rem;
  color: var(--cacao);
  margin-bottom: 15px;
  font-weight: 500;
}

.composition-modal-body p {
  font-size: 1.05rem;
  color: var(--ebene);
  line-height: 1.9;
}

/* Rituels Section - ESPACES RÉDUITS */
.rituels-section {
  padding: 40px 60px;
  background-color: var(--ivoire);
}

.rituels-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.rituels-slider {
  overflow: hidden;
}

.rituels-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.rituel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.rituel-slide-image {
  height: 500px;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(60, 45, 38, 0.2);
  position: relative;
}

.rituel-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.rituel-slide:hover .rituel-slide-image img {
  transform: scale(1.05);
}

.rituel-slide-content {
  padding: 30px;
}

.rituel-slide-title {
  font-size: 2.8rem;
  color: var(--cacao);
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 1px;
}

.rituel-slide-subtitle {
  font-size: 1.3rem;
  color: var(--terracotta);
  margin-bottom: 20px;
  font-weight: 500;
}

.rituel-slide-description {
  font-size: 1.05rem;
  color: var(--ebene);
  line-height: 1.9;
  margin-bottom: 25px;
}

.rituel-slide-cta {
  color: var(--terracotta);
}

/* Harmonies Section - ESPACES RÉDUITS */
.harmonies-section {
  padding: 35px 60px !important;
}

.harmonies-section .section-header {
  margin-bottom: 20px;
}

.harmonies-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 80px;
}

.harmonies-slider {
  overflow: hidden;
}

.harmonies-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.harmonie-slide {
  min-width: 100%;
  padding: 20px 60px;
  background: transparent;
  border-radius: 0;
  text-align: center;
}

.harmonie-slide h3 {
  font-size: 2.2rem;
  color: var(--cacao);
  margin-bottom: 10px;
}

.harmonie-slide .duration {
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 15px;
  font-weight: 600;
}

.harmonie-slide p {
  font-size: 1.05rem;
  color: var(--ebene);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Social Feeds Section - ESPACES RÉDUITS */
.social-feeds-section {
  padding: 40px 60px;
  background-color: var(--ivoire);
}

.social-feeds-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.social-feed {
  background: white;
  border-radius: 0px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(60, 45, 38, 0.08);
  transition: all 0.3s;
}

.social-feed:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(60, 45, 38, 0.12);
}

.social-feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sable);
}

.social-icon-large {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.instagram-icon {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.facebook-icon {
  background: #1877f2;
}

.social-feed-info h3 {
  font-size: 1rem;
  color: var(--cacao);
}

.social-feed-info p {
  color: var(--gris-the);
  font-size: 0.8rem;
}

/* Post à la une */
.social-featured-post {
  width: 100%;
  height: 200px;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(60, 45, 38, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.social-featured-post:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(60, 45, 38, 0.15);
}

.social-featured-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-follow-btn {
  width: 100%;
  padding: 10px;
  border-radius: 0px;
  font-size: 0.85rem;
  color: var(--terracotta);
}

/* Community Section - ESPACES RÉDUITS */
.community-section {
  background: linear-gradient(135deg, var(--eucalyptus) 0%, var(--kaki) 100%);
  padding: 45px 60px;
  text-align: center;
}

.community-content {
  max-width: 800px;
  margin: 0 auto;
}

.community-title {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 12px;
  font-weight: 400;
}

.community-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid white;
  background: transparent;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  padding: 12px 30px;
  border-radius: 0px;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: var(--ebene);
  color: var(--sable);
  padding: 50px 60px 25px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--terre-cuite);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p {
  line-height: 1.7;
  color: var(--sable);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--sable);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
  display: inline-block;
}

.footer-section ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--terre-cuite);
  transition: width 0.3s;
}

.footer-section ul li a:hover {
  color: var(--terre-cuite);
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(233, 217, 196, 0.2);
  color: var(--gris-the);
}

/* Responsive */
@media (max-width: 1024px) {
  .excellence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-feeds-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .infusions-slide {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  nav {
    position: fixed;
    top: 71px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 71px);
    background-color: var(--ivoire);
    flex-direction: column;
    padding: 30px;
    transition: left 0.3s;
    gap: 25px;
    overflow-y: auto;
  }

  nav.active {
    left: 0;
  }

  .hero-slide-content h1 {
    font-size: 2.5rem;
  }

  .hero-slide-content p {
    font-size: 1.1rem;
  }

  .section {
    padding: 30px 20px;
  }

  .harmonies-section {
    padding: 25px 20px !important;
  }

  .section-title {
    font-size: 2rem;
  }

  .maison-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .excellence-grid {
    grid-template-columns: 1fr;
  }

  .infusions-slider-container {
    padding: 0 20px;
  }

  .infusions-slide {
    flex-direction: column;
    gap: 20px;
  }

  .slider-arrows {
    display: none;
  }

  .community-title {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-feeds-section {
    padding: 30px 20px;
  }

  .excellence-section {
    padding: 30px 20px;
  }

  .rituels-slider-container {
    padding: 0 20px;
  }

  .rituel-slide {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rituel-slide-image {
    height: 350px;
  }

  .rituel-slide-content {
    padding: 20px 0;
  }

  .rituel-slide-title {
    font-size: 2rem;
  }

  .harmonie-slide {
    padding: 15px 20px;
  }

  .harmonie-slide h3 {
    font-size: 1.8rem;
  }

  footer {
    padding: 40px 20px 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  .composition-modal-content {
    width: 95%;
    max-width: 500px;
  }

  .composition-modal-header {
    padding: 40px 25px 25px;
  }

  .composition-modal-header h3 {
    font-size: 2rem;
  }

  .composition-modal-header p {
    font-size: 1rem;
  }

  .composition-modal-body {
    padding: 30px 25px;
  }

  .composition-modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
}
