/* =====================================================
   RE Addons — Styles front-end
   Cohérent avec le thème Restaurant Élégant
   ===================================================== */

/* Wrapper de tous les groupes d'options */
.re-addons-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Un groupe d'options */
.re-addon-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Label du groupe */
.re-addon-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* Astérisque obligatoire */
.re-addon-asterisk {
  color: var(--color-accent);
  margin-left: 2px;
}

/* Select */
.re-addon-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(44, 24, 16, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: var(--color-background);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.re-addon-select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb, 180, 100, 60), 0.12);
}

/* Groupe obligatoire non rempli (ajouté dynamiquement par JS si besoin) */
.re-addon-group.re-addon-error .re-addon-select {
  border-color: #d46a6a;
}

.re-addon-group.re-addon-error .re-addon-label {
  color: #8a2d2d;
}

/* Message d'erreur inline (optionnel, affiché via JS) */
.re-addon-error-msg {
  font-size: 0.75rem;
  color: #d46a6a;
  margin-top: 0.2rem;
}

/* =====================================================
   Affichage dans le panier / checkout
   ===================================================== */

/* Les meta WooCommerce dans le tableau du panier */
.woocommerce-cart-form .cart_item .re-addon-meta,
dl.variation dt,
dl.variation dd {
  font-size: 0.8rem;
}

/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 480px) {
  .re-addon-select {
    font-size: 1rem; /* évite le zoom iOS */
  }
}
