/* Technologia — Panier (clair, rassurant).
   Mobile-first. Le checkout n'est jamais touché. */

.tec-page-cart {
  font-family: 'Hanken Grotesk', sans-serif;
  --r: 14px;
}

/* ── Barre livraison offerte ──────────────────────────── */
.tec-ship-bar {
  background: #fff; border: 1px solid #E6E9EE; border-radius: var(--r);
  padding: 18px 20px; margin-bottom: 20px;
}
.tec-ship-track {
  width: 100%; height: 8px; background: #E8ECF2; border-radius: 999px;
  overflow: hidden; margin-bottom: 10px;
}
.tec-ship-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #0B7BA6, #00C2FF);
  transition: width .5s ease;
}
.tec-ship--free .tec-ship-fill { background: #1E9E62; }
.tec-ship-msg {
  font-size: 14px; font-weight: 700; color: #16244A;
}
.tec-ship--free .tec-ship-msg { color: #1E7A4D; }

/* ── Cross-sells ──────────────────────────────────────── */
.tec-cross-sell {
  background: #F8FAFC; border: 1px solid #E6E9EE; border-radius: var(--r);
  padding: 20px; margin-bottom: 24px;
}
.tec-cross-title {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px;
  color: #16244A; margin: 0 0 14px;
}
.tec-cross-rail {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 700px) { .tec-cross-rail { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .tec-cross-rail { grid-template-columns: repeat(4, 1fr); } }

/* ── Réassurance ──────────────────────────────────────── */
.tec-cart-reassure {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-top: 24px;
}
.tec-reassure-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #5A6478;
  background: #F4F8FC; border: 1px solid #E6E9EE; border-radius: 10px;
  padding: 12px 14px;
}
@media (min-width: 640px) { .tec-cart-reassure { grid-template-columns: repeat(4, 1fr); } }

/* ── Note flex sous total ─────────────────────────────── */
.tec-cart-flex-note {
  font-size: 13px; font-weight: 600; color: #0B5E86;
  background: #EAF6FE; border: 1px solid #CFE6F5;
  border-radius: 10px; padding: 10px 14px; margin-top: 12px;
}

/* ── Bouton checkout override ─────────────────────────── */
.woocommerce-cart .checkout-button {
  background: linear-gradient(135deg, #4BA9DE, #273F7E) !important;
  border: 0 !important; border-radius: 12px !important;
  color: #fff !important; font-weight: 800 !important;
  font-family: 'Hanken Grotesk', sans-serif !important;
  padding: 16px 28px !important; font-size: 16px !important;
}
.woocommerce-cart .checkout-button:hover { filter: brightness(1.07); }

/* ── Total override ───────────────────────────────────── */
.woocommerce-cart .cart_totals .order-total .woocommerce-Price-amount {
  font-weight: 800; color: #0B7BA6;
}

/* ── Empty cart ───────────────────────────────────────── */
.woocommerce-cart .cart-empty {
  text-align: center; padding: 48px 16px;
}
.woocommerce-cart .cart-empty::before {
  content: "🛒"; display: block; font-size: 48px; margin-bottom: 16px;
}
.woocommerce-cart .return-to-shop a {
  background: linear-gradient(135deg, #4BA9DE, #273F7E);
  color: #fff; border-radius: 999px; padding: 14px 28px;
  font-weight: 800; text-decoration: none; display: inline-block; margin-top: 16px;
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .tec-cart-reassure { grid-template-columns: 1fr 1fr; }
  .tec-cross-rail { grid-template-columns: repeat(2, 1fr); }
}
