/* =============================================
   MONIA — ÉMOTIONS CLÉS
   Light, spiritual, organic aesthetic
   Palette: raw milk (beige) + brick red + green
   ============================================= */

/* ---- POLICES LOCALES ---- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: optional;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: optional;
}
@font-face {
  font-family: 'Jost';
  src: url('/fonts/Jost-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: optional;
}
@font-face {
  font-family: 'Jost';
  src: url('/fonts/Jost-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: optional;
}
@font-face {
  font-family: 'Jost';
  src: url('/fonts/Jost-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: optional;
}

/* ---- TOKENS ---- */
:root {
  --beige:       #F5EFE0;
  --beige-dark:  #EDE4CF;
  --beige-mid:   #D9CEBA;
  --brick:       #9E3B2A;
  --brick-light: #B8503E;
  --brick-pale:  #F0DDD9;
  --green:       #4A6741;
  --green-light: #6B8F68;
  --green-pale:  #DDE8DA;
  --text:        #2C2218;
  --text-mid:    #5A4A38;
  --text-light:  #8C7A68;
  --white:       #FFFDF8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --radius:  12px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(44,34,24,0.08);
  --shadow-lg: 0 12px 48px rgba(44,34,24,0.12);

  --section-pad: clamp(64px, 10vw, 120px);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}
em { font-style: italic; color: var(--brick); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--brick);
  color: var(--white);
  border-color: var(--brick);
}
.btn-primary:hover {
  background: var(--brick-light);
  border-color: var(--brick-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(158,59,42,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--beige-mid);
}
.btn-ghost:hover {
  background: var(--beige-dark);
  border-color: var(--beige-dark);
}
.btn-outline {
  background: transparent;
  color: var(--brick);
  border-color: var(--brick);
}
.btn-outline:hover {
  background: var(--brick);
  color: var(--white);
}
.btn-full { width: 100%; text-align: center; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 64px);
  background: rgba(245,239,224,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217,206,186,0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}
.logo-ar {
  font-size: 1.6rem;
  color: var(--brick);
  font-family: 'Times New Roman', serif;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brick); }
.nav-cta {
  background: var(--brick);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--brick-light); opacity: 1; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 120px clamp(20px, 6vw, 80px) 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
  radial-gradient(circle at 80% 20%, rgba(74,103,65,0.06) 0%, transparent 60%),
  radial-gradient(circle at 20% 80%, rgba(158,59,42,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,103,65,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 560px;
  z-index: 1;
  animation: heroFadeIn 1s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 380px;
  animation: heroFadeIn 1.2s ease 0.3s both;
}
.hero-circle-outer {
  width: clamp(260px, 35vw, 340px);
  height: clamp(260px, 35vw, 340px);
  border-radius: 50%;
  border: 1.5px solid rgba(158,59,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spinSlow 40s linear infinite;
}
.hero-circle-outer::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(74,103,65,0.15);
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-circle-inner {
  text-align: center;
  animation: spinSlow 40s linear infinite reverse;
}
.hero-arabic {
  display: block;
  font-family: 'Times New Roman', serif;
  font-size: 2.8rem;
  color: var(--brick);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-arabic-sub {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
}
.hero-dot-1 {
  width: 14px; height: 14px;
  background: var(--brick);
  top: 10px; right: 40px;
  opacity: 0.6;
}
.hero-dot-2 {
  width: 8px; height: 8px;
  background: var(--green);
  bottom: 30px; left: 20px;
  opacity: 0.5;
}
.hero-dot-3 {
  width: 20px; height: 20px;
  background: var(--beige-mid);
  border: 2px solid var(--beige-dark);
  bottom: 80px; right: 0px;
}

/* ---- BANDEAU ---- */
.bandeau {
  overflow: hidden;
  background: var(--brick);
  color: var(--white);
  padding: 14px 0;
}
.bandeau-inner {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.02em;
  will-change: transform;
}
.bandeau-inner .sep {
  font-style: normal;
  opacity: 0.5;
  font-size: 0.7rem;
  align-self: center;
}

/* ---- SECTION COMMON ---- */
.section {
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text);
  font-weight: 300;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}
.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

/* ---- ABOUT ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin: 0 clamp(12px, 3vw, 48px);
}
.about-img-col {
  display: flex;
  justify-content: center;
}
.about-img-frame {
  position: relative;
}
.about-img-placeholder {
  width: 340px; height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--beige-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-light);
  font-size: 1.1rem;
  text-align: center;
  border: 1px solid var(--beige-mid);
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-tag {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--brick);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}
.about-text-col { padding: 48px 48px 48px 0; }
.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-body {
  color: var(--text-mid);
  margin-bottom: 40px;
  font-size: 0.98rem;
}
.about-qualifs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qualif-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--beige);
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
}
.qualif-icon {
  font-size: 1.3rem;
  color: var(--brick);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}
.qualif-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2px;
}
.qualif-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---- SERVICES ---- */
.services {
  background: var(--beige);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--beige-mid);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  background: var(--brick);
  color: var(--white);
  border-color: var(--brick);
}
.service-card--featured em,
.service-card--featured p,
.service-card--featured .service-list li {
  color: rgba(255,253,248,0.85);
}
.service-card--featured h3 { color: var(--white); }
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-icon {
  font-size: 1.5rem;
  color: var(--brick);
}
.service-card--featured .service-icon { color: rgba(255,253,248,0.7); }
.service-badge {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,253,248,0.15);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 400;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  flex-grow: 1;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
}
.service-card--featured .service-list li::before { color: rgba(255,253,248,0.5); }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-input {
  padding: 12px 16px;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius);
  background: var(--beige);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--green); }

/* ---- QUOTE ---- */
.quote-section {
  background: var(--green);
  padding: 80px clamp(20px, 8vw, 120px);
  text-align: center;
}
.quote-inner { max-width: 700px; margin: 0 auto; }
.quote-arabic {
  font-family: 'Times New Roman', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  direction: rtl;
  line-height: 1.6;
}
.quote-fr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255,253,248,0.9);
  margin-bottom: 12px;
}
.quote-ref {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255,253,248,0.80);
  text-transform: uppercase;
}

/* ---- TÉMOIGNAGES ---- */
.temoignages {
  background: var(--white);
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.temoignage-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--beige);
  border: 1px solid var(--beige-mid);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease;
  align-self: flex-start;
}
.temoignage-card:hover { transform: translateY(-4px); }
.temoignage-card--accent {
  background: var(--brick-pale);
  border-color: rgba(158,59,42,0.2);
}
.stars { color: var(--brick); font-size: 1.8rem; letter-spacing: 3px; }
.temoignage-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  flex-grow: 1;
}
.temoignage-auteur {
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- CONTACT ---- */
.contact {
  background: var(--beige);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-text p {
  color: var(--text-mid);
  margin-bottom: 28px;
  font-size: 1rem;
}
.contact-text .section-title { margin-bottom: 20px; }
.contact-info { margin-bottom: 20px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brick);
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.contact-link:hover { opacity: 0.75; }
.contact-link-icon { font-size: 1.1rem; }
.contact-note {
  font-size: 0.85rem !important;
  color: var(--green) !important;
  font-style: italic;
  margin-bottom: 0 !important;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige-mid);
  box-shadow: var(--shadow);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--beige);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brick);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 48px clamp(20px, 6vw, 80px);
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.footer-logo .logo-ar { color: var(--brick-light); font-size: 1.6rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,253,248,0.5);
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,253,248,0.75);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,253,248,0.8); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,253,248,0.65);
  letter-spacing: 0.04em;
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.temoignage-card:nth-child(2) { transition-delay: 0.1s; }
.temoignage-card:nth-child(3) { transition-delay: 0.2s; }
.qualif-item:nth-child(2) { transition-delay: 0.1s; }
.qualif-item:nth-child(3) { transition-delay: 0.2s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .hero-actions { justify-content: center; }
  .hero-visual { width: 280px; height: 280px; }
  .hero-circle-outer { width: 260px; height: 260px; }

  .about {
    grid-template-columns: 1fr;
    margin: 0;
    border-radius: 0;
    padding: var(--section-pad) clamp(20px, 5vw, 60px);
  }
  .about-text-col { padding: 0; }
  .about-img-col { order: -1; }
  .about-img-placeholder { width: 100%; max-width: 340px; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--beige);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--beige-mid);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .hero-sub br { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }

  .quote-section { padding: 60px 24px; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- BOUTON INSTAGRAM ---- */
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(253,29,29,0.25);
}
.btn-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,29,29,0.35);
  opacity: 0.92;
}

/* ---- BOUTON TÉLÉPHONE ---- */
.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--white);
  background: var(--green);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(74,103,65,0.25);
}
.btn-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,103,65,0.35);
  background: var(--green-light);
}

/* ---- HORAIRES ---- */
.contact-horaires {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--beige-mid);
  box-shadow: var(--shadow);
  max-width: 260px;
}
.horaires-titre {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.horaires-liste {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.horaires-liste li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--beige-dark);
}
.horaires-liste li:last-child { border-bottom: none; padding-bottom: 0; }
.jour { color: var(--text); font-weight: 400; }
.heure.open { color: var(--green); font-weight: 500; }
.heure.closed { color: var(--text-mid); font-style: italic; }

/* ---- Supprimer soulignement TinyMCE ---- */
.produit-content u,
.article-content u,
.blog-content u { text-decoration: none; }

/* ---- Styles TinyMCE — préserver les styles inline ---- */
.tinymce-content p[style],
.tinymce-content span[style],
.tinymce-content h1[style],
.tinymce-content h2[style],
.tinymce-content h3[style],
.tinymce-content li[style] {
  color: unset;
  font-size: unset;
  text-align: unset;
}
.tinymce-content u { text-decoration: none; }