/* ╔══════════════════════════════════════════════════════════════════════════════╗
   ║   STYLE.CSS - KIMPLE FISHING CUP 2026 (CLEAN)                                ║
   ║   Objectifs: même rendu, moins de doublons, sélecteurs robustes, conflits OK ║
   ╚══════════════════════════════════════════════════════════════════════════════╝ */

/* ============================================================================
   SECTION 0 : DÉCLARATION THÈME ENFANT (WordPress)
============================================================================ */
/*
 Theme Name:   Kimple Fishing Cup
 Theme URI:    https://kimple-fishing-cup.fr
 Description:  Thème enfant Astra pour le site Kimple Fishing Cup
 Author:       Kimple Fishing Cup
 Author URI:   https://kimple-fishing-cup.fr
 Template:     astra
 Version:      1.0.0
 Text Domain:  kimple-fishing-cup
*/

/* ============================================================================
   SECTION 1 : POLICES + VARIABLES
============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --primary-color: #00a19a;
  --secondary-color: #ffffff;
  --dark-color: #3c3c3b;
}

/* ============================================================================
   SECTION 2 : GLOBAL
============================================================================ */
body {
  font-family: 'Hind Madurai', sans-serif !important;
  color: var(--dark-color) !important;
  overflow-x: hidden;
}

.bebas {
  font-family: 'Bebas Neue', sans-serif !important;
}
.hind {
  font-family: 'Hind Madurai', sans-serif !important;
}

/* Masquer galerie produit WooCommerce (mise en page custom) */
.woocommerce-product-gallery,
.woocommerce-product-gallery--with-images,
.woocommerce-product-gallery--columns-4,
.images,
.woocommerce-product-gallery__wrapper,
summary,
.entry-summary {
  display: none !important;
}

#primary {
  margin-top: 0 !important;
}
.woocommerce-notices-wrapper {
  padding-bottom: 60px !important;
}

/* ============================================================================
   SECTION 3 : HEADER / MENU
============================================================================ */
.preheader-h {
  font-size: 15px;
}
#preheader-left {
  line-height: 15px;
}

#menu-kfc {
  backdrop-filter: blur(10px) !important;
  background-color: rgba(255, 255, 255, 0.2);
}

/* ============================================================================
   SECTION 4 : FORMULAIRE (structure)
============================================================================ */
.kfc-form-fullwidth {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;

  margin-top: 60px !important;
  margin-bottom: 60px !important;
  padding: 60px 20px !important;

  box-sizing: border-box !important;

  background-image: url('http://kimple-fishing-cup.com/wp-content/uploads/2025/12/background-form.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.kfc-form-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.kfc-form-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 40px !important;
  width: 100% !important;

  background-color: rgba(255, 255, 255, 0.5) !important;
  padding: 40px !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.kfc-participants-section,
.kfc-documents-section {
  display: flex !important;
  flex-direction: row !important;
  gap: 40px !important;
  width: 100% !important;
}

.kfc-col,
.kfc-doc-col {
  flex: 1 !important;
  min-width: 0 !important;

  display: flex !important;
  flex-direction: column !important;

  /* padding: 20px; */
  gap: 0 !important;
}

/* Cases à cocher */
.kfc-checkboxes-section {
  display: flex !important;
  flex-direction: row !important;
  gap: 40px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.kfc-checkboxes-section > .wapf-field-row {
  width: 50% !important;
  margin-left: unset !important;
  padding: 20px !important;
}

#formulaire.kfc-form-fullwidth:has(.kfc-form-inner:empty) {
  display: none;
}

/* ============================================================================
   SECTION 4.4 : Champs / Labels
============================================================================ */
.kfc-title {
  font-family: 'Hind Madurai', sans-serif;
  font-weight: 900;
  font-size: 1.4em;
  color: var(--dark-color);
  margin: 20px 0 15px 0;
  padding: 0;
}

.kfc-field label,
.wapf-wrapper label,
.wapf-field label,
label {
  font-family: 'Hind Madurai', sans-serif !important;
  font-weight: 600 !important;
  color: var(--dark-color) !important;
  display: block !important;
}

.kfc-field label span,
.wapf-wrapper label span,
.wapf-field label span,
label span {
  font-family: 'Hind Madurai', sans-serif !important;
  color: var(--dark-color) !important;
}

.kfc-field input[type='text'],
.kfc-field input[type='email'],
.kfc-field input[type='tel'],
.kfc-field input[type='date'],
.kfc-field input[type='file'],
.kfc-field textarea {
  font-family: 'Hind Madurai', sans-serif;
  font-weight: 400;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.kfc-field {
  padding-bottom: 15px !important;
}
.wapf-field-row .required {
  display: none !important;
}
.quantity {
  display: none !important;
}

.kfc-title.wapf-field-row,
.kfc-col .wapf-field-row,
.kfc-title .wapf-field-container,
.wapf-field-container {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.kfc-file-input-wrapper {
  background-color: rgba(249, 249, 249, 0.5) !important;
}

/* ============================================================================
   SECTION 4.6 : VARIATIONS (Catégorie) — version robuste (sans sélecteurs cassants)
============================================================================ */
/* Bloc variations */
.kfc-form-fullwidth .variations {
  background: linear-gradient(
    135deg,
    rgba(0, 161, 154, 0.08) 0%,
    rgba(255, 255, 255, 0.95) 100%
  ) !important;

  border: 2px solid var(--primary-color) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 161, 154, 0.15) !important;
  padding: 20px 25px !important;
  margin-bottom: 25px !important;
  position: relative !important;
  overflow: visible !important;
}

.kfc-form-fullwidth .variations::before {
  content: "🏆 CATÉGORIE D'INSCRIPTION";
  position: absolute;
  top: -12px;
  left: 20px;
  background-color: var(--primary-color);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 4px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 161, 154, 0.3);
}

/* Table Woo : aligner label + select + reset de façon stable */
.kfc-form-fullwidth .variations th,
.kfc-form-fullwidth .variations td {
  border: none !important;
}

/* Desktop : select + Effacer sur la même ligne */
@media (min-width: 769px) {
  .kfc-form-fullwidth .variations td.value {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: nowrap !important;
  }

  .kfc-form-fullwidth .variations td.value select {
    flex: 0 1 auto !important;
  }

  .kfc-form-fullwidth .variations td.value .reset_variations {
    margin: 0 !important;
    white-space: nowrap !important;
  }
}

/* Mobile : Effacer sous le select (mais toujours dans la même cellule) */
@media (max-width: 768px) {
  .kfc-form-fullwidth .variations td.value {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .kfc-form-fullwidth .variations td.value .reset_variations {
    margin: 0 !important;
  }
}

.kfc-form-fullwidth .variations td.value {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  padding: 10px 0 !important;
  flex-wrap: nowrap !important;
}

.kfc-form-fullwidth .variations .label label {
  font-family: 'Hind Madurai', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: var(--dark-color) !important;
}

/* Select */
.kfc-form-fullwidth .variations select {
  font-family: 'Hind Madurai', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;

  border: 2px solid var(--dark-color) !important;
  border-radius: 8px !important;
  background-color: white !important;
  color: var(--dark-color) !important;

  cursor: pointer !important;
  min-width: 280px !important;
  transition: all 0.3s ease !important;

  appearance: none !important;
  -webkit-appearance: none !important;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
}

.kfc-form-fullwidth .variations select:hover {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(0, 161, 154, 0.1) !important;
}

.kfc-form-fullwidth .variations select:focus {
  outline: none !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 4px rgba(0, 161, 154, 0.2) !important;
}

/* Reset "Effacer" */
.kfc-form-fullwidth .variations .reset_variations {
  font-family: 'Hind Madurai', sans-serif !important;
  font-size: 13px !important;
  color: var(--primary-color) !important;
  text-decoration: none !important;
  opacity: 0.8 !important;
  transition: opacity 0.3s ease !important;
  white-space: nowrap !important;
}

.kfc-form-fullwidth .variations .reset_variations:hover {
  opacity: 1 !important;
  text-decoration: underline !important;
}

/* Responsive variations: on empile sous 768px (plus fiable que 1024px) */
@media (max-width: 768px) {
  .kfc-form-fullwidth .variations {
    padding: 18px 18px !important;
  }

  .kfc-form-fullwidth .variations tr {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .kfc-form-fullwidth .variations th,
  .kfc-form-fullwidth .variations td {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .kfc-form-fullwidth .variations .label label {
    font-size: 15px !important;
    margin-bottom: 6px !important;
  }

  .kfc-form-fullwidth .variations select {
    width: 100% !important;
    min-width: auto !important;
    box-sizing: border-box !important;
    background-position: right 12px center !important;
  }

  .kfc-form-fullwidth .variations .reset_variations {
    display: inline-block !important;
    margin-top: 8px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .kfc-form-fullwidth .variations {
    padding: 14px 12px !important;
  }
  .kfc-form-fullwidth .variations .label label {
    font-size: 14px !important;
  }
  .kfc-form-fullwidth .variations select {
    font-size: 14px !important;
    padding: 10px !important;
  }
  .kfc-form-fullwidth .variations .reset_variations {
    font-size: 13px !important;
  }
}

/* ============================================================================
   SECTION 5 : BOUTONS (upload + add to cart)
============================================================================ */
.kfc-field input[type='file'],
input[type='file'] {
  font-family: 'Hind Madurai', sans-serif !important;
  color: var(--dark-color) !important;
}

input[type='file']::file-selector-button,
input[type='file']::-webkit-file-upload-button {
  background-color: var(--dark-color) !important;
  color: var(--secondary-color) !important;
  font-family: 'Hind Madurai', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  margin-right: 10px !important;
}

.kfc-file-button {
  background-color: var(--dark-color) !important;
  color: var(--secondary-color) !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-weight: 400 !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  transition: background-color 0.3s ease !important;
}
.kfc-file-button:hover {
  background-color: var(--primary-color) !important;
}

form.cart button[type='submit'],
.single-product button[type='submit'].button {
  background-color: var(--dark-color) !important;
  color: var(--secondary-color) !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-weight: 400 !important;
  border: none !important;
  padding: 12px 30px !important;
  font-size: 20px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
}
form.cart button[type='submit']:hover,
.single-product button[type='submit'].button:hover {
  background-color: var(--primary-color) !important;
}

/* ============================================================================
   SECTION 5.5 : QUESTION BARQUE + affichage du formulaire (CONFLITS FIX)
============================================================================ */
@keyframes kfcFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ FIX MAJEUR : scope strict sur .kfc-form-fullwidth */
.kfc-form-fullwidth form.cart,
.kfc-form-fullwidth .variations_form {
  display: none !important;
}

.kfc-form-fullwidth .kfc-form-container {
  display: none !important;
}

.kfc-form-fullwidth.kfc-form-visible form.cart,
.kfc-form-fullwidth.kfc-form-visible .variations_form {
  display: block !important;
}

.kfc-form-fullwidth.kfc-form-visible .kfc-form-container {
  display: flex !important;
}

/* Bloc question */
.kfc-boat-question {
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 12px !important;
  padding: 40px !important;
  margin-bottom: 30px !important;
  text-align: center !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  border: 2px solid var(--primary-color) !important;
}

.kfc-boat-question-inner {
  max-width: 600px !important;
  margin: 0 auto !important;
}

.kfc-boat-question-title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  color: var(--dark-color) !important;
  margin: 0 0 15px 0 !important;
}

.kfc-boat-question-text {
  font-family: 'Hind Madurai', sans-serif !important;
  font-size: 16px !important;
  color: var(--dark-color) !important;
  margin: 0 0 30px 0 !important;
  line-height: 1.6 !important;
}

.kfc-boat-question-label {
  font-family: 'Hind Madurai', sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--primary-color) !important;
  margin-bottom: 25px !important;
}

.kfc-boat-options {
  display: flex !important;
  justify-content: center !important;
  gap: 40px !important;
}

.kfc-boat-option {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  cursor: pointer !important;
  padding: 15px 35px !important;
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  background-color: #fff !important;
}

.kfc-boat-option:hover {
  border-color: var(--primary-color) !important;
  background-color: rgba(0, 161, 154, 0.05) !important;
}

.kfc-boat-option input[type='radio'] {
  display: none !important;
}

.kfc-boat-radio-custom {
  width: 24px !important;
  height: 24px !important;
  border: 2px solid #ddd !important;
  border-radius: 50% !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

.kfc-boat-radio-custom::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0) !important;
  width: 12px !important;
  height: 12px !important;
  background-color: var(--primary-color) !important;
  border-radius: 50% !important;
  transition: transform 0.2s ease !important;
}

.kfc-boat-option input[type='radio']:checked + .kfc-boat-radio-custom {
  border-color: var(--primary-color) !important;
}
.kfc-boat-option input[type='radio']:checked + .kfc-boat-radio-custom::after {
  transform: translate(-50%, -50%) scale(1) !important;
}
.kfc-boat-option input[type='radio']:checked ~ .kfc-boat-option-text {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

.kfc-boat-option-text {
  font-family: 'Hind Madurai', sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--dark-color) !important;
  transition: all 0.3s ease !important;
}

/* Message no boat */
.kfc-no-boat-message {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  border-radius: 12px !important;
  padding: 50px 40px !important;
  margin-top: 20px !important;
  text-align: center !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid #dee2e6 !important;
}

.kfc-no-boat-inner {
  max-width: 500px !important;
  margin: 0 auto !important;
}
.kfc-no-boat-icon {
  font-size: 60px !important;
  margin-bottom: 20px !important;
}

.kfc-no-boat-title {
  font-family: 'Hind Madurai', sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--dark-color) !important;
  margin: 0 0 15px 0 !important;
}

.kfc-no-boat-text {
  font-family: 'Hind Madurai', sans-serif !important;
  font-size: 16px !important;
  color: #666 !important;
  line-height: 1.7 !important;
  margin: 0 0 30px 0 !important;
}

.kfc-no-boat-button {
  display: inline-block !important;
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  padding: 15px 40px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 161, 154, 0.3) !important;
}

.kfc-no-boat-button:hover {
  background-color: var(--dark-color) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
  color: var(--secondary-color) !important;
  text-decoration: none !important;
}

/* Responsive question */
@media (max-width: 768px) {
  .kfc-boat-question {
    padding: 30px 20px !important;
  }
  .kfc-boat-question-title {
    font-size: 22px !important;
  }
  .kfc-boat-question-label {
    font-size: 18px !important;
  }

  .kfc-boat-options {
    flex-direction: column !important;
    gap: 15px !important;
  }
  .kfc-boat-option {
    justify-content: center !important;
    padding: 15px 25px !important;
  }

  .kfc-no-boat-message {
    padding: 35px 25px !important;
  }
  .kfc-no-boat-title {
    font-size: 20px !important;
  }
  .kfc-no-boat-button {
    font-size: 18px !important;
    padding: 12px 30px !important;
  }
}

/* ============================================================================
   SECTION 6 : BANNIÈRE PROMO (dédoublonnée)
============================================================================ */
.promo-banner-fishing {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 0 !important;
  font-family: 'Hind Madurai', sans-serif;
  overflow: hidden;
}

.promo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  height: 600px;
  overflow: hidden;
  align-items: stretch;
}

/* Masquer le carousel sur desktop */
.promo-carousel-wrapper {
  display: none;
}

.promo-header {
  background: linear-gradient(135deg, #00b5ad 0%, #009b94 100%);
  padding: 40px 30px;
  text-align: left;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.promo-title {
  color: white;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 28px;
  letter-spacing: 1px;
  font-family: 'Bebas Neue', sans-serif;
}

.promo-title-large {
  font-size: 56px;
  display: block;
  margin: 10px 0;
  font-family: 'Hind Madurai', sans-serif;
  font-weight: 700;
}

.promo-subtitle {
  font-size: 32px;
  display: block;
  font-weight: 400;
  font-family: 'Bebas Neue', sans-serif;
}

/* Cellules */
.promo-item {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  align-self: stretch;
}

/* Fond images */
.promo-item-1 {
  background-image: url('http://kimple-fishing-cup.com/wp-content/uploads/2026/01/KFC-PHOTO.jpg');
  background-position: center !important;
}

.promo-item-2 {
  background-image: url('https://kimple-fishing-cup.com/wp-content/uploads/2025/12/lac-pareloup.jpg');
  background-position: center !important;
}

.promo-item-3 {
  background-image: url('http://kimple-fishing-cup.com/wp-content/uploads/2026/01/scaled-kimple-438-kingfisher-verte.jpg');
  background-position: center !important;
}

/* Positionnement desktop uniquement */
.promo-item-desktop.promo-item-1 {
  grid-column: 1;
  grid-row: 2;
}

.promo-item-desktop.promo-item-2 {
  grid-column: 2;
  grid-row: 1 / 3;
}

.promo-item-desktop.promo-item-3 {
  grid-column: 3;
  grid-row: 1 / 3;
}

.promo-item-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.promo-item-title {
  color: white;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-family: 'Bebas Neue', sans-serif;
}

/* ============================================================================
   RESPONSIVE MOBILE - BANNIÈRE PROMO AVEC CAROUSEL
============================================================================ */

@media screen and (max-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    gap: 0;
  }

  .promo-header {
    grid-column: 1;
    grid-row: 1;
    padding: 30px 20px;
    text-align: center;
    justify-content: center;
  }

  .promo-title {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }

  .promo-title-large {
    font-size: 36px;
    margin: 8px 0;
  }

  .promo-subtitle {
    font-size: 24px;
  }

  /* Masquer les images desktop sur mobile */
  .promo-item-desktop {
    display: none !important;
  }

  /* Afficher le carousel */
  .promo-carousel-wrapper {
    display: block;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    padding: 20px 0;
    background: #f5f5f5;
  }

  .promo-swiper {
    width: 100%;
    height: 280px;
    overflow: visible;
  }

  .swiper-slide {
    height: 280px;
  }

  .swiper-slide .promo-item-mobile {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  /* Ajuster les boutons de navigation */
  .swiper-button-next,
  .swiper-button-prev {
    color: #00b5ad;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
  }

  /* Pagination */
  .swiper-pagination {
    bottom: -5px !important;
  }

  .swiper-pagination-bullet {
    background: #00b5ad;
    opacity: 0.5;
    width: 10px;
    height: 10px;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
    background: #00b5ad;
  }
}

/* Pour les très petits écrans */
@media screen and (max-width: 480px) {
  .promo-header {
    padding: 25px 15px;
  }

  .promo-title {
    font-size: 18px;
  }

  .promo-title-large {
    font-size: 28px;
  }

  .promo-subtitle {
    font-size: 20px;
  }

  .promo-swiper {
    height: 250px;
  }

  .swiper-slide {
    height: 250px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }
}

/* Amélioration du carousel - à ajouter à la fin de votre CSS mobile */
@media screen and (max-width: 768px) {
  /* ... votre CSS existant ... */

  /* S'assurer que les boutons sont bien cliquables */
  .swiper-button-next,
  .swiper-button-prev {
    color: #00b5ad !important;
    background: white !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    z-index: 10 !important;
    cursor: pointer !important;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold !important;
  }

  /* Désactiver le hover sur mobile qui peut causer des problèmes */
  .swiper-slide .promo-item-hover:hover {
    transform: none;
  }

  /* S'assurer que les slides sont bien touchables */
  .swiper-slide {
    cursor: grab;
  }

  .swiper-slide:active {
    cursor: grabbing;
  }

  /* Pagination bien visible */
  .swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 15px !important;
  }
}

/* ============================================================================
   SECTION 7 : DESCRIPTION WooCommerce
============================================================================ */
#description > ul {
  display: none !important;
}
#product-62 {
  display: none !important;
}

.woocommerce-tabs.wc-tabs-wrapper {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;

  padding: 60px 20px !important;
  padding-top: 60px !important;
  box-sizing: border-box !important;

  background: linear-gradient(
    180deg,
    #00a19a 0%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}

.woocommerce-tabs,
.wc-tabs-wrapper {
  margin-top: 0 !important;
}

.woocommerce-tabs.wc-tabs-wrapper > .wc-tabs,
.woocommerce-tabs.wc-tabs-wrapper > .panel {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.woocommerce-tabs ul.tabs li {
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 4px 4px 0 0 !important;
}

.woocommerce-tabs ul.tabs li.active {
  background-color: #ffffff !important;
}
.woocommerce-tabs ul.tabs li a {
  color: var(--dark-color) !important;
}

.woocommerce-tabs .panel {
  background-color: rgba(255, 255, 255, 0.5) !important;
  padding: 30px !important;
  margin-top: 30px !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.single-product .product {
  margin-bottom: 0 !important;
}

/* ============================================================================
   SECTION 8 : EMBARCATIONS (repris quasi identique)
============================================================================ */
.embarcations-section-fullwidth {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;

  margin-top: -60px !important;
  margin-bottom: 0 !important;
  padding: 50px 20px !important;
  box-sizing: border-box !important;

  background-color: #d4e8e6 !important;
}

.embarcations-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.embarcations-content {
  display: flex !important;
  gap: 80px !important;
  align-items: flex-start !important;
}

.embarcations-left {
  flex: 0 0 380px !important;
  text-align: left !important;
}

.embarcations-title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 64px !important;
  line-height: 1 !important;
  color: #2c3e3c !important;
  margin: 0 0 5px 0 !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
}

.embarcations-stock{
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 24px !important;
  color: #2c3e3c !important;
  margin: 0 !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
}

.embarcations-price{
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 36px !important;
  color: #2c3e3c !important;
  margin: 0 !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
}

.embarcations-subtitle {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 24px !important;
  color: #2c3e3c !important;
  margin: 0 !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
}

.embarcations-right {
  flex: 1 !important;
  padding-top: 5px !important;
}

.embarcations-text {
  font-family: 'Hind Madurai', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: #2c3e3c !important;
  margin: 0 0 16px 0 !important;
}
.embarcations-text:last-child {
  margin-bottom: 0 !important;
}

/* Section présentation – base */
.embarcations-section-fullwidth {
  position: relative;
  overflow: hidden;
}

/* Logo KFC en fond */
.embarcations-section-fullwidth::before {
  content: "";
  position: absolute;

  /* ✅ CENTRAGE VERTICAL DESKTOP */
  top: 50%;
  transform: translateY(-50%);

  /* Position horizontale desktop */
  left: 60px;

  /* Taille desktop (plus grande) */
  width: 550px;
  height: 550px;

  background-image: url("http://kimple-fishing-cup.com/wp-content/uploads/2025/12/KFC-logo-scaled.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

/* Remettre le contenu au-dessus */
.embarcations-inner,
.embarcations-content {
  position: relative;
  z-index: 1;
}

/* 📱 Tablette + mobile : logo centré horizontalement */
@media (max-width: 768px) {
  .embarcations-section-fullwidth::before {
    top: 0;                         /* on enlève le centrage vertical */
    left: 50%;
    transform: translateX(-50%);    /* centrage horizontal */
    width: 320px;
    height: 320px;
    opacity: 0.12;
  }
}

/* 📱 Petit mobile */
@media (max-width: 480px) {
  .embarcations-section-fullwidth::before {
    width: 260px;
    height: 260px;
    opacity: 0.14;
  }
}


/* ============================================================================
   SECTION 9 : PARTENAIRES (logos)
   NOTE: on NE TOUCHE PAS au global img; on scope les exceptions ici.
============================================================================ */
/* Slider "logos" (si utilisé) */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding-bottom: 40px;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-flex;
  align-items: center;
  animation: 35s slide infinite linear;
  white-space: nowrap;
}

.logos-slide a {
  display: inline-block;
  margin: 0 40px;
}
.logos-slide + .logos-slide {
  margin-left: 40px;
}

/* ✅ scope image: uniquement logos */
.logos-slide img {
  display: block;
  margin: 0;
  width: 200px !important;
  height: auto !important;
  max-width: none !important; /* ici seulement */
}

/* ============================================================================
   SECTION 10 : VIDÉO
============================================================================ */
.video-section-fullwidth {
  width: 100vw;
  height: 750px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 0;
  background-color: #000;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container iframe,
.video-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* ============================================================================
   SECTION 11 : RESPONSIVE (global)
============================================================================ */
.partners-title {
  text-align: center !important;
  font-family: 'Bebas Neue', sans-serif !important;
}
.partners-title h2 {
  font-size: 42px !important;
}

@media (max-width: 1024px) {
  /* Promo */
  .promo-title {
    font-size: 24px;
  }
  .promo-title-large {
    font-size: 42px;
  }
  .promo-subtitle {
    font-size: 26px;
  }
  .promo-item-title {
    font-size: 20px;
  }

  /* Embarcations */
  .embarcations-content {
    gap: 50px !important;
  }
  .embarcations-left {
    flex: 0 0 320px !important;
  }
  .embarcations-title {
    font-size: 52px !important;
  }
  .embarcations-subtitle {
    font-size: 22px !important;
  }

  /* Vidéo */
  .video-section-fullwidth {
    height: 500px;
  }
}

@media (max-width: 768px) {
  /* Form */
  .kfc-form-fullwidth {
    padding: 40px 15px !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .kfc-checkboxes-section {
    gap: 0 !important;
  }
  .kfc-form-container {
    padding: 25px !important;
  }

  .kfc-participants-section,
  .kfc-documents-section,
  .kfc-checkboxes-section {
    flex-direction: column !important;
  }

  .kfc-checkboxes-section > .wapf-field-row {
    width: 100% !important;
  }

  /* Promo (mobile) = carousel, pas de grille desktop */
  .promo-item-desktop { display: none !important; }
  .promo-carousel-wrapper { display: block !important; }

  /* on ne veut plus la grille desktop en mobile */
  .promo-grid {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }


  .promo-header {
    grid-column: 1;
    grid-row: 1;
    padding: 30px 20px;
  }
  .promo-item-1 {
    grid-column: 1;
    grid-row: 2;
    min-height: 250px;
  }
  .promo-item-2 {
    grid-column: 1;
    grid-row: 3;
    min-height: 250px;
  }
  .promo-item-3 {
    grid-column: 1;
    grid-row: 4;
    min-height: 200px;
  }

  .promo-title {
    font-size: 20px;
  }
  .promo-title-large {
    font-size: 32px;
  }
  .promo-subtitle {
    font-size: 22px;
  }

  /* Description */
  .woocommerce-tabs.wc-tabs-wrapper {
    padding: 40px 15px !important;
  }
  .woocommerce-tabs .panel {
    padding: 20px !important;
  }

  /* Embarcations */
  .embarcations-section-fullwidth {
    padding: 40px 20px !important;
  }
  .embarcations-content {
    flex-direction: column !important;
    gap: 30px !important;
    align-items: center !important;
  }
  .embarcations-left {
    flex: 1 !important;
    text-align: center !important;
  }
  .embarcations-right {
    padding-top: 0 !important;
  }
  .embarcations-title {
    font-size: 42px !important;
  }
  .embarcations-subtitle {
    font-size: 20px !important;
  }
  .embarcations-text {
    font-size: 14px !important;
    text-align: left !important;
  }

  /* Vidéo */
  .video-section-fullwidth {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .kfc-form-fullwidth {
    padding: 30px 10px !important;
  }
  .kfc-form-container {
    padding: 20px !important;
  }

  .woocommerce-tabs.wc-tabs-wrapper {
    padding: 30px 10px !important;
  }
  .woocommerce-tabs .panel {
    padding: 15px !important;
  }

  .promo-title-large {
    font-size: 28px;
  }
  .promo-subtitle {
    font-size: 18px;
  }
  .promo-item-title {
    font-size: 18px;
  }

  .promo-item-1,
  .promo-item-2,
  .promo-item-3 {
    min-height: 180px;
  }

  .embarcations-section-fullwidth {
    padding: 30px 15px !important;
  }
  .embarcations-title {
    font-size: 36px !important;
  }
  .embarcations-subtitle {
    font-size: 18px !important;
  }
  .embarcations-text {
    font-size: 13px !important;
  }

  .video-section-fullwidth {
    height: 300px;
  }
}

/* ============================================================================
   SECTION 12 : WARNING
============================================================================ */
.kfc-form-warning {
  margin: 30px 0 0 0;
  padding: 18px 22px;
  background: #fffbe6;
  border-left: 5px solid #e6b800;
  border-radius: 8px;
  color: #7a5a00;
  font-size: 16px;
  font-family: 'Hind Madurai', sans-serif;
}

/* ============================================================================
   BASE / RESET (éviter effets thème)
============================================================================ */
.kfc-section,
.kfc-h3-columns,
.kfc-embarcations-flex {
  box-sizing: border-box !important;
}

.kfc-h3-columns,
.kfc-col {
  box-sizing: border-box !important;
}

/* Patch important Astra/parent flex :
   si le parent est en flex + align-items:center, le child peut shrink.
   Ici on force la "prise de largeur" réellement. */
.kfc-h3-columns {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  align-self: stretch !important;
}

/* ============================================================================
   ACCORDIONS — mobile only (kfc-h3 + embarcations)
============================================================================ */

/* 1) Neutraliser le style "bouton bleu Astra" UNIQUEMENT pour nos toggles */
.kfc-h3-toggle,
.kfc-embarcation-toggle {
  background: transparent !important;
  color: inherit !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  font: inherit !important;
  line-height: inherit !important;
  text-decoration: none !important;
}

/* Focus accessible */
.kfc-h3-toggle:focus-visible,
.kfc-embarcation-toggle:focus-visible {
  outline: 2px solid rgba(0, 161, 154, 0.35) !important;
  outline-offset: 4px !important;
}

/* 2) Titres (même rendu / police) */
.kfc-h3-toggle h3,
.kfc-embarcation-toggle h3,
.kfc-embarcation-toggle .embarcations-subtitle {
  font-family: 'Bebas Neue', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  margin: 0 !important;
}

/* 3) Ligne "titre + chevron" */
.kfc-h3-toggle,
.kfc-embarcation-toggle {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.kfc-h3-arrow,
.kfc-embarcation-arrow {
  display: inline-flex !important;
  font-size: 18px !important;
  line-height: 1 !important;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  opacity: 0.8;
}

/* ============================================================================
   DESKTOP (>=769px) : PAS accordéon, contenu visible
============================================================================ */
@media (min-width: 769px) {

  /* pas de clic */
  .kfc-h3-toggle,
  .kfc-embarcation-toggle {
    pointer-events: none !important;
    cursor: default !important;
  }

  /* contenu visible */
  .kfc-h3-content,
  .kfc-embarcation-content {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* chevrons masqués */
  .kfc-h3-arrow,
  .kfc-embarcation-arrow {
    display: none !important;
  }
}

/* ============================================================================
   MOBILE (<=768px) : accordéon actif + cards "header"
============================================================================ */
@media (max-width: 768px) {

  .kfc-h3-toggle,
  .kfc-embarcation-toggle {
    pointer-events: auto !important;
    cursor: pointer !important;
    padding: 12px 14px !important;
    margin-bottom: 14px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.65) !important;
    border: 1px solid rgba(0, 161, 154, 0.25) !important;
  }

  .kfc-h3-content,
  .kfc-embarcation-content {
    display: none !important;
    padding: 12px 14px 16px 14px !important;
    margin-top: 8px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(0, 161, 154, 0.18) !important;
  }

  .kfc-h3-item.open > .kfc-h3-content,
  .kfc-embarcation.open > .kfc-embarcation-content {
    display: block !important;
  }

  .kfc-h3-item.open .kfc-h3-arrow,
  .kfc-embarcation.open .kfc-embarcation-arrow {
    transform: rotate(180deg);
  }
}

/* ============================================================================
   DESKTOP LAYOUT — KFC H3 (tes 4+1 blocs) en 2 colonnes "indépendantes"
   => évite les blancs (pas un grid 2x2), les blocs se collent par colonne.
============================================================================ */

/* Base (mobile) : 1 colonne verticale */
.kfc-h3-columns {
  display: block !important;
  margin-top: 18px !important;
}

.kfc-col {
  display: block !important;
}

/* Desktop/tablette */
@media (min-width: 769px) {

  .kfc-h3-columns {
    /* IMPORTANT : grid 2 colonnes */
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 20px !important;

    /* largeur propre + centrage */
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    align-items: start !important;
  }

  .kfc-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    min-width: 0 !important; /* évite overflow */
  }

  /* Card look desktop */
  .kfc-h3-item {
    padding: 18px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    border: 1px solid rgba(0, 161, 154, 0.18) !important;
    margin: 0 !important;
  }
}

/* ============================================================================
   DESKTOP LAYOUT — Embarcations (spécifique) : ton grid 2 colonnes
============================================================================ */
@media (min-width: 769px) {
  .kfc-embarcations-flex {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 20px !important;
    align-items: start !important;
    padding-bottom: 20px !important;
  }

  .kfc-embarcations-flex .kfc-embarcation-1 {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  .kfc-embarcations-flex .kfc-embarcation-3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  .kfc-embarcations-flex .kfc-embarcation-2 {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
}

/* ============================================================================
   SECTION — LOTS À GAGNER
============================================================================ */
.kfc-prizes-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  padding: 80px 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 161, 154, 0.08) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

.kfc-prizes-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.kfc-prize {
  display: flex;
  flex: 1 1 280px;
  max-width: 360px;
  width: 100%;
  margin: 0;
  background: white;
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 161, 154, 0.25);
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Bordures podium */
.kfc-prize--gold {
  border: 3px solid #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.kfc-prize--silver {
  border: 3px solid #c0c0c0;
  box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.kfc-prize--bronze {
  border: 3px solid #cd7f32;
  box-shadow: 0 10px 30px rgba(205, 127, 50, 0.3);
}

.kfc-prize-rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
  color: #2c3e3c;
}

.kfc-prize-amount {
  font-family: 'Hind Madurai', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.kfc-prize-bonus {
  font-family: 'Hind Madurai', sans-serif;
  font-size: 16px;
  color: #555;
}

.kfc-flex-prizes{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {

  .kfc-prizes-section {
    padding: 60px 16px;
  }

  .kfc-prizes-inner {
    gap: 20px;
    align-items: center;
  }

  .kfc-prizes-grid {
    flex-direction: column;   /* ✅ empile les cartes */
    align-items: center;
    gap: 20px;
  }

  .kfc-prize {
    max-width: 520px;         /* ✅ joli rendu mobile */
    padding: 30px 20px;
  }

  .kfc-prize-amount {
    font-size: 40px;
  }

  /* .kfc-flex-prizes{
    flex-direction: column;
  }*/
} 

/* ============================================================================
   LOTS À GAGNER — compléments (2 lignes + variantes)
============================================================================ */

/* Titre de section */
.kfc-prizes-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 2px;
  margin: 0 0 40px 0;
  color: #2c3e3c;
  text-align: center;
  width: 100%;
}

/* Grilles internes (ligne 1 / ligne 2) */
.kfc-prizes-grid {
  display: flex;
  flex-wrap: wrap;          
  justify-content: center;  
  align-items: stretch;
  gap: 30px;
  margin-bottom: 30px;
}

.kfc-prizes-grid:last-child {
  margin-bottom: 0;
}

/* Encart gros poissons */
.kfc-prize--bigfish {
  flex: 1 1 100%;
  flex-direction: column;
  padding: 40px 50px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.kfc-prize--bigfish .kfc-prize-rank {
  font-size: 42px;
  margin-bottom: 30px;
}

.kfc-fish-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kfc-fish-list li {
  font-family: 'Hind Madurai', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2c3e3c;
}

.kfc-prize-fish {
  color: var(--primary-color);
  font-weight: 700;
}

.kfc-prize-bonus-prises {
  margin-top: 12px;

  font-family: 'Hind Madurai', sans-serif;
  font-size: 24px;
  font-weight: 600;

  color: var(--primary-color);
  letter-spacing: 0.3px;
  text-transform: none;

  position: relative;
  display: inline-block;
}

.kfc-prize-bonus-prises::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin: 6px auto 0;

  background-color: var(--primary-color);
  opacity: 0.6;
  border-radius: 2px;
}



/* Responsive */
@media (max-width: 768px) {
  .kfc-prizes-title {
    font-size: 42px;
  }

  .kfc-prizes-grid {
    flex-direction: column;
    gap: 20px;
  }

  .kfc-prize--bigfish {
    padding: 30px 25px;
  }

  .kfc-prize--bigfish .kfc-prize-rank {
    font-size: 32px;
  }

  .kfc-fish-list li {
    font-size: 20px;
  }
}

/* ============================================================================
   SECTION Informations du bateau Formulaire KFC
============================================================================ */

.kfc-doc-col .kfc-multi {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.kfc-doc-col .kfc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Hind Madurai', sans-serif;
}

.kfc-section-bateau h3,
.kfc-section-bateau > h3 {
  text-align: center !important;
}


/* ============================================================================
   Supprimer Section document obligatoire "copie carte FFPS" 
============================================================================ */

#formulaire > div > form > div.kfc-form-container > div.kfc-documents-section > div:nth-child(1) > div:nth-child(2), #formulaire > div > form > div.kfc-form-container > div.kfc-documents-section > div:nth-child(2) > div:nth-child(2) {
  display: none;
}