/* Rhodie Selector — Choix revêtement classique / rhodié */

.rhodie-selector {
  margin: 12px 0 16px;
  padding: 14px 16px;
  background: #faf8f5;
  border: 1px solid #e8e0d4;
  border-radius: 8px;
}

.rhodie-selector-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  margin-bottom: 10px;
}

.rhodie-selector-options {
  display: flex;
  gap: 8px;
}

.rhodie-option {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  font-size: 0.9rem;
  text-align: left;
  position: relative;
}

.rhodie-option:hover {
  border-color: #d4af37;
}

.rhodie-option.active {
  border-color: #d4af37;
  box-shadow: 0 0 0 1px #d4af37;
  cursor: default;
}

.rhodie-option.active::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
}

/* Pastilles colorées */
.rhodie-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid #d1d5db;
}

.rhodie-swatch--classique {
  background: linear-gradient(135deg, #f5f5f5 0%, #c0c0c0 50%, #d9d9d9 100%);
}

.rhodie-swatch--rhodie {
  background: linear-gradient(135deg, #e8eef5 0%, #4a6fa5 50%, #8badd4 100%);
}

.rhodie-option-name {
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
}

.rhodie-option-price {
  font-size: 0.85rem;
  color: #6b7280;
  margin-left: auto;
  white-space: nowrap;
}

/* Icône info "?" */
.rhodie-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.rhodie-info-icon:hover {
  background: #d4af37;
  color: #fff;
}

/* Tooltip */
.rhodie-tooltip {
  margin-top: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 6px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #4b5563;
}

.rhodie-tooltip strong {
  color: #1a1a1a;
}

/* Variante indisponible */
.rhodie-option.out-of-stock {
  opacity: 0.5;
  pointer-events: none;
}

.rhodie-option.out-of-stock .rhodie-option-price::after {
  content: ' (indisponible)';
  font-size: 0.75rem;
  color: #ef4444;
}

/* Responsive : empile en colonne sur mobile */
@media (max-width: 480px) {
  .rhodie-selector-options {
    flex-direction: column;
  }

  .rhodie-option {
    padding: 10px 12px;
  }
}
