/* =============================== */
/*   BLOC GLOBAL                   */
/* =============================== */

.lk-capacity-block {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.4rem 1.5rem 1.2rem;
  border-radius: 12px;
  border: 1px solid #eadfcb;
  background: #fff4e4;
}


/* =============================== */
/*   HEADER / TITRES               */
/* =============================== */

.lk-capacity-header {
  margin-bottom: 0.9rem;
}

/* TON NOUVEAU TITRE UNIQUEMENT */
.lk-capacity-title {
  font-size: 0.96rem;
  font-weight: 700; /* GRAS */
  color: #3b3124; /* NOIR */
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

/* LIGNE NATIVES À CACHER — exactement ce que tu demandes */
.lk-capacity-header h3:nth-of-type(2) {
  display: none !important;
}

/* Sous-titre ancien → caché sans décaler */
.lk-capacity-subtitle {
  display: none !important;
}


/* =============================== */
/*       GRID DES CARTES           */
/* =============================== */

.lk-capacity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .lk-capacity-list {
    grid-template-columns: 1fr;
  }
}


/* =============================== */
/*        CARTE INDIVIDUELLE       */
/* =============================== */

.lk-capacity-card {
  margin: 0;
  padding: 0;
  position: relative;
}

.lk-capacity-card input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 5;
}


/* =============================== */
/*        CONTENU DE LA CARTE      */
/* =============================== */

.lk-capacity-card-inner {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  border: 1px solid #eadfcb;
  background: #ffffff;
  padding: 1.1rem 1rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 100%;
}

.lk-capacity-card-inner:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lk-capacity-card input[type="radio"]:checked + .lk-capacity-card-inner {
  border-color: #c9a15a;
  box-shadow: 0 0 0 1px #c9a15a, 0 6px 18px rgba(0,0,0,0.08);
  background: #fff9ee;
}


/* =============================== */
/*            BADGE FORMAT         */
/* =============================== */

.lk-capacity-badge {
  position: absolute;
  top: -12px;
  left: 22px;
  padding: 0.12rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
  color: #6b5527;
  background: #f3e0bc;
}


/* =============================== */
/* TITRE & SOUS-TITRE DE CHAQUE CARTE */
/* =============================== */

.lk-capacity-main {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3b3124;
  display: block;
  margin-bottom: 0.05rem;
}

.lk-capacity-sub {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #7a6a58;
}


/* =============================== */
/* STICKER ROUGE "RUPTURE DE STOCK" */
/* =============================== */

.lk-capacity-stock-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: #e53935;
  color: white;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}


/* =============================== */
/* PETITS AJUSTEMENTS RESPONSIVE   */
/* =============================== */

@media (max-width: 767px) {
  .lk-capacity-block {
    margin-top: 1.5rem;
    padding: 1.1rem 1.1rem 1rem;
  }

  .lk-capacity-title {
    font-size: 0.94rem;
  }

  .lk-capacity-card-inner {
    padding: 1rem 0.9rem 0.8rem;
  }
}

.lk-capacity-eyebrow {
  font-weight: 700 !important;
}




.lk-capacity-header {
  margin-bottom: 1.6rem !important; /* AUGMENTE L’ESPACE */
}








/* Plus d'espace entre les 2 cartes sur mobile/tablette */
@media (max-width: 991px) {
  .lk-capacity-list {
    gap: 1.6rem !important;  /* augmente l'espace vertical entre 50 ml et 10 ml */
  }
}



