/* ================================================================
   LUMAZIC — Formulaire Single Product LIGHT
   Palette : #00a6bc (cyan) · #002936 (navy) · #eee (gris) · #fff
   Coller dans : Apparence > Personnaliser > CSS additionnel
   ================================================================ */

/*@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');*/

/* ── Variables ── */
.woocommerce div.product {
  --lmz-cyan:        #00a6bc;
  --lmz-navy:        #002936;
  --lmz-gris:        #eeeeee;
  --lmz-blanc:       #ffffff;
  --lmz-cyan-light:  rgba(0, 166, 188, 0.08);
  --lmz-cyan-mid:    rgba(0, 166, 188, 0.25);
  --lmz-navy-muted:  rgba(0, 41, 54, 0.5);
  --lmz-bordure:     rgba(0, 41, 54, 0.12);
  --lmz-bordure-c:   rgba(0, 166, 188, 0.35);
}

/* ── Fond de page produit ── */
.woocommerce div.product,
.woocommerce div.product .entry-summary {
  /*background: var(--lmz-gris);*/
  color: var(--lmz-navy);
  font-family: 'Raleway', sans-serif;
}

/* ── Titre produit ── */
.woocommerce div.product .product_title {
    display: none !important;
  /*font-family: halyard-display,sans-serif;*/
  /*font-size: clamp(1.6rem, 4vw, 2.2rem) !important;*/
  /*font-weight: 700 !important;*/
  /*color: var(--lmz-navy) !important;*/
  /*letter-spacing: 0.05em;*/
  /*margin-bottom: 0.4rem !important;*/
  /*line-height: 1.2;*/
}

/* ── Prix ── */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    display: none !important;
  /*font-family: halyard-display,sans-serif;*/
  /*font-size: 1.1rem !important;*/
  /*color: var(--lmz-cyan) !important;*/
  /*font-weight: 600 !important;*/
  /*margin-bottom: 1.8rem !important;*/
  /*letter-spacing: 0.04em;*/
}

/* ── Bloc infos événement ── */
.woocommerce div.product .wps_etmfw_event_info_section {
  background: var(--lmz-blanc) !important;
  border: 1px solid var(--lmz-bordure) !important;
  border-radius: 6px !important;
  padding: 1rem 1.2rem !important;
  margin-bottom: 1.8rem !important;
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 41, 54, 0.06);
}

.woocommerce div.product .wps_etmfw_event_info_section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--lmz-cyan);
  border-radius: 6px 0 0 6px;
}

.woocommerce div.product .wps_etmfw_event_general_info {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 5px 0 !important;
  font-size: 0.82rem !important;
  color: var(--lmz-navy) !important;
  letter-spacing: 0.02em;
}

/* Icônes SVG du plugin — teinte cyan */
.woocommerce div.product .wps_etmfw_event_general_info img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(99%)
          saturate(400%) hue-rotate(160deg) brightness(90%);
}

.woocommerce div.product .wps_etmfw_date_label,
.woocommerce div.product .wps_etmfw_event_general_info span {
  color: var(--lmz-navy) !important;
  font-size: 0.82rem !important;
}

/* ── Label "Choose Ticket Type" ── */
.woocommerce div.product .wps_user_type_label {
  font-family: halyard-display,sans-serif;
  font-size: 0.68rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--lmz-cyan) !important;
  margin-bottom: 0.5rem !important;
}

/* ── Lignes tickets ── */
.woocommerce div.product .wps_etmfw_user_type_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.8rem !important;
}

.woocommerce div.product .wps_etmfw_user_type_row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: var(--lmz-blanc) !important;
  border: 1px solid var(--lmz-bordure) !important;
  border-radius: 6px !important;
  padding: 12px 14px !important;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(0, 41, 54, 0.05);
}

.woocommerce div.product .wps_etmfw_user_type_row:hover {
  border-color: var(--lmz-cyan) !important;
  box-shadow: 0 2px 8px rgba(0, 166, 188, 0.12);
}

.woocommerce div.product .wps_etmfw_user_type_name {
  flex: 1;
  font-size: 0.88rem !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--lmz-navy) !important;
}

.woocommerce div.product .wps_etmfw_user_type_price,
.woocommerce div.product .wps_etmfw_user_type_price .woocommerce-Price-amount {
  font-family: halyard-display,sans-serif;
  font-size: 0.88rem !important;
  color: var(--lmz-cyan) !important;
  font-weight: 600 !important;
  min-width: 90px;
  text-align: right;
}

/* ── Quantité +/- ── */
.woocommerce div.product .wps-etmfw-user-type-qty {
  display: flex !important;
  align-items: center !important;
  /*border: 1px solid var(--lmz-bordure-c) !important;*/
  border-radius: 4px !important;
  overflow: hidden;
}

.woocommerce div.product .wps-etmfw-minus,
.woocommerce div.product .wps-etmfw-plus {
  background: var(--lmz-gris) !important;
  border: none !important;
  color: var(--lmz-cyan) !important;
  width: 30px !important;
  height: 30px !important;
  font-size: 1.1rem !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.woocommerce div.product .wps-etmfw-minus:hover,
.woocommerce div.product .wps-etmfw-plus:hover {
  background: var(--lmz-cyan) !important;
  color: var(--lmz-blanc) !important;
}

.woocommerce div.product .wps-etmfw-user-type-qty input[type="number"] {
  background: var(--lmz-blanc) !important;
  border: none !important;
  /*border-left: 1px solid var(--lmz-bordure-c) !important;*/
  /*border-right: 1px solid var(--lmz-bordure-c) !important;*/
  color: var(--lmz-navy) !important;
  width: 38px !important;
  height: 30px !important;
  text-align: center !important;
  font-family: halyard-display,sans-serif;
  font-size: 0.85rem !important;
  -moz-appearance: textfield;
}

.woocommerce div.product .wps-etmfw-user-type-qty input[type="number"]::-webkit-outer-spin-button,
.woocommerce div.product .wps-etmfw-user-type-qty input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Booking box (Date + Langue + Créneaux) ── */
.woocommerce div.product .show-booking-box {
  background: var(--lmz-blanc) !important;
  border: 1px solid var(--lmz-bordure) !important;
  border-radius: 6px !important;
  padding: 1.2rem 1.4rem !important;
  margin-bottom: 1.8rem !important;
  box-shadow: 0 1px 4px rgba(0, 41, 54, 0.06);
}
.show-booking-box br{
    display: none;
}

.woocommerce div.product .show-booking-box p {
  margin-bottom: 0.9rem !important;
}

.woocommerce div.product .show-booking-box label {
  display: block !important;
  font-size: 0.68rem !important;
  font-family: halyard-display,sans-serif;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--lmz-cyan) !important;
  margin-bottom: 6px !important;
  font-weight: 600 !important;
}

.woocommerce div.product .show-booking-box input[type="date"],
.woocommerce div.product .show-booking-box select {
  width: 100% !important;
  background: var(--lmz-gris) !important;
  border: 1px solid var(--lmz-bordure-c) !important;
  border-radius: 4px !important;
  color: var(--lmz-navy) !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 0.88rem !important;
  padding: 9px 12px !important;
  box-sizing: border-box;
  appearance: none !important;
  -webkit-appearance: none !important;
  outline: none !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.woocommerce div.product .show-booking-box input[type="date"]:focus,
.woocommerce div.product .show-booking-box select:focus {
  border-color: var(--lmz-cyan) !important;
  box-shadow: 0 0 0 3px rgba(0, 166, 188, 0.12) !important;
}

/* Flèche custom select */
.woocommerce div.product .show-booking-box .select_container {
  position: relative;
}

.woocommerce div.product .show-booking-box .select_container::after {
  content: '▾';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lmz-cyan);
  pointer-events: none;
  font-size: 0.8rem;
}

/* ── Créneaux radio ── */
.woocommerce div.product #show_slots label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--lmz-gris) !important;
  border: 1px solid var(--lmz-bordure) !important;
  border-radius: 4px !important;
  padding: 9px 12px !important;
  margin-bottom: 7px !important;
  cursor: pointer;
  font-size: 0.85rem !important;
  color: var(--lmz-navy) !important;
  font-family: 'Raleway', sans-serif !important;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, background 0.2s;
  text-transform: none !important;
  font-weight: 400 !important;
}

.woocommerce div.product #show_slots label:hover {
  border-color: var(--lmz-cyan) !important;
  background: var(--lmz-cyan-light) !important;
}

.woocommerce div.product #show_slots input[type="radio"] {
  accent-color: var(--lmz-cyan);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Bouton Buy Now ── */
.woocommerce div.product .single_add_to_cart_button,
.woocommerce div.product .cart button[type="submit"] {
  display: block !important;
  width: 100% !important;
  background: var(--lmz-navy) !important;
  border: none !important;
  border-radius: 4px !important;
  color: var(--lmz-blanc) !important;
  font-family: halyard-display,sans-serif;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 15px 24px !important;
  cursor: pointer;
  transition: background 0.25s !important;
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  overflow: hidden;
}

/* Barre cyan animée au hover */
.woocommerce div.product .single_add_to_cart_button::after,
.woocommerce div.product .cart button[type="submit"]::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--lmz-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.woocommerce div.product .single_add_to_cart_button:hover,
.woocommerce div.product .cart button[type="submit"]:hover {
  background: #001c26 !important;
}

.woocommerce div.product .single_add_to_cart_button:hover::after,
.woocommerce div.product .cart button[type="submit"]:hover::after {
  transform: scaleX(1);
}

/* ── Wishlist ── */
.woocommerce div.product .tinv-wraper {
  display: none !important;
}

/* ── Quantité globale ── */
.woocommerce div.product .quantity {
  display: none !important;
}

/* ── Méta produit ── */
.woocommerce div.product .product_meta {
  border-top: 1px solid var(--lmz-bordure) !important;
  padding-top: 1rem !important;
  font-size: 0.75rem !important;
  color: var(--lmz-navy-muted) !important;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.woocommerce div.product .product_meta a {
  color: var(--lmz-cyan) !important;
  text-decoration: none;
}

/* ── Responsive mobile ── */
@media (max-width: 480px) {
  .woocommerce div.product .wps_etmfw_user_type_row {
    flex-wrap: wrap;
    gap: 8px !important;
  }
  .woocommerce div.product .wps_etmfw_user_type_price {
    min-width: auto;
  }
}
