/* ============================================
   PAWSHOP – Styles page produit
   ============================================ */

/* ---- BREADCRUMB ---- */
.breadcrumb-nav { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- LAYOUT PRODUIT ---- */
.product-main { padding: 40px 20px 80px; }
.product-layout { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }

/* ---- SIDEBAR / IMAGES ---- */
.product-image-box { margin-bottom: 24px; }
.product-main-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.product-thumbnails { display: flex; gap: 8px; margin-top: 10px; }
.product-thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.product-thumbnails img:hover { border-color: var(--primary); }

/* ---- BUY BOX ---- */
.buy-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sticky-box { position: sticky; top: 80px; }
.buy-box-brand { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.buy-box-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--secondary); }
.buy-box-rating { font-size: 0.9rem; color: var(--accent); }
.buy-box-rating span { color: var(--text-muted); font-size: 0.82rem; }
.buy-box-price { display: flex; align-items: baseline; gap: 8px; }
.price-main { font-size: 2rem; font-weight: 700; color: var(--text); }
.price-unit { font-size: 0.85rem; color: var(--text-muted); }
.buy-box-saving { background: #ECFDF5; color: var(--success); font-size: 0.85rem; font-weight: 600; padding: 8px 12px; border-radius: 8px; }
.btn-amazon {
  display: block;
  background: #FF9900;
  color: var(--text);
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-amazon:hover { background: #E68900; }
.amazon-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.buy-box-sizes { font-size: 0.85rem; color: var(--text-muted); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.buy-box-sizes a { color: var(--primary); font-weight: 600; }
.buy-box-sizes a:hover { text-decoration: underline; }

/* ---- CONTENU ARTICLE ---- */
.product-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.product-intro { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }

/* ---- VERDICT ---- */
.verdict-box {
  background: linear-gradient(135deg, var(--secondary), #0F2540);
  color: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}
.verdict-score { text-align: center; flex-shrink: 0; }
.score-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--accent); line-height: 1; }
.score-label { font-size: 1.2rem; color: rgba(255,255,255,0.6); }
.verdict-text strong { font-size: 1.1rem; display: block; margin-bottom: 6px; }
.verdict-text p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ---- PROS/CONS ---- */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.pros, .cons { background: var(--bg-soft); border-radius: var(--radius); padding: 20px; }
.pros h3 { color: var(--success); margin-bottom: 12px; font-size: 0.95rem; }
.cons h3 { color: #C0392B; margin-bottom: 12px; font-size: 0.95rem; }
.pros li, .cons li { font-size: 0.9rem; color: var(--text-muted); padding: 4px 0; border-bottom: 1px solid var(--border); }
.pros li:last-child, .cons li:last-child { border-bottom: none; }

/* ---- CONTENT SECTIONS ---- */
.content-section { margin-bottom: 36px; }
.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-soft);
}
.content-section p { font-size: 0.97rem; line-height: 1.75; color: var(--text); margin-bottom: 12px; }
.content-section a { color: var(--primary); font-weight: 600; }
.content-section a:hover { text-decoration: underline; }

/* ---- SPECS TABLE ---- */
.specs-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.9rem; }
.specs-table th { background: var(--secondary); color: var(--white); text-align: left; padding: 10px 14px; }
.specs-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); }
.specs-table tr:nth-child(even) td { background: var(--bg-soft); }

/* ---- CTA FINAL ---- */
.cta-final { background: var(--bg-soft); border-radius: var(--radius); padding: 28px; text-align: center; margin-bottom: 36px; border: 1px dashed var(--border); }
.btn-amazon-large {
  display: inline-block;
  background: #FF9900;
  color: var(--text);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  margin-bottom: 12px;
}
.btn-amazon-large:hover { background: #E68900; }
.affiliate-disclaimer { font-size: 0.8rem; color: var(--text-muted); }

/* ---- REVIEWS ---- */
.reviews-summary { display: flex; flex-direction: column; gap: 16px; }
.review-card { background: var(--bg-soft); border-radius: var(--radius); padding: 20px; }
.review-stars { color: var(--accent); margin-bottom: 8px; font-size: 1rem; }
.review-card p { font-size: 0.9rem; line-height: 1.65; color: var(--text); }
.review-author { font-size: 0.8rem; color: var(--text-muted); display: block; margin-top: 8px; }

/* ---- ALT CARDS ---- */
.alt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}
.alt-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.alt-card strong { font-size: 0.95rem; color: var(--secondary); }
.alt-card span { font-size: 0.85rem; color: var(--text-muted); }
.alt-price { font-weight: 700; color: var(--primary); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; }
  .sticky-box { position: static; }
}
@media (max-width: 768px) {
  .pros-cons-grid { grid-template-columns: 1fr; }
  .verdict-box { flex-direction: column; text-align: center; }
}
