/* ============================================
   TIREA — Sélecteur de produit
   ============================================ */

.tirea-product-section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, sans-serif;
  color: #111;
}

.tirea-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* === GALERIE === */
.tirea-gallery { position: sticky; top: 40px; }

.tirea-main-image {
  background: #f8f8f8;
  border-radius: 24px;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 16px;
}

.tirea-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.tirea-thumbnail {
  background: #f8f8f8;
  border-radius: 12px;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.tirea-thumbnail.active { border-color: #1e6fc4; }
.tirea-thumbnail:hover { border-color: #ccc; }
.tirea-thumbnail.active:hover { border-color: #1e6fc4; }

.tirea-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* === INFOS PRODUIT === */
.tirea-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.05;
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.tirea-product-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* === SÉLECTEUR DE PACKS === */
.tirea-pack-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.tirea-packs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.tirea-pack {
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  position: relative;
}

.tirea-pack:hover { border-color: #ccc; }

.tirea-pack.selected {
  border-color: #1e6fc4;
  background: #f5f9ff;
}

.tirea-pack-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.tirea-pack.selected .tirea-pack-radio { border-color: #1e6fc4; }

.tirea-pack.selected .tirea-pack-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1e6fc4;
}

.tirea-pack-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.tirea-pack-info { flex: 1; }

.tirea-pack-name {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 2px;
}

.tirea-pack.selected .tirea-pack-name { color: #1e6fc4; }

.tirea-pack-detail {
  font-size: 13px;
  color: #777;
}

.tirea-pack-pricing { text-align: right; }

.tirea-pack-price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.tirea-pack-old-price {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
}

.tirea-pack-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #1e6fc4;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
}

.tirea-pack-badge.discount { background: #000; }

/* === TOTAL + CTA === */
.tirea-total-card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
}

.tirea-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tirea-total-label {
  font-size: 15px;
  color: #555;
}

.tirea-total-amount { text-align: right; }

.tirea-total-price {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  line-height: 1;
}

.tirea-total-shipping {
  display: inline-block;
  background: #d4f4dd;
  color: #1a7a3a;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

.tirea-cta-btn {
  width: 100%;
  background: #000;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s;
}

.tirea-cta-btn:hover { background: #1e6fc4; }
.tirea-cta-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.tirea-cta-btn svg { width: 22px; height: 22px; }

.tirea-cta-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* === BADGES RÉASSURANCE === */
.tirea-mini-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tirea-mini-badge {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

.tirea-mini-badge svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px;
  color: #1e6fc4;
  flex-shrink: 0;
  display: inline-block;
}

/* === LIEN FICHE COMPLÈTE === */
.tirea-full-link {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #666;
}

.tirea-full-link a {
  color: #1e6fc4;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

/* ============================================
   BLOC INFO (Stock + Réception sur une ligne)
   ============================================ */
.tirea-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

/* ============================================
   INDICATEUR DE STOCK
   ============================================ */
.tirea-stock-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f7fdf9;
  border: 1px solid #d4f4dd;
  border-radius: 12px;
  font-size: 14px;
  color: #555;
}

.tirea-stock-indicator strong {
  color: #1a7a3a;
  font-weight: 700;
}

.tirea-shipping-inline {
  color: #1a7a3a;
}

/* Point vert pulsant */
.tirea-stock-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #1ec973;
  border-radius: 50%;
  flex-shrink: 0;
}

.tirea-stock-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #1ec973;
  border-radius: 50%;
  animation: tirea-pulse 2s ease-out infinite;
}

@keyframes tirea-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* État rupture */
.tirea-stock-indicator.out-of-stock {
  background: #fef5f5;
  border-color: #f5d4d4;
}
.tirea-stock-indicator.out-of-stock .tirea-stock-dot {
  background: #d44;
}
.tirea-stock-indicator.out-of-stock .tirea-stock-dot::before {
  background: #d44;
  animation: none;
}
.tirea-stock-indicator.out-of-stock strong {
  color: #c33;
}

/* ============================================
   RÉCEPTION ESTIMÉE
   ============================================ */
.tirea-reception {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  font-size: 14px;
  color: #555;
}

.tirea-reception-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tirea-reception-icon svg {
  width: 16px;
  height: 16px;
  color: #1e6fc4;
}

.tirea-reception-text strong {
  color: #000;
  font-weight: 700;
}

/* Compteur d'expédition (réutilise style stock) */
.tirea-shipping-countdown #tireaTimerText {
  font-variant-numeric: tabular-nums;
  color: #1a7a3a;
}

.tirea-shipping-countdown {
  margin-bottom: 16px;
}

/* ============================================
   PAIEMENTS ACCEPTÉS
   ============================================ */
.tirea-payments {
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tirea-payments-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.tirea-payments-label svg {
  width: 14px;
  height: 14px;
  color: #1a7a3a;
}

.tirea-payments-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.tirea-pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 50px;
  padding: 4px 6px;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.tirea-pay-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.tirea-pay-more {
  background: #f0f0f0;
  color: #888;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* ============================================
   RESPONSIVE TABLETTE
   ============================================ */
@media (max-width: 1024px) {
  .tirea-product-section { padding: 70px 40px; }
  .tirea-product-grid { grid-template-columns: 1fr; gap: 50px; }
  .tirea-gallery {
    position: static;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .tirea-product-title { font-size: 44px; }
  .tirea-thumbnails { gap: 10px; }
}

/* ============================================
   RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 640px) {
  .tirea-product-section { padding: 50px 20px; }
  .tirea-product-grid { gap: 40px; }
  .tirea-main-image { border-radius: 18px; margin-bottom: 12px; }
  .tirea-thumbnails { gap: 8px; }
  .tirea-thumbnail { border-radius: 10px; }
  .tirea-product-title {
    font-size: 32px;
    letter-spacing: 0;
    margin-bottom: 16px;
  }
  .tirea-product-description { font-size: 15px; margin-bottom: 28px; }
  .tirea-pack-label { font-size: 11px; letter-spacing: 1.5px; }
  .tirea-pack { padding: 16px 16px; gap: 12px; }
  .tirea-pack-name { font-size: 16px; }
  .tirea-pack-detail { font-size: 12px; }
  .tirea-pack-price { font-size: 16px; }
  .tirea-pack-old-price { font-size: 12px; }
  .tirea-pack-badge { font-size: 9px; padding: 3px 8px; top: -8px; }
  .tirea-total-card { padding: 20px; }
  .tirea-total-price { font-size: 24px; }
  .tirea-cta-btn { padding: 18px; font-size: 15px; }
  .tirea-mini-badges { grid-template-columns: 1fr; gap: 10px; }
  .tirea-mini-badge { padding: 12px 14px; font-size: 13px; }

  /* Info-row : passe en colonne sur mobile */
  .tirea-info-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tirea-stock-indicator,
  .tirea-reception {
    font-size: 13px;
    padding: 10px 14px;
  }

  /* Paiements */
  .tirea-payments {
    padding: 10px 10px;
    flex-direction: column;
    gap: 8px;
  }
  .tirea-payments-label {
    font-size: 11px;
  }
  .tirea-pay-logo {
    height: 28px;
    width: 44px;
  }
}

@media (max-width: 380px) {
  .tirea-product-section { padding: 40px 16px; }
  .tirea-product-title { font-size: 28px; }
  .tirea-product-description { font-size: 14px; }
  .tirea-pack { padding: 14px 14px; }
  .tirea-pack-name { font-size: 15px; }
  .tirea-total-price { font-size: 22px; }
}

/* ============================================
   STYLES COMMUNS DES SECTIONS PRODUIT
   (utilisés par components, result, guide, final, lifestyle)
   ============================================ */
.tirea-components-section,
.tirea-result-section,
.tirea-guide-section,
.tirea-final-section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, sans-serif;
  color: #111;
  text-align: center;
}

.tirea-section-overline {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #1e6fc4;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.tirea-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.1;
  color: #000;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0;
}

.tirea-section-title .tirea-accent {
  color: #1e6fc4;
}

.tirea-section-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.tirea-section-subtitle strong {
  color: #000;
  font-weight: 600;
}

.tirea-section-quote {
  margin-top: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #1e6fc4;
  font-style: italic;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.tirea-section-quote strong {
  color: #000;
  font-style: normal;
  font-weight: 600;
}

.tirea-section-quote em {
  color: #555;
}

.tirea-accent {
  color: #1e6fc4;
  font-weight: 600;
}

/* ============================================
   SECTION 3 — COMPOSANTS
   ============================================ */
.tirea-components-section {
  background: #fafafa;
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

.tirea-components-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.tirea-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tirea-component-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid #eee;
  overflow: hidden;
}

.tirea-component-img img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.tirea-component-name {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
}

.tirea-component-detail {
  font-size: 13px;
  color: #777;
}

/* ============================================
   SECTION 4 — RÉSULTAT INSTANTANÉ (avant/après)
   ============================================ */
.tirea-result-wrapper {
  max-width: 700px;
  margin: 20px auto 0;
  position: relative;
}

.tirea-result-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 580px;
  margin: 0 auto 20px;
}

.tirea-result-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
}

.tirea-result-label.before {
  color: #999;
  background: #f0f0f0;
}

.tirea-result-label.after {
  color: white;
  background: #1e6fc4;
}

.tirea-result-image {
  max-width: 580px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8fafd 0%, #eef4fc 100%);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(30, 111, 196, 0.08);
  border: 1px solid rgba(30, 111, 196, 0.1);
}

.tirea-result-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 640px) {
  .tirea-result-image {
    padding: 20px;
    border-radius: 18px;
  }
  .tirea-result-label {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 6px 12px;
  }
}

/* ============================================
   SECTION 5 — GUIDE D'UTILISATION
   ============================================ */
.tirea-guide-section {
  background: white;
}

.tirea-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: 40px auto 0;
  position: relative;
}

.tirea-steps::before {
  content: '';
  position: absolute;
  top: 140px;
  left: 16%;
  right: 16%;
  height: 2px;
  background-image: linear-gradient(to right, #ddd 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}

.tirea-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tirea-step-illustration {
  width: 280px;
  max-width: 100%;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.tirea-step-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.tirea-step-gif {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #eee;
  background: white;
}

.tirea-step-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tirea-step-number {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 8px;
}

.tirea-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #000;
  font-weight: 600;
  margin-bottom: 14px;
}

.tirea-step-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 260px;
}

.tirea-step-text strong {
  color: #000;
  font-weight: 600;
}

/* ============================================
   SECTION 6 — RÉSULTAT FINAL
   ============================================ */
.tirea-final-section {
  background: #fafafa;
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

.tirea-final-image {
  max-width: 320px;
  margin: 30px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #1e6fc4;
  aspect-ratio: 1 / 1;
}

.tirea-final-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tirea-final-text {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 30px;
}

.tirea-final-text strong {
  color: #000;
  font-weight: 600;
}

.tirea-final-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #000;
  font-weight: 600;
  margin-bottom: 40px;
}

.tirea-final-cta {
  margin-top: 20px;
}

.tirea-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 14px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.tirea-final-btn:hover {
  background: #1e6fc4;
  color: white;
}

.tirea-final-btn svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   SECTION 7 — LIFESTYLE FINAL
   ============================================ */
.tirea-lifestyle-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 60px;
  font-family: 'Inter', -apple-system, sans-serif;
  color: #111;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tirea-lifestyle-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #f8f8f8;
}

.tirea-lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tirea-lifestyle-content {
  text-align: left;
}

.tirea-lifestyle-content .tirea-section-overline {
  margin-bottom: 16px;
}

.tirea-lifestyle-content .tirea-section-title {
  text-align: left;
  font-size: 48px;
  margin-bottom: 24px;
}

.tirea-lifestyle-text {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 36px;
}

.tirea-lifestyle-text strong {
  color: #000;
  font-weight: 600;
}

.tirea-lifestyle-section .tirea-final-cta {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .tirea-lifestyle-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 40px;
  }
  .tirea-lifestyle-content {
    text-align: center;
  }
  .tirea-lifestyle-content .tirea-section-title {
    text-align: center;
    font-size: 38px;
  }
  .tirea-lifestyle-image {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 640px) {
  .tirea-lifestyle-section {
    padding: 60px 20px;
    gap: 36px;
  }
  .tirea-lifestyle-content .tirea-section-title {
    font-size: 28px;
  }
  .tirea-lifestyle-text {
    font-size: 15px;
  }
}

/* ============================================
   RESPONSIVE TABLETTE (sections supplémentaires)
   ============================================ */
@media (max-width: 1024px) {
  .tirea-components-section,
  .tirea-result-section,
  .tirea-guide-section,
  .tirea-final-section {
    padding: 70px 40px;
  }

  .tirea-section-title { font-size: 42px; }
  .tirea-section-subtitle { font-size: 16px; }

  .tirea-components-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .tirea-component {
    grid-column: span 2;
  }
  .tirea-component:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .tirea-steps {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .tirea-steps::before {
    display: none;
  }

  .tirea-step-illustration { width: 240px; }
}

/* ============================================
   RESPONSIVE MOBILE (sections supplémentaires)
   ============================================ */
@media (max-width: 640px) {
  .tirea-components-section,
  .tirea-result-section,
  .tirea-guide-section,
  .tirea-final-section {
    padding: 60px 20px;
  }

  .tirea-section-overline {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .tirea-section-title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .tirea-section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .tirea-section-quote {
    font-size: 17px;
    margin-top: 40px;
  }

  .tirea-components-grid {
    gap: 20px;
  }
  .tirea-component-img {
    width: 100px;
    height: 100px;
  }
  .tirea-component-name { font-size: 14px; }
  .tirea-component-detail { font-size: 12px; }

  .tirea-step-illustration { width: 200px; }
  .tirea-step-gif {
    width: 70px;
    height: 70px;
  }
  .tirea-step-title { font-size: 22px; }
  .tirea-step-text { font-size: 14px; }

  .tirea-final-image { max-width: 240px; }
  .tirea-final-text { font-size: 16px; }
  .tirea-final-tagline { font-size: 22px; }
  .tirea-final-btn {
    padding: 16px 30px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .tirea-section-title { font-size: 26px; }
  .tirea-section-subtitle { font-size: 13px; }

  .tirea-component-img {
    width: 90px;
    height: 90px;
  }

  .tirea-step-illustration { width: 180px; }
  .tirea-final-image { max-width: 200px; }
  .tirea-final-tagline { font-size: 20px; }
}

/* ============================================
   SLIDER D'IMAGES (fade + flèches + swipe)
   ============================================ */
.tirea-main-image {
  position: relative;
  cursor: grab;
  user-select: none;
}

.tirea-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tirea-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.tirea-main-image .tirea-slide:first-child:not(.active) {
  position: absolute;
}

.tirea-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tirea-slider-arrow svg {
  width: 18px;
  height: 18px;
}

.tirea-slider-prev { left: 16px; }
.tirea-slider-next { right: 16px; }

.tirea-main-image:hover .tirea-slider-arrow {
  opacity: 1;
}

.tirea-slider-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
}

.tirea-slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 1024px) {
  .tirea-slider-arrow {
    width: 36px;
    height: 36px;
    opacity: 0.7;
  }
  .tirea-slider-prev { left: 10px; }
  .tirea-slider-next { right: 10px; }
}

@media (max-width: 640px) {
  .tirea-slider-arrow {
    width: 32px;
    height: 32px;
    opacity: 0.6;
  }
  .tirea-slider-arrow svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================
   ÉTOILES PRÉCISES (dégradé jaune/gris)
   ============================================ */
.tirea-stars-precise {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}

.tirea-stars-precise.tirea-stars-small {
  font-size: 15px;
}

.tirea-stars-bg {
  color: #e0e0e0;
}

.tirea-stars-fg {
  position: absolute;
  top: 0;
  left: 0;
  color: #f5b400;
  overflow: hidden;
  white-space: nowrap;
}

/* ============================================
   NOTE SOUS LE TITRE (sélecteur)
   ============================================ */
.tirea-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 20px;
  color: inherit;
  transition: opacity 0.2s;
}

.tirea-rating-link:hover {
  opacity: 0.7;
}

.tirea-rating-link,
.tirea-rating-link .tirea-stars-precise,
.tirea-rating-link .tirea-rating-value,
.tirea-rating-link .tirea-rating-count {
  text-decoration: none !important;
}

.tirea-rating-value {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.tirea-rating-count {
  font-size: 13px;
  color: #777;
  font-weight: 500;
}

/* ============================================
   SECTION AVIS — Container
   ============================================ */
.tirea-reviews-section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, sans-serif;
  color: #111;
  text-align: center;
  background: white;
}

.tirea-reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 8px;
  padding: 12px 24px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 50px;
}

.tirea-reviews-avg {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-left: 4px;
}

.tirea-reviews-count {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}

.tirea-reviews-mention {
  font-size: 12px;
  color: #888;
  margin-bottom: 50px;
  letter-spacing: 0.3px;
}

.tirea-photos-mention {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

/* ============================================
   CARROUSEL PHOTOS (horizontal)
   ============================================ */
.tirea-photos-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 auto 60px;
  max-width: 1200px;
  padding: 10px 0;
}

.tirea-photos-track {
  display: flex;
  gap: 16px;
  animation: tirea-photos-scroll 40s linear infinite;
  width: max-content;
}

.tirea-photos-carousel[data-paused="true"] .tirea-photos-track {
  animation-play-state: paused;
}

@keyframes tirea-photos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tirea-photo-item {
  flex-shrink: 0;
  width: 180px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f0f0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.tirea-photo-item:hover {
  transform: scale(1.03);
}

.tirea-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.tirea-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ccc;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.tirea-photos-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

.tirea-photos-fade-left {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 90%);
}

.tirea-photos-fade-right {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 90%);
}

/* ============================================
   ROULETTE AVIS (verticale)
   ============================================ */
.tirea-reviews-roulette {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 480px;
  overflow: hidden;
  background: #F3F3F3;
  border-radius: 24px;
  padding: 20px 60px;
}

.tirea-reviews-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: tirea-reviews-scroll 60s linear infinite;
}

.tirea-reviews-roulette[data-paused="true"] .tirea-reviews-track {
  animation-play-state: paused;
}

@keyframes tirea-reviews-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.tirea-reviews-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.tirea-reviews-fade-top {
  top: 0;
  background: linear-gradient(to bottom, #F3F3F3 0%, #F3F3F3 30%, transparent 100%);
}

.tirea-reviews-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, #F3F3F3 0%, #F3F3F3 30%, transparent 100%);
}

.tirea-reviews-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.tirea-reviews-arrow:focus,
.tirea-reviews-arrow:focus-visible,
.tirea-reviews-arrow:active {
  background: white !important;
  color: #555 !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.tirea-reviews-arrow:hover {
  background: white;
  color: #000;
}

.tirea-reviews-arrow svg {
  width: 16px;
  height: 16px;
}

.tirea-reviews-arrow-up {
  top: 8px;
}

.tirea-reviews-arrow-down {
  bottom: 8px;
}

.tirea-reviews-arrow:active {
  transform: translateX(-50%) scale(0.92);
}

/* ============================================
   LIGHTBOX PHOTOS
   ============================================ */
.tirea-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: tirea-lightbox-fade 0.2s ease;
}

.tirea-lightbox.active {
  display: flex;
}

@keyframes tirea-lightbox-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.tirea-lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
}

.tirea-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: white;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.tirea-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   RESPONSIVE TABLETTE
   ============================================ */
@media (max-width: 1024px) {
  .tirea-reviews-section { padding: 70px 40px; }
  .tirea-photo-item { width: 150px; height: 270px; }
  .tirea-reviews-roulette {
    height: 440px;
    padding: 20px 40px;
  }
  .tirea-reviews-fade {
    height: 80px;
  }
  .tirea-reviews-fade-top {
    background: linear-gradient(to bottom, #F3F3F3 0%, #F3F3F3 50%, transparent 100%);
  }
  .tirea-reviews-fade-bottom {
    background: linear-gradient(to top, #F3F3F3 0%, #F3F3F3 50%, transparent 100%);
  }
}

/* ============================================
   RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 640px) {
  .tirea-reviews-section { padding: 60px 20px; }
  .tirea-reviews-summary {
    margin: 20px 0 8px;
    padding: 10px 18px;
  }
  .tirea-reviews-fade {
    height: 80px;
  }
  .tirea-stars-precise {
    font-size: 16px;
  }
  .tirea-reviews-avg { font-size: 16px; }
  .tirea-reviews-mention,
  .tirea-photos-mention {
    font-size: 11px;
  }
  .tirea-reviews-mention { margin-bottom: 36px; }
  .tirea-photos-carousel { margin-bottom: 40px; }
  .tirea-photo-item {
    width: 120px;
    height: 210px;
    border-radius: 12px;
  }
  .tirea-photos-fade { width: 60px; }
  .tirea-reviews-roulette {
    height: 420px;
    padding: 16px 20px;
    border-radius: 18px;
  }
  .tirea-reviews-arrow {
    width: 32px;
    height: 32px;
  }
  .tirea-reviews-arrow svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================
   USE CASE CARDS
   ============================================ */
.tirea-usecase-card {
  background: white;
  border-radius: 14px;
  padding: 22px 24px;
  text-align: left;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
}

.tirea-usecase-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #1e6fc4;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(30, 111, 196, 0.25);
}

.tirea-usecase-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  margin-top: 4px;
  line-height: 1.3;
  padding-right: 140px;
}

.tirea-usecase-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tirea-usecase-card {
    padding: 20px 22px;
  }
  .tirea-usecase-title {
    font-size: 18px;
    padding-right: 120px;
  }
}

@media (max-width: 640px) {
  .tirea-usecase-card {
    padding: 18px 18px 16px;
  }
  .tirea-usecase-badge {
    top: -8px;
    right: 14px;
    font-size: 9px;
    padding: 4px 10px;
    letter-spacing: 1px;
  }
  .tirea-usecase-title {
    font-size: 16px;
    padding-right: 100px;
    margin-top: 6px;
    line-height: 1.3;
  }
  .tirea-usecase-text {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .tirea-usecase-title {
    font-size: 15px;
    padding-right: 0;
    padding-top: 14px;
  }
  .tirea-usecase-card {
    padding-top: 22px;
  }
}