/* === SÉLECTEURS DE VARIANTES (fiche produit) === */
.product-variants {
  margin: 24px 0;
  padding: 20px;
  background: var(--bg-secondary, #f9f9f9);
  border-radius: 8px;
  border: 1px solid var(--border-color, #e5e7eb);
}

.variant-selector {
  margin-bottom: 18px;
}

.variant-selector:last-of-type {
  margin-bottom: 0;
}

.variant-selector label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary, #333);
  font-size: 0.95rem;
}

.variant-dropdown {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 2px solid var(--border-color, #ddd);
  border-radius: 6px;
  background: var(--bg-card, #fff);
  color: var(--text-primary, #111);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.variant-dropdown:hover {
  border-color: var(--primary-color, #1e40af);
}

.variant-dropdown:focus {
  outline: none;
  border-color: var(--primary-color, #1e40af);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}

/* === PRIX VARIANTE === */
.product-price-display {
  margin-top: 20px;
  padding: 15px;
  background: var(--bg-card, #fff);
  border-left: 4px solid #10b981;
  border-radius: 4px;
}

.current-price {
  font-size: 28px;
  font-weight: 700;
  color: #059669;
}

.current-price .price-suffix {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary, #6b7280);
  margin-left: 6px;
}

.product-variants-note {
  font-size: 0.8rem;
  color: var(--text-tertiary, #9ca3af);
  margin-top: 8px;
}

/* === TABLEAU SPECS === */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color, #eee);
}

.specs-table td {
  padding: 12px 8px;
  vertical-align: top;
}

.specs-table td:first-child {
  color: var(--text-secondary, #666);
  width: 48%;
}

.specs-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text-primary, #111);
}

/* === POINTS FORTS === */
.product-highlights h3 {
  margin-bottom: 12px;
}

.product-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-highlights li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 16px;
  color: var(--text-primary, #333);
  border-bottom: 1px solid var(--border-color, #eee);
}

.product-highlights li:last-child {
  border-bottom: none;
}

.product-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

@media (max-width: 768px) {
  .product-variants {
    padding: 16px;
    margin: 16px 0;
  }

  .current-price {
    font-size: 24px;
  }
}
