/* =========================================================
   ILL Cart — Premium Ultra (external)
   File: /assets/css/ill-cart.css
   ========================================================= */

.ill-cart{
  background: linear-gradient(180deg,#fff 0%, color-mix(in oklab, var(--soft) 55%, #fff 45%) 100%);
}

/* Empêche Hello/Elementor de limiter */
body #primary.ill-cart,
body .site-main #primary.ill-cart{
  max-width:none !important;
  width:100% !important;
}

.ill-cart__wrap{
  width: min(1520px, 100% - 2rem);
  margin-inline:auto;
}

@media (min-width:1024px){
  .ill-cart__wrap{ width: min(1600px, 100% - 3.2rem); }
}

/* HERO */
.ill-cart__hero{
  padding: clamp(18px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--soft-2);
  background:
    radial-gradient(900px 240px at 15% 5%, color-mix(in oklab, var(--brand) 16%, transparent) 0%, transparent 60%),
    radial-gradient(900px 240px at 85% 5%, color-mix(in oklab, var(--brand) 10%, transparent) 0%, transparent 60%);
}

.ill-cart__heroRow{
  display:flex; gap:16px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
}

.ill-cart__eyebrow{
  margin:0 0 6px;
  color:var(--muted);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.ill-cart__title{ margin:0 0 10px; letter-spacing:.2px; }

.ill-cart__kpis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:10px;
}

@media (max-width:520px){ .ill-cart__kpis{ grid-template-columns:1fr; } }

.ill-cart__kpi{
  background:#fff;
  border:1px solid var(--soft-2);
  border-radius:14px;
  padding:10px 12px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}

.ill-cart__kpiLabel{
  display:block;
  color:var(--muted);
  font-weight:700;
  font-size:12px;
  margin-bottom:4px;
}
.ill-cart__kpiVal{
  display:block;
  font-weight:900;
  font-size:16px;
  color:var(--ink);
}

.ill-cart__kpi--trust .ill-cart__kpiVal{
  color: color-mix(in oklab, var(--brand) 90%, #000 0%);
}

.ill-cart__heroRight{
  display:inline-flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}

.ill-cart__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:.78rem 1.05rem;
  border-radius:999px;
  font-weight:900;
  border:1px solid var(--soft-2);
  text-decoration:none;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.ill-cart__btn--primary{ background:var(--brand); border-color:var(--brand); color:#fff; }
.ill-cart__btn--ghost{ background:#fff; color:var(--ink); }
.ill-cart__btn:hover{ filter:brightness(.99); }
.ill-cart__btn:active{ transform:translateY(1px); }

/* LAYOUT */
.ill-cart__section{
  padding: clamp(16px, 3vw, 28px) 0 clamp(28px, 4vw, 56px);
}

.ill-cart__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:16px;
  align-items:start;
}

@media (min-width:1024px){
  .ill-cart__grid{
    grid-template-columns:minmax(0,1fr) 410px;
    gap:18px;
  }
}

.ill-cart__main, .ill-cart__side{ min-width:0; }

@media (min-width:1024px){
  .ill-cart__side{ position:sticky; top:18px; }
}

/* Notices */
.ill-cart .woocommerce-notices-wrapper{ margin-bottom:12px; }
.ill-cart .woocommerce-message,
.ill-cart .woocommerce-info,
.ill-cart .woocommerce-error{
  border-radius:14px;
  border:1px solid var(--soft-2);
  background:#fff;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}

/* Empty */
.ill-cart__empty{
  background:#fff;
  border:1px solid var(--soft-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.ill-cart__empty p{ margin:0 0 12px; color:var(--muted); font-weight:700; }

/* Custom table */
.ill-cart__form{
  background:#fff;
  border:1px solid var(--soft-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.ill-cart__thead{
  display:grid;
  grid-template-columns: 1.7fr .6fr .55fr .65fr 42px;
  padding:12px 14px;
  background: color-mix(in oklab, var(--soft) 68%, #fff 32%);
  border-bottom:1px solid var(--soft-2);
  font-weight:900;
  font-size:12px;
  letter-spacing:.02em;
  text-transform:uppercase;
}

@media (max-width:860px){ .ill-cart__thead{ display:none; } }

.ill-cart__row{
  display:grid;
  grid-template-columns: 1.7fr .6fr .55fr .65fr 42px;
  padding:14px;
  border-top:1px solid var(--soft-2);
  align-items:center;
  gap:10px;
}

@media (max-width:860px){
  .ill-cart__row{ grid-template-columns:1fr; gap:12px; }
}

.ill-cart__prod{
  display:grid;
  grid-template-columns:62px 1fr;
  gap:12px;
  align-items:center;
}

.ill-cart__thumb img{
  width:62px; height:62px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--soft-2);
}

.ill-cart__name{
  display:block;
  font-weight:900;
  color:var(--ink);
  text-decoration:none;
  line-height:1.25;
}
.ill-cart__name:hover{ text-decoration:underline; }

.ill-cart__meta{ color:var(--muted); font-size:13px; margin-top:2px; }

.ill-cart__price, .ill-cart__subtotal{ font-weight:900; color:var(--ink); }

@media (max-width:860px){
  .ill-cart__price::before{ content:"Prix — "; color:var(--muted); font-weight:800; }
  .ill-cart__subtotal::before{ content:"Sous-total — "; color:var(--muted); font-weight:800; }
}

.ill-cart__qty .quantity .qty{
  max-width:110px;
  border-radius:14px;
}

.ill-cart__removeBtn{
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border-radius:999px;
  background: color-mix(in oklab, #ef4444 92%, #000 0%);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
}
.ill-cart__removeBtn:hover{ filter:brightness(.98); }

/* Actions */
.ill-cart__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  padding:14px;
  background: color-mix(in oklab, var(--soft) 68%, #fff 32%);
  border-top:1px solid var(--soft-2);
}

.ill-cart__coupon{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.ill-cart__coupon input[type="text"]{
  height:44px;
  border-radius:999px;
  padding:0 14px;
  border:1px solid var(--soft-2);
  min-width:220px;
}

/* Uniformiser les boutons Woo (apply/update/checkout) */
.ill-cart .woocommerce a.button,
.ill-cart .woocommerce button.button,
.ill-cart .woocommerce input.button,
.ill-cart .woocommerce a.checkout-button,
.ill-cart .woocommerce button.checkout-button{
  border-radius:999px !important;
  font-weight:900 !important;
  padding:.85rem 1.1rem !important;
  border:1px solid var(--soft-2) !important;
  box-shadow:0 10px 26px rgba(0,0,0,.08) !important;
  text-decoration:none !important;
}

.ill-cart .woocommerce a.checkout-button,
.ill-cart .woocommerce button.checkout-button{
  background:var(--brand) !important;
  border-color:var(--brand) !important;
  color:#fff !important;
}

/* Totals */
.ill-cart__totals .cart_totals{
  margin:0;
  background:#fff;
  border:1px solid var(--soft-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.ill-cart__totals .cart_totals h2{
  margin:0;
  padding:14px;
  background: color-mix(in oklab, var(--soft) 68%, #fff 32%);
  border-bottom:1px solid var(--soft-2);
  font-size:16px;
  font-weight:900;
}
.ill-cart__totals .cart_totals table{ margin:0; border:0; }
.ill-cart__totals .cart_totals td,
.ill-cart__totals .cart_totals th{
  padding:12px 14px;
  border-top:1px solid var(--soft-2);
}

/* Trust */
.ill-cart__card{
  background:#fff;
  border:1px solid var(--soft-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:14px;
}
.ill-cart__h2{ margin:0 0 10px; font-size:18px; font-weight:900; }

.ill-cart__trustList{ list-style:none; margin:12px 0 0; padding:0; display:grid; gap:10px; }
.ill-cart__trustItem{
  display:grid;
  grid-template-columns:26px 1fr;
  gap:10px;
  align-items:start;
  padding:10px;
  border:1px solid var(--soft-2);
  border-radius:14px;
  background: color-mix(in oklab, var(--soft) 55%, #fff 45%);
}
.ill-cart__trustIco{
  inline-size:26px; block-size:26px;
  display:grid; place-items:center;
  border-radius:999px;
  background: color-mix(in oklab, var(--brand) 14%, #fff 86%);
  color: color-mix(in oklab, var(--brand) 92%, #000 0%);
  font-weight:900;
}
.ill-cart__trustTxt strong{ display:block; font-weight:900; }
.ill-cart__trustTxt span{ display:block; color:var(--muted); font-size:13px; margin-top:2px; }

/* Reco — grille Woo (tes cards) */
.ill-cart__reco{ margin-top:22px; }
.ill-cart__recoHead{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  margin:0 0 12px;
}
.ill-cart__recoTitle{ margin:0; font-size:18px; font-weight:900; }
.ill-cart__recoSub{ margin:0; color:var(--muted); font-size:13px; }

.ill-cart__reco .woocommerce ul.products{
  width:100% !important;
  margin:0 !important;
  display:grid !important;
  gap:14px !important;
  grid-template-columns: repeat(4, minmax(0,1fr)) !important;
}
@media (max-width:1100px){ .ill-cart__reco .woocommerce ul.products{ grid-template-columns:repeat(3,1fr) !important; } }
@media (max-width:820px){ .ill-cart__reco .woocommerce ul.products{ grid-template-columns:repeat(2,1fr) !important; } }
@media (max-width:520px){ .ill-cart__reco .woocommerce ul.products{ grid-template-columns:1fr !important; } }

.ill-cart__reco .woocommerce ul.products li.product{
  margin:0 !important;
  width:auto !important;
  float:none !important;
}

/* Sticky mobile */
.ill-cart__sticky{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--soft-2);
  padding:10px 12px;
  display:none;
}
@media (max-width:1023px){
  .ill-cart__sticky{ display:block; }
  body{ padding-bottom:78px; }
}
.ill-cart__stickyRow{
  width:min(980px, 100% - 1.2rem);
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.ill-cart__stickyTotal{ display:flex; flex-direction:column; gap:2px; }
.ill-cart__stickyTotal small{ color:var(--muted); font-weight:800; }
.ill-cart__stickyTotal strong{ font-weight:900; color:var(--ink); }
.ill-cart__stickyBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.8rem 1.05rem;
  border-radius:999px;
  font-weight:900;
  background: var(--brand);
  color:#fff;
  text-decoration:none;
  border:1px solid var(--brand);
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  white-space:nowrap;
}





/* =========================================================
   FIX GRID — trous causés par ::before/::after (Woo/Theme clearfix)
   ========================================================= */

.woocommerce ul.products::before,
.woocommerce ul.products::after{
  content: none !important;
  display: none !important;
}

/* Sécurité : certains thèmes mettent float/clear sur li.product */
.woocommerce ul.products li.product{
  float: none !important;
  clear: none !important;
}
/* =========================================================
   CART — BOOST PREMIUM (anti look WooCommerce)
   Scope: page-panier (ill-cart)
   ========================================================= */

/* 1) En-tête "Produit / Prix / Quantité / Sous-total" : plus premium */
.ill-cart__thead{
  border-bottom: 0 !important;
  border-radius: 18px;
  margin: 14px 14px 6px;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

/* 2) Chaque ligne -> vraie carte */
.ill-cart__row{
  margin: 10px 14px;
  border: 1px solid color-mix(in oklab, var(--soft-2) 70%, #fff 30%) !important;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(2,6,23,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.ill-cart__row:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(2,6,23,.08);
}

/* On enlève l'effet "table" */
.ill-cart__row + .ill-cart__row{ border-top: 0 !important; }

/* 3) Produit: titre + meta + vignette plus premium */
.ill-cart__thumb img{
  width: 70px;
  height: 70px;
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(2,6,23,.08);
}

.ill-cart__name{
  font-size: 14.5px;
  letter-spacing: .1px;
}

.ill-cart__meta{
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed color-mix(in oklab, var(--soft-2) 70%, #fff 30%);
  opacity: .92;
}

/* 4) Prix & sous-total : hiérarchie visuelle */
.ill-cart__price{
  font-size: 14px;
  color: color-mix(in oklab, var(--ink) 80%, var(--muted) 20%);
  font-weight: 900;
}

.ill-cart__subtotal{
  font-size: 15px;
  font-weight: 950;
  color: var(--ink);
}

/* Woo suffix "Ttc" plus discret */
.ill-cart__price small.woocommerce-price-suffix{
  font-size: 12px !important;
  opacity: .65;
  margin-left: 4px;
}

/* 5) Quantité : input plus app-like */
.ill-cart__qty .quantity{
  display: inline-flex;
  align-items: center;
  background: color-mix(in oklab, var(--soft) 60%, #fff 40%);
  border: 1px solid var(--soft-2);
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.ill-cart__qty .quantity .qty{
  border: 0 !important;
  background: transparent !important;
  width: 72px !important;
  padding: 6px 8px !important;
  font-weight: 900;
  text-align: center;
  color: var(--ink);
  outline: none !important;
}

/* 6) Bouton supprimer : discret + premium */
.ill-cart__removeBtn{
  width: 32px !important;
  height: 32px !important;
  font-size: 14px !important;
  background: color-mix(in oklab, #ef4444 18%, #fff 82%) !important;
  color: #ef4444 !important;
  border: 1px solid color-mix(in oklab, #ef4444 30%, var(--soft-2) 70%) !important;
  box-shadow: 0 10px 22px rgba(239,68,68,.10);
}
.ill-cart__removeBtn:hover{
  background: color-mix(in oklab, #ef4444 24%, #fff 76%) !important;
}

/* 7) Zone actions (coupon + update) -> bloc premium */
.ill-cart__actions{
  margin: 14px;
  border-radius: 18px;
  border: 1px solid var(--soft-2);
  background: color-mix(in oklab, var(--soft) 60%, #fff 40%);
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
}

/* Input coupon */
.ill-cart__coupon input[type="text"]{
  background: #fff !important;
  border: 1px solid var(--soft-2) !important;
  box-shadow: 0 10px 20px rgba(2,6,23,.05);
}

/* 8) Totaux Woo : transformer la table en "resume" premium */
.ill-cart__totals .cart_totals{
  border-radius: 18px !important;
  overflow: hidden;
}

.ill-cart__totals .cart_totals h2{
  font-size: 16px;
  letter-spacing: .2px;
}

/* Table totals moins "table", plus "resume" */
.ill-cart__totals .cart_totals table{
  border-collapse: separate !important;
  border-spacing: 0 10px !important;
  padding: 10px 14px 12px;
}

.ill-cart__totals .cart_totals tr{
  background: #fff;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}

.ill-cart__totals .cart_totals th,
.ill-cart__totals .cart_totals td{
  border: 0 !important;
  padding: 12px 14px !important;
}

.ill-cart__totals .cart_totals th{
  color: var(--muted);
  font-weight: 900;
  width: 45%;
}

.ill-cart__totals .cart_totals td{
  text-align: right;
  font-weight: 950;
  color: var(--ink);
}

/* 9) Bouton "Valider la commande" : full width premium */
.ill-cart .woocommerce a.checkout-button,
.ill-cart .woocommerce button.checkout-button{
  width: 100% !important;
  justify-content: center !important;
  padding: 1rem 1.1rem !important;
  font-size: 15px !important;
  box-shadow: 0 16px 38px rgba(16,185,129,.22) !important;
}

/* 10) Mobile: lisibilité */
@media (max-width: 860px){
  .ill-cart__row{
    margin: 12px 0;
    border-radius: 18px;
  }
  .ill-cart__actions{
    margin: 12px 0;
  }
  .ill-cart__thead{
    margin: 0 0 10px;
  }
}
@media (max-width: 860px){
  .ill-cart__price::before,
  .ill-cart__subtotal::before{
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--soft) 65%, #fff 35%);
    border: 1px solid var(--soft-2);
    margin-right: 8px;
    font-size: 12px;
    letter-spacing: .02em;
  }
}



/* =========================================================
   ILL / WPZ — Free shipping gap (Hero) — aligned + green only
   Cible: .wpz-freegap placé dans .ill-cart__hero
   ========================================================= */

.ill-cart__hero .wpz-freegap{
  margin-top: 14px;

  display: flex;
  align-items: center;     /* ✅ align badge + texte */
  gap: 12px;

  padding: 12px 14px;
  border-radius: 18px;

  background:
    radial-gradient(520px 180px at 12% 0%, rgba(23,160,81,.14), transparent 58%),
    radial-gradient(520px 180px at 88% 0%, rgba(23,160,81,.08), transparent 58%),
    rgba(255,255,255,.78);

  border: 1px solid color-mix(in oklab, rgba(15,23,42,.14) 70%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 16px 46px rgba(2,6,23,.10);
}

.ill-cart__hero .wpz-freegap__badge{
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;     /* ✅ centre vertical du texte */
  justify-content: center;

  height: 30px;
  padding: 0 12px;
  border-radius: 999px;

  font-weight: 950;
  font-size: 12px;
  letter-spacing: .2px;
  white-space: nowrap;

  /* ✅ vert uniquement */
  color: color-mix(in oklab, #17A051 86%, #0f172a);
  background: color-mix(in oklab, #17A051 12%, #fff);
  border: 1px solid color-mix(in oklab, #17A051 28%, #fff);

  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}

.ill-cart__hero .wpz-freegap__txt{
  min-width: 0;
  margin: 0;              /* ✅ évite décalage baseline */
  color: color-mix(in oklab, #0f172a 82%, transparent);
  font-size: 13.5px;
  line-height: 1.25;      /* ✅ même hauteur visuelle que le badge */
}

.ill-cart__hero .wpz-freegap__txt strong{
  font-weight: 950;
  color: color-mix(in oklab, #0f172a 88%, #17A051);
}

/* Etat OK : juste un peu plus “green glow”, mais toujours vert */
.ill-cart__hero .wpz-freegap--ok{
  border-color: color-mix(in oklab, #17A051 26%, rgba(15,23,42,.14));
  background:
    radial-gradient(520px 180px at 12% 0%, rgba(23,160,81,.18), transparent 58%),
    radial-gradient(520px 180px at 88% 0%, rgba(23,160,81,.10), transparent 58%),
    rgba(255,255,255,.80);
}

.ill-cart__hero .wpz-freegap--ok .wpz-freegap__badge{
  background: color-mix(in oklab, #17A051 16%, #fff);
  border-color: color-mix(in oklab, #17A051 34%, #fff);
}

/* Mobile : compacte */
@media (max-width: 640px){
  .ill-cart__hero .wpz-freegap{
    align-items: flex-start;   /* texte peut wrap, badge reste top */
    padding: 11px 12px;
    border-radius: 16px;
    gap: 10px;
  }
  .ill-cart__hero .wpz-freegap__badge{
    height: 28px;
    padding: 0 10px;
    font-size: 11.5px;
  }
  .ill-cart__hero .wpz-freegap__txt{
    font-size: 13px;
    line-height: 1.3;
  }
}

/* Hover doux (si autorisé) */
@media (prefers-reduced-motion: no-preference){
  .ill-cart__hero .wpz-freegap{
    transition: transform .16s ease, box-shadow .18s ease, border-color .18s ease;
  }
  .ill-cart__hero .wpz-freegap:hover{
    transform: translateY(-1px);
    box-shadow: 0 22px 64px rgba(2,6,23,.14);
  }
}



/* =========================================================
   ILL CART — SHIPPING (SCOPED) — Premium UX / Full width
   Scope strict:
   .ill-cart__totals--scoped + [data-ill-shipping="1"]
   ========================================================= */

/* 0) La ligne shipping ne doit PAS hériter des styles "totals" qui écrasent */
.ill-cart__totals--scoped [data-ill-shipping="1"] th,
.ill-cart__totals--scoped [data-ill-shipping="1"] td{
  text-align: left !important;
  vertical-align: top !important;
}

/* On laisse ton TH "Livraison" propre, mais sans casser */
.ill-cart__totals--scoped [data-ill-shipping="1"] th{
  padding-bottom: 8px !important;
}

/* TD : pleine largeur + reset */
.ill-cart__totals--scoped [data-ill-shipping="1"] td{
  padding: 0 !important;
}

/* 1) Force le contenu shipping à occuper toute la largeur */
.ill-cart__totals--scoped [data-ill-shipping="1"] td > *,
.ill-cart__totals--scoped [data-ill-shipping="1"] td .woocommerce-shipping-methods,
.ill-cart__totals--scoped [data-ill-shipping="1"] td #shipping_method,
.ill-cart__totals--scoped [data-ill-shipping="1"] td [data-ill-ship-list="1"]{
  width: 100% !important;
  max-width: none !important;
}

/* 2) Liste : reset puces + carte premium */
.ill-cart__totals--scoped [data-ill-ship-list="1"]{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;

  border: 1px solid color-mix(in oklab, rgba(15,23,42,.12) 70%, transparent);
  border-radius: 16px;

  background:
    radial-gradient(520px 180px at 12% 0%, rgba(23,160,81,.10), transparent 60%),
    rgba(255,255,255,.92);

  box-shadow: 0 14px 34px rgba(2,6,23,.08);
  overflow: hidden;
}

/* 3) Item : séparateurs clean */
.ill-cart__totals--scoped [data-ill-ship-list="1"] .ill-ship__item{
  margin: 0 !important;
  padding: 0 !important;
  border-top: 1px solid rgba(15,23,42,.06);
}
.ill-cart__totals--scoped [data-ill-ship-list="1"] .ill-ship__item:first-child{
  border-top: 0;
}

/* 4) Label : FLEX (clé anti-“étroit”) + full clickable */
.ill-cart__totals--scoped [data-ill-ship-list="1"] .ill-ship__label{
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;

  width: 100% !important;
  padding: 12px 12px !important;

  cursor: pointer;
  user-select: none;

  color: color-mix(in oklab, #0f172a 86%, transparent);
  font-weight: 850;
  font-size: 13px;
  line-height: 1.28;

  background: transparent;
  transition: background .18s ease;
}

/* 5) Radio : joli mais accessible */
.ill-cart__totals--scoped [data-ill-ship-list="1"] input[type="radio"]{
  appearance: none;
  -webkit-appearance: none;

  width: 16px;
  height: 16px;
  border-radius: 999px;

  border: 2px solid color-mix(in oklab, #17A051 38%, #0f172a);
  background: #fff;

  display: inline-grid;
  place-items: center;

  margin: 2px 0 0 !important;
  flex: 0 0 auto;

  cursor: pointer;
}
.ill-cart__totals--scoped [data-ill-ship-list="1"] input[type="radio"]::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #17A051;
  transform: scale(0);
  transition: transform .14s ease;
}
.ill-cart__totals--scoped [data-ill-ship-list="1"] input[type="radio"]:checked::before{
  transform: scale(1);
}
.ill-cart__totals--scoped [data-ill-ship-list="1"] input[type="radio"]:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(23,160,81,.18);
}

/* 6) Prix : toujours à droite */
.ill-cart__totals--scoped [data-ill-ship-list="1"] .amount,
.ill-cart__totals--scoped [data-ill-ship-list="1"] .woocommerce-Price-amount{
  margin-left: auto !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;

  font-weight: 950;
  color: color-mix(in oklab, #0f172a 90%, #17A051);
}

/* 7) Texte : autoriser le wrap propre (sinon effet colonne) */
.ill-cart__totals--scoped [data-ill-ship-list="1"] .ill-ship__label{
  min-width: 0 !important;
  white-space: normal !important;
}
.ill-cart__totals--scoped [data-ill-ship-list="1"] .ill-ship__label *{
  min-width: 0 !important;
}

/* Hover */
@media (hover:hover){
  .ill-cart__totals--scoped [data-ill-ship-list="1"] .ill-ship__label:hover{
    background: color-mix(in oklab, #17A051 10%, #fff);
  }
}

/* 8) Sous-blocs (point relais, destination, widgets plugins) => full width */
.ill-cart__totals--scoped [data-ill-shipping="1"] .woocommerce-shipping-destination,
.ill-cart__totals--scoped [data-ill-shipping="1"] .woocommerce-shipping-calculator,
.ill-cart__totals--scoped [data-ill-shipping="1"] .shipping-calculator-form,
.ill-cart__totals--scoped [data-ill-shipping="1"] .woocommerce-shipping-method-details,
.ill-cart__totals--scoped [data-ill-shipping="1"] [class*="relay"],
.ill-cart__totals--scoped [data-ill-shipping="1"] [class*="mondial"],
.ill-cart__totals--scoped [data-ill-shipping="1"] [id*="mondial"],
.ill-cart__totals--scoped [data-ill-shipping="1"] [class*="pickup"],
.ill-cart__totals--scoped [data-ill-shipping="1"] [id*="pickup"]{
  width: 100% !important;
  max-width: none !important;
}

/* 9) Si un plugin injecte un bloc dans le TD avec "text-align:right", on annule */
.ill-cart__totals--scoped [data-ill-shipping="1"] td *{
  text-align: left;
}

/* 10) Mobile : compacte, le prix passe sous le libellé si besoin */
@media (max-width: 640px){
  .ill-cart__totals--scoped [data-ill-ship-list="1"] .ill-ship__label{
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .ill-cart__totals--scoped [data-ill-ship-list="1"] .amount,
  .ill-cart__totals--scoped [data-ill-ship-list="1"] .woocommerce-Price-amount{
    margin-left: 26px !important; /* align avec le texte après radio */
    width: auto;
  }
}