/* css/pages/drop.css */
/* @import en tête de feuille (obligatoire CSS) — sinon le navigateur peut ignorer l’import et la modale partage perd ses styles. */
@import url("../components/modal-share-networks-oLwc8vG.css");

/* Annonce lecteur d’écran (ex. copie lien partage) — pas d’affichage visuel. */
.drop-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --- DROP PAGE --- */
/* Espace sous la nav fixe + bandeau live (voir header-footer.css) — ne pas descendre en dessous sous peine de masquer le haut du panneau (timer, etc.). */
.drop-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-xxl);
  padding-top: 200px;
  padding-bottom: var(--space-section);
  min-width: 0;
}

.drop-page-layout .left-section,
.drop-page-layout .right-section {
  min-width: 0;
}

.drop-guild-unlock-badge {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--secondary-color, #5f27cd);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  text-align: center;
}

/* Gallery */
.main-img-box {
  width: 100%;
  height: clamp(220px, 52vw, 500px);
  max-height: min(500px, 72vh);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at center, white 30%, rgba(95, 39, 205, 0.05) 100%);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 30px);
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.main-img-box img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.3s ease; }
.main-img-box:hover img { opacity: 0.9; }

.main-img-box .card-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
}

.main-img-box .card-badges .badge {
  background: var(--accent-blue);
  font-size: 1rem;
  padding: 8px 16px;
}

/* Lightbox image : .modal-overlay / .modal-content de base viennent de theme/components/modal-overlay-base.css (core). */

#imageModal .modal-content {
  background: transparent;
  box-shadow: none;
  max-width: 90vw;
  width: 800px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#imageModal img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: white;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.image-modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
  transition: var(--transition-fast);
}

.image-modal-close:hover {
  background: var(--secondary-color);
  color: white;
  transform: scale(1.1);
}
.thumb-gallery { display: flex; gap: 15px; margin-top: 15px; padding-bottom: 5px; }
.thumb { width: 90px; height: 90px; min-width: 90px; border-radius: var(--radius-md); background: white; cursor: pointer; border: 3px solid transparent; transition: var(--transition); box-shadow: var(--shadow-card); display: flex; align-items: center; justify-content: center; padding: 10px;}
.thumb:hover, .thumb.active { border-color: var(--secondary-color); transform: translateY(-3px); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Tabs */
.details-card { background: white; border-radius: var(--radius-xl); padding: 0; box-shadow: var(--shadow-card); border: 1px solid var(--border-color); margin-top: 30px; overflow: hidden; }
.drop-tabs { display: flex; flex-wrap: nowrap; gap: 0; overflow-x: auto; border-bottom: 2px solid var(--border-color); background: var(--bg-main); }

.thumb-gallery,
.drop-tabs {
  scrollbar-width: none;
}
.thumb-gallery::-webkit-scrollbar,
.drop-tabs::-webkit-scrollbar {
  display: none;
}
.tab { flex: 1; display: flex; align-items: center; justify-content: center; padding: 18px 10px; font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; color: var(--text-muted); cursor: pointer; transition: var(--transition); position: relative; border-radius: 0; white-space: nowrap; border-right: none; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.tab:first-child { border-top-left-radius: calc(var(--radius-xl) - 1px); }
.tab i { margin-right: 8px; opacity: 0.7; transition: var(--transition); }
.tab:hover { color: var(--primary-color); background: rgba(95, 39, 205, 0.05); }
.tab.active { color: var(--primary-color); background: white; font-weight: 600; border-bottom: 2px solid white; z-index: 2; }
.tab.active i { color: var(--secondary-color); opacity: 1; }
.tab-content-area { padding: 40px; font-size: 1.1rem; color: var(--text-dark); }
.tab-content-area h2 { font-size: 2.2rem; margin-bottom: 25px; color: var(--primary-color); font-weight: 800; }
.tab-content-area h3 { font-size: 1.4rem; color: var(--text-dark); margin: 30px 0 15px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.tab-content-area p { margin-bottom: 20px; line-height: 1.8; }
.tab-pane { display: none; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tab-pane.active { display: block; }

/* Info Blocks & Rules */
.info-block {
  margin-top: 25px;
  padding: 25px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #fff;
}
.info-block.success {
  border: 2px dashed var(--accent-yellow);
  background: linear-gradient(135deg, #fffbf0, rgba(254, 202, 87, 0.08));
}

.rules-box { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 30px; margin-top: 20px; }
.rules-box h4 { font-size: 1.25rem; margin-bottom: 20px; color: var(--text-dark); display: flex; align-items: center; gap: 10px; }
.rules-box h4 i { color: var(--secondary-color); }
.rules-list { list-style: none; padding: 0; }
.rules-list li {
  position: relative; padding-left: 35px; margin-bottom: 18px; color: var(--text-dark); line-height: 1.7; font-weight: 500; font-size: 1.05rem;
}
.rules-list li > i {
  position: absolute; left: 0; top: 5px; font-size: 1.1rem; color: #1dd1a1;
}

/* Right Panel & Purchasing */
.sticky-buy-panel,
.social-proof-section {
  padding: 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.sticky-buy-panel {
  position: sticky;
  top: 120px;
  text-align: center;
}

/* Menu flottant admin (fiche drop) — hors grille, sous la nav + bandeau live */
.drop-admin-float {
  position: fixed;
  z-index: 950;
  top: calc(var(--nav-bar-height, 85px) + var(--live-ticker-height, 40px) + 12px);
  right: max(16px, env(safe-area-inset-right, 0px));
  max-width: min(288px, calc(100vw - 24px));
  text-align: left;
}

.drop-admin-float__toggle {
  list-style: none;
  cursor: pointer;
  border-radius: var(--radius-round);
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 18px rgba(45, 52, 54, 0.12);
}

.drop-admin-float__toggle::-webkit-details-marker {
  display: none;
}

.drop-admin-float__toggle-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 10px 12px;
  border-radius: var(--radius-round);
  border: 1px solid color-mix(in srgb, var(--accent-blue, #74b9ff) 40%, var(--border-color));
  background: linear-gradient(135deg, #fff 0%, color-mix(in srgb, var(--bg-light, #f8f9fa) 88%, var(--accent-blue, #74b9ff) 12%) 100%);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark, #2d3436);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.drop-admin-float__toggle:hover .drop-admin-float__toggle-inner,
.drop-admin-float__toggle:focus-visible .drop-admin-float__toggle-inner {
  border-color: var(--accent-blue, #0984e3);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-blue, #74b9ff) 25%, transparent);
}

.drop-admin-float__toggle:focus {
  outline: none;
}

.drop-admin-float__toggle .fa-screwdriver-wrench {
  color: var(--accent-blue, #0984e3);
  font-size: 1rem;
}

.drop-admin-float__chevron {
  font-size: 0.65rem;
  color: var(--text-muted, #636e72);
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.drop-admin-float[open] .drop-admin-float__chevron {
  transform: rotate(180deg);
}

.drop-admin-float__panel {
  margin-top: 10px;
  padding: 12px 12px 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light, #dfe6e9);
  background: #fff;
  box-shadow: 0 12px 32px rgba(45, 52, 54, 0.12);
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.drop-admin-float__heading {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light, #dfe6e9);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #636e72);
}

.drop-admin-float__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drop-admin-float__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark, #2d3436);
  text-decoration: none;
  background: var(--bg-light, #f8f9fa);
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.drop-admin-float__link:hover {
  background: #fff;
  border-color: color-mix(in srgb, var(--accent-blue, #74b9ff) 35%, var(--border-light));
  color: var(--accent-blue, #0984e3);
}

.drop-admin-float__link--muted {
  font-weight: 600;
  font-size: 0.78rem;
  opacity: 0.95;
}

.avatar-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
  gap: 15px;
  flex-wrap: wrap;
}

.avatar-stack .l-avatar {
  border: 3px solid white;
  margin-left: -12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.avatar-stack .l-avatar:first-child {
  margin-left: 0;
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 25px; font-weight: 500; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary-color); text-decoration: none; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb .sep { opacity: 0.4; font-size: 0.75rem; }

/* Social Proof */
.social-proof-section {
  margin-top: 30px;
}
.social-proof-section h2 { font-size: 2rem; color: var(--primary-color); margin-bottom: 30px; display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); }
.social-proof-section h2 .fa-star { color: var(--accent-yellow); }
.review-grid { display: grid; gap: 20px; }
.review-card { background: var(--bg-light); border-radius: var(--radius-md); padding: 25px; border: 1px solid var(--border-light); }
.review-card p { font-style: italic; color: #555; margin-bottom: 15px; font-size: 1.05rem; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer img { width: 45px; height: 45px; border-radius: 50%; background: #f1f2f6; }
.reviewer strong { font-size: 1rem; color: var(--text-dark); display: block; }
.review-count { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text-muted); font-weight: 600; margin-top: -10px; margin-bottom: 25px; }
.review-count .stars { color: var(--accent-yellow); font-size: 1rem; }

/* Paliers */
.milestones-tree { margin-top: 15px; position: relative; padding-left: 0; }
.milestones-tree::before { content: ''; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 3px; background: linear-gradient(to bottom, var(--secondary-color), var(--border-light)); border-radius: 3px; }
.m-node { display: flex; align-items: center; gap: 22px; margin-bottom: 25px; position: relative; opacity: 0.5; transition: var(--transition); }
.m-node.achieved,
.m-node.in-progress {
  opacity: 1;
}
.m-icon { width: 55px; height: 55px; min-width: 55px; border-radius: 50%; background: white; border: 3px solid #ced6e0; display: flex; align-items: center; justify-content: center; z-index: 2; font-size: 1.3rem; color: var(--text-muted); }
/* Jalons validés : même rouge que l’étape actuelle, sans pulse/bounce */
.m-node.achieved .m-icon { background: var(--secondary-color); border-color: var(--secondary-color); color: white; }
.m-node.in-progress .m-icon { background: var(--secondary-color); border-color: var(--secondary-color); color: white; box-shadow: 0 0 0 0 rgba(255, 107, 129, 0.7); font-size: 1.5rem; animation: pulseGlow 2s infinite; }
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 129, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 107, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 129, 0); }
}
.m-content { text-align: left; }
.m-content h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-dark); margin-bottom: 3px; }
/* Ne pas cibler la ligne PM : elle réutilise .user-magic-points-line (orange #d35400) */
.m-content p:not(.milestone-magic-points-line) {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Tooltip & Cursor for Avatar Stack */
.tooltip-buyers {
  position: relative;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tooltip-buyers::after {
  content: "Voir les aventuriers";
  position: absolute;
  bottom: 100%;
  left: 50%;
  background: var(--text-dark);
  color: white;
  font-size: 0.75rem;
  font-family: var(--font-body);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  z-index: 10;
}

.tooltip-buyers:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

/* Modal Buyers List */
.buyer-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  margin-bottom: 15px;
}

.buyer-avatar,
.buyer-avatar-more {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.buyer-avatar {
  border: 2px solid #fff;
  box-shadow: var(--shadow-card);
}
.buyer-avatar.bg-yellow { background: #ffeaa7; }
.buyer-avatar.bg-purple { background: #a29bfe; }
.buyer-avatar.bg-cyan { background: #81ecec; }

.buyer-name {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.buyer-qty {
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 700;
}

/* --- Recommandations bas de page (aligné structure index) --- */
/* Ne pas utiliser margin shorthand ici : la section a aussi .container (margin-inline: auto). */
.drop-related-section {
  margin-bottom: 30px;
}

.drop-related-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 35px;
  font-family: var(--font-heading);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.drop-related-title i {
  color: var(--secondary-color);
}

.drop-related-section .quest-grid {
  padding-bottom: 60px;
}

/* Panneau d’achat : blocs prix & paliers (évite les styles inline) */
.drop-panel-title {
  font-size: 2rem;
  margin-bottom: 5px;
  line-height: 1.2;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
}

.drop-panel-tagline {
  color: var(--accent-blue);
  margin-bottom: 30px;
  font-weight: 700;
}

.pricing-box {
  background: #f8f9fa;
  border-radius: var(--radius-xl);
  padding: 25px;
  margin-bottom: 30px;
}

.pricing-box-strike {
  font-size: 1.1rem;
  color: #a4b0be;
  text-decoration: line-through;
  font-weight: 600;
}

.amazon-price-check {
  margin-top: 12px;
  text-align: center;
}

.pricing-box-separator {
  margin-top: 16px;
  margin-bottom: 12px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.amazon-price-check__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #f3f4f6 100%);
  border: 1px solid #dfe4ea;
  color: #232f3e;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.amazon-price-check__link:hover {
  border-color: #ff9900;
  box-shadow: 0 4px 14px rgba(255, 153, 0, 0.2);
  transform: translateY(-1px);
}

.amazon-price-check__icon {
  font-size: 1.35rem;
  color: #ff9900;
}

.amazon-price-check__label {
  letter-spacing: 0.01em;
}

.pricing-box-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.pricing-box-separator + .pricing-box-row {
  margin-top: 0;
}

.pricing-box-amount {
  font-size: 4.2rem;
  line-height: 1;
  color: var(--secondary-color);
  font-family: var(--font-heading);
  font-weight: 800;
}

.pricing-box-amount .pricing-box-euros {
  font-size: 2rem;
  vertical-align: super;
}

.pricing-box-guarantee {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 15px;
  font-weight: 600;
}

.pricing-box-guarantee .pricing-box-lock {
  color: #27ae60;
  margin-right: 4px;
}

.milestone-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.milestone-desc {
  margin: 0;
}

.milestone-pm-sep {
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 2px;
}

/* Points Magiques sous le texte du palier (pas en ligne avec la description) */
.milestone-text-block .milestone-magic-points-line.user-magic-points-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.milestones-magic-foot {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-muted);
}

.prog-stats--panel {
  margin-bottom: 10px;
}

.prog-stats-highlight {
  font-size: 1.05rem;
  color: var(--primary-color);
}

.avatar-stack-inner {
  display: flex;
  align-items: center;
}

.avatar-stack-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.avatar-stack-label {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.live-badge--stack {
  margin-left: 0;
  background: linear-gradient(135deg, #1dd1a1, #10ac84);
  display: inline-block;
}

.btn-share-drop {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-share-drop i {
  color: var(--secondary-color);
}

.drop-milestones-box {
  background: #f4f7fb;
  border-radius: var(--radius-xl);
  padding: 25px 30px;
  margin-top: 35px;
  border: 1px solid #e9ecef;
}

.drop-milestones-title {
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.drop-milestones-title i {
  color: var(--accent-yellow);
  margin-right: 8px;
}

.review-body {
  flex: 1;
  min-width: 0;
}

.review-stars-row {
  color: var(--accent-yellow);
  font-size: 0.8rem;
  margin: 3px 0;
}

/* --- Refactor sans inline (drop.html) --- */
.drop-tab-h3-icon,
.drop-inline-info-icon {
  color: var(--accent-blue);
}

.char-badges--section-gap {
  margin-top: 20px;
}

.info-block--section-gap {
  margin-top: 25px;
}

.info-block--gap-tight {
  margin-top: 12px;
}

.drop-inline-info-icon {
  margin-right: 6px;
}

.rules-list .rules-icon--yellow {
  color: var(--accent-yellow);
}

.rules-list .rules-icon--pink {
  color: var(--secondary-color);
}

.legal-supplier-meta {
  color: var(--text-muted);
  display: block;
  margin-top: 5px;
}

.timer-pill .timer-clock-icon {
  margin-right: 6px;
}

.timer-pill .timer-prefix {
  opacity: 0.8;
  margin-right: 5px;
}

.timer-pill .timer-text--emphasis {
  font-weight: 800;
}

.sticky-buy-panel .prog-container--sm {
  height: 14px;
}

/* Fiche drop : cercles 45px — chiffre un peu plus grand que sur cartes 32px */
.avatar-stack .l-avatar.l-avatar-count {
  font-size: 0.9rem;
  font-weight: 800;
}

.btn-epic-glow--mb {
  margin-bottom: 15px;
}

.btn-epic-glow__main {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.btn-subtext--panel {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 400;
}

/* Accent « étape actuelle » : le titre du jalon en cours, pas le prix de lancement par défaut */
.m-node.in-progress .m-content h4 {
  color: var(--secondary-color);
}

.drop-modal-title {
  font-size: 1.5rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}


.buyers-list-scroll {
  padding-right: 10px;
  max-height: 50vh;
  overflow-y: auto;
}

.buyer-avatar-more {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  background: var(--bg-light);
  color: var(--text-muted);
  font-weight: bold;
}

.buyer-name--muted,
.buyer-qty--muted {
  color: var(--text-muted);
}

.modal-footer-actions {
  margin-top: 20px;
}

.btn-block {
  width: 100%;
  font-size: 1rem;
}

/* Bloc « ajouter au panier » (fiche drop) — chargé avec drop.css uniquement */
.drop-cart-add-form {
  margin-bottom: 12px;
}

.drop-cart-add-submit {
  width: 100%;
}

.drop-cart-in-cart-hint {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--text-muted, #636e72);
}

/* Onglet Authenticité — intro : même corps que l’onglet, espacement resserré (liste de mentions) */
#tab-legal .drop-legal-tab__intro-wrap {
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark, #2d3436);
}

#tab-legal .drop-legal-tab__intro-wrap .drop-legal-tab__intro {
  margin: 0 0 0.45rem;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

#tab-legal .drop-legal-tab__intro-wrap .drop-legal-tab__intro:last-child {
  margin-bottom: 0;
}

#tab-legal .gpsr-eu-responsible__line {
  display: inline;
  font-weight: 500;
  margin-left: 0.25rem;
}

#tab-legal a.gpsr-tab__form-link {
  color: var(--secondary-color, #5f27cd);
  font-weight: 700;
  text-decoration: none;
  border-bottom: none;
  transition: color 0.15s ease;
}

#tab-legal a.gpsr-tab__form-link:hover {
  color: var(--primary-color, #ff6b81);
}

/* --- Responsive fiche drop (grille 2 col → 1 col, paddings, typo) --- */

@media (max-width: 1100px) {
  .drop-page-layout {
    gap: var(--space-xl, 1.75rem);
    padding-top: max(
      148px,
      calc(var(--nav-bar-height, 85px) + var(--live-ticker-height, 40px) + 2rem)
    );
  }
}

@media (max-width: 900px) {
  .drop-page-layout {
    grid-template-columns: 1fr;
    padding-top: calc(
      var(--nav-bar-height, 85px) + var(--live-ticker-height, 40px) + 1.5rem +
        env(safe-area-inset-top, 0px)
    );
    padding-bottom: calc(var(--space-section) + env(safe-area-inset-bottom, 0px));
  }

  /* Bloc achat en premier sur mobile / tablette étroite */
  .drop-page-layout .right-section {
    order: -1;
  }

  .sticky-buy-panel,
  .social-proof-section {
    position: static;
    top: auto;
    padding: clamp(1rem, 4vw, 2rem);
  }

  /* Air au-dessus du timer : évite tout effet visuel de « collage » sous le bandeau */
  .sticky-buy-panel > .timer-pill,
  .sticky-buy-panel > [class*='timer-pill'] {
    margin-top: 0.15rem;
  }

  .drop-panel-title {
    font-size: clamp(1.45rem, 5vw, 2rem);
  }

  .pricing-box-amount {
    font-size: clamp(2.4rem, 10vw, 4.2rem);
  }

  .pricing-box-amount .pricing-box-euros {
    font-size: clamp(1.1rem, 4.5vw, 2rem);
  }

  .pricing-box {
    padding: clamp(1rem, 3.5vw, 1.5rem);
  }

  .details-card {
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }

  .tab-content-area {
    padding: clamp(1rem, 4vw, 2rem);
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  }

  .tab-content-area h2 {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }

  .tab-content-area h3 {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  }

  .tab {
    padding: 14px 8px;
    font-size: clamp(0.88rem, 2.5vw, 1rem);
  }

  .thumb {
    width: clamp(64px, 18vw, 90px);
    height: clamp(64px, 18vw, 90px);
    min-width: clamp(64px, 18vw, 90px);
    padding: 6px;
  }

  .thumb-gallery {
    gap: 10px;
    padding-inline: 2px;
  }

  .drop-milestones-box {
    padding: clamp(1rem, 3vw, 1.5rem);
    margin-top: 1.5rem;
  }

  .m-node {
    gap: 14px;
    margin-bottom: 18px;
  }

  .m-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.1rem;
  }

  .milestones-tree::before {
    left: 23px;
  }

  .social-proof-section h2 {
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  }

  .drop-related-title {
    font-size: clamp(1.35rem, 4.5vw, 1.85rem);
    margin-bottom: 1.25rem;
  }

  .tooltip-buyers::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .drop-page-layout {
    padding-top: calc(
      var(--nav-bar-height, 85px) + var(--live-ticker-height, 40px) + 1.25rem +
        env(safe-area-inset-top, 0px)
    );
  }

  .amazon-price-check__link {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .share-magic-link-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-share-copy {
    width: 100%;
    justify-content: center;
  }

  .buyer-card {
    padding: 12px 14px;
  }
}
