/* ============================================================
   Hypno-Kit Core — CSS principal
   Branding navy/teal/gold + composants UI complets
   ============================================================ */

:root {
  --hk-navy:      #061526;
  --hk-deep:      #020812;
  --hk-teal:      #007f83;
  --hk-cyan:      #00d5ff;
  --hk-gold:      #aeb23a;
  --hk-gold-soft: #d4b46a;
  --hk-cream:     #f7f4ed;
  --hk-muted:     #cbd8e7;
  --hk-text:      #4e5d6a;
  --hk-white:     #ffffff;
  --hk-shadow:    0 30px 80px rgba(0,0,0,.35);
  --hk-radius:    42px;
  --hk-radius-sm: 18px;
  --hk-radius-md: 28px;
}

/* ── Reset léger ─────────────────────────────────────────── */
.hk-wrap * { box-sizing: border-box; }
.hk-wrap a { color: inherit; text-decoration: none; }

/* ── Utilitaires ─────────────────────────────────────────── */
.hk-container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

/* ── Boutons ─────────────────────────────────────────────── */
.hk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  border: 0;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
  text-decoration: none;
}

.hk-btn:hover { transform: translateY(-2px); }

.hk-btn--primary {
  background: linear-gradient(135deg, #f5e5a4, var(--hk-gold), var(--hk-teal));
  color: #04111f;
  box-shadow: 0 14px 38px rgba(0,166,166,.28);
}

.hk-btn--ghost {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--hk-white);
}

.hk-btn--teal {
  background: var(--hk-teal);
  color: var(--hk-white);
}

.hk-btn--sm { padding: 10px 20px; font-size: .88rem; }
.hk-btn--lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── Notices ─────────────────────────────────────────────── */
.hk-notice {
  padding: 16px 20px;
  border-radius: var(--hk-radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  line-height: 1.7;
  margin: 16px 0;
}

.hk-notice--info    { background: rgba(0,213,255,.10); color: #9df6ff; border: 1px solid rgba(0,213,255,.2); }
.hk-notice--success { background: rgba(0,127,131,.12); color: #7ef0f3; border: 1px solid rgba(0,127,131,.25); }
.hk-notice--error   { background: rgba(220,38,38,.10); color: #fca5a5; border: 1px solid rgba(220,38,38,.2); }
.hk-notice--gold    { background: rgba(212,180,106,.10); color: #f3e7bc; border: 1px solid rgba(212,180,106,.25); }

/* ── Formulaires ─────────────────────────────────────────── */
.hk-form-group {
  display: grid;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}

.hk-form-group label {
  font-size: .88rem;
  font-weight: 800;
  color: var(--hk-muted);
}

.hk-input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--hk-white);
  border-radius: var(--hk-radius-sm);
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.hk-input::placeholder { color: rgba(255,255,255,.38); }

.hk-input:focus {
  border-color: rgba(0,213,255,.55);
  box-shadow: 0 0 0 4px rgba(0,213,255,.10);
}

.hk-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.hk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--hk-muted);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  line-height: 1.55;
  cursor: pointer;
}

.hk-checkbox input { margin-top: 3px; flex-shrink: 0; }
.hk-checkbox a { color: var(--hk-gold-soft); font-weight: 900; }

.hk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hk-form-divider {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 8px 0;
}

/* ── Auth card (connexion / inscription) ─────────────────── */
.hk-auth-section {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(0,213,255,.20), transparent 30%),
    radial-gradient(circle at 18% 28%, rgba(174,178,58,.14), transparent 34%),
    linear-gradient(135deg, #020812 0%, #061526 48%, #030b16 100%);
}

.hk-auth-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(420px,.85fr);
  gap: 70px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.hk-auth-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--hk-muted);
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 26px;
}

.hk-auth-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hk-cyan);
  box-shadow: 0 0 18px var(--hk-cyan);
}

.hk-auth-h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: uppercase;
  color: var(--hk-white);
  margin-bottom: 22px;
}

.hk-auth-h1 span { color: var(--hk-gold-soft); }

.hk-auth-desc {
  color: var(--hk-muted);
  line-height: 1.9;
  font-family: 'Inter', sans-serif;
  margin-bottom: 30px;
}

.hk-auth-benefits {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
}

.hk-auth-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--hk-white);
  line-height: 1.5;
}

.hk-auth-benefits li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hk-gold-soft);
  box-shadow: 0 0 14px var(--hk-gold-soft);
  flex-shrink: 0;
  margin-top: 6px;
}

.hk-auth-card {
  border-radius: var(--hk-radius);
  padding: 46px;
  background:
    radial-gradient(circle at 80% 15%, rgba(0,213,255,.25), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(174,178,58,.16), transparent 35%),
    linear-gradient(145deg, #071d34, #020811);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--hk-shadow);
  position: relative;
  overflow: hidden;
}

.hk-auth-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -130px;
  top: -100px;
  background: radial-gradient(circle, rgba(174,178,58,.22), transparent 65%);
  pointer-events: none;
}

.hk-auth-card > * { position: relative; z-index: 2; }

.hk-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.hk-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 0 20px rgba(0,213,255,.22);
  flex-shrink: 0;
  font-size: 1.4rem;
}

.hk-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--hk-white);
  line-height: 1;
}

.hk-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--hk-muted);
  margin-top: 6px;
}

.hk-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hk-forgot {
  color: var(--hk-gold-soft);
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
}

.hk-auth-switch {
  text-align: center;
  color: var(--hk-muted);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  font-size: .9rem;
}

.hk-auth-switch a {
  color: var(--hk-gold-soft);
  font-weight: 900;
}

/* ── Espace membre ───────────────────────────────────────── */
.hk-member-wrap {
  background:
    radial-gradient(circle at 82% 12%, rgba(0,213,255,.18), transparent 30%),
    linear-gradient(135deg, #020812 0%, #061526 100%);
  min-height: 100vh;
  padding: 60px 0 100px;
  font-family: 'Inter', sans-serif;
}

.hk-member-header {
  margin-bottom: 50px;
}

.hk-member-header h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.055em;
  color: var(--hk-white);
  line-height: .95;
}

.hk-member-header h1 span { color: var(--hk-gold-soft); }
.hk-member-header p { color: var(--hk-muted); margin-top: 14px; line-height: 1.8; }

/* Stats dashboard */
.hk-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.hk-stat-card {
  padding: 24px 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.10);
}

.hk-stat-card .hk-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--hk-white);
  letter-spacing: -.04em;
  line-height: 1;
}

.hk-stat-card .hk-stat-label {
  font-size: .88rem;
  color: var(--hk-muted);
  margin-top: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Sections membre */
.hk-member-section {
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  padding: 34px;
  margin-bottom: 28px;
}

.hk-member-section h2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: var(--hk-white);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Section support / SAV */
.hk-support-text {
  color: var(--hk-muted, #9db3c9);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 640px;
}

.hk-support-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Grille ressources */
.hk-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.hk-resource-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  transition: transform .25s, box-shadow .25s;
}

.hk-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.hk-resource-cover-link {
  display: block;
  text-decoration: none;
}

.hk-resource-cover {
  height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  cursor: pointer;
}

.hk-resource-body {
  padding: 18px 20px;
}

.hk-resource-title-link {
  text-decoration: none;
}

.hk-resource-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--hk-white);
  margin-bottom: 6px;
  line-height: 1.35;
  transition: color .2s;
}

.hk-resource-title-link:hover .hk-resource-title {
  color: var(--hk-cyan, #00d5ff);
}

.hk-resource-date {
  font-size: .78rem;
  color: var(--hk-muted, #9db3c9);
  margin-bottom: 14px;
}

.hk-resource-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Bandeau "déjà acheté" sur la fiche produit */
.hk-owned-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(0,213,255,.08);
  border: 1px solid rgba(0,213,255,.25);
  margin: 18px 0;
}

.hk-owned-banner__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hk-owned-banner__text strong {
  color: var(--hk-white, #fff);
  font-size: .95rem;
}

.hk-owned-banner__text span {
  color: var(--hk-muted, #9db3c9);
  font-size: .82rem;
}

/* Tableau commandes */
.hk-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}

.hk-orders-table th {
  text-align: left;
  padding: 12px 16px;
  color: var(--hk-muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.hk-orders-table td {
  padding: 14px 16px;
  color: var(--hk-muted);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.hk-orders-table tr:last-child td { border-bottom: 0; }

.hk-order-status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hk-order-status--completed  { background: rgba(0,127,131,.15); color: #7ef0f3; }
.hk-order-status--processing { background: rgba(174,178,58,.12); color: #e2e596; }
.hk-order-status--pending    { background: rgba(212,180,106,.12); color: #f0d899; }

/* ── Panier ──────────────────────────────────────────────── */
.hk-cart-wrap { font-family: 'Inter', sans-serif; }

.hk-qty-static {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: var(--hk-white);
  font-weight: 700;
}

/* ── Product grid ────────────────────────────────────────── */
.hk-product-grid {
  display: grid;
  grid-template-columns: repeat(var(--hk-cols, 3), minmax(0,1fr));
  gap: 24px;
  font-family: 'Inter', sans-serif;
}

.hk-product-card {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  transition: transform .25s, box-shadow .25s;
}

.hk-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.hk-product-cover {
  height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hk-product-cover-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .95;
  color: var(--hk-white);
  position: relative;
  z-index: 2;
}

/* Couverture avec vraie image produit (WooCommerce → Image mise en avant) */
.hk-product-cover--image {
  padding: 0;
  background: #061526;
}

.hk-product-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.hk-product-cover-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,8,18,.85) 0%, rgba(2,8,18,.15) 55%, transparent 80%);
  z-index: 1;
}

.hk-product-cover-label {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 2;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
}

.hk-product-body { padding: 24px; }

.hk-product-grid-heading {
  text-align: center;
  margin-bottom: 36px;
}

.hk-product-grid-title {
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: var(--hk-white);
  margin-bottom: 10px;
}

.hk-product-grid-subtitle {
  color: var(--hk-muted, #9db3c9);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.hk-product-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hk-white);
  margin: 10px 0 8px;
  line-height: 1.3;
}

.hk-product-desc {
  color: var(--hk-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hk-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hk-product-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--hk-gold-soft);
}

.hk-cat-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* ── Lead magnet ─────────────────────────────────────────── */
.hk-lead-card {
  border-radius: var(--hk-radius);
  padding: 56px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,213,255,.20), transparent 34%),
    linear-gradient(145deg, #061526, #020811);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--hk-shadow);
  max-width: 760px;
  margin: auto;
  font-family: 'Inter', sans-serif;
}

/* ── Lead magnet popup ───────────────────────────────────── */
.hk-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,8,18,.80);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.hk-popup-overlay.hk-popup--visible {
  opacity: 1;
  visibility: visible;
}

.hk-popup-card {
  border-radius: var(--hk-radius);
  padding: 52px;
  background: linear-gradient(145deg, #071d34, #020811);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--hk-shadow);
  max-width: 580px;
  width: 100%;
  position: relative;
  font-family: 'Inter', sans-serif;
  transform: translateY(20px);
  transition: transform .35s;
}

.hk-popup-overlay.hk-popup--visible .hk-popup-card {
  transform: translateY(0);
}

.hk-popup-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--hk-white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background .2s;
}

.hk-popup-close:hover { background: rgba(255,255,255,.14); }

/* ── Order confirmation ──────────────────────────────────── */
.hk-confirmation-wrap {
  font-family: 'Inter', sans-serif;
  padding: 80px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(0,213,255,.18), transparent 30%),
    linear-gradient(135deg, #020812 0%, #061526 100%);
  min-height: calc(100vh - 84px);
}

.hk-confirmation-card {
  max-width: 720px;
  margin: auto;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--hk-radius);
  padding: 56px;
  box-shadow: var(--hk-shadow);
}

.hk-confirmation-check {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hk-teal), #00b8c4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
}

/* ── Admin ───────────────────────────────────────────────── */
.hk-admin-wrap { max-width: 960px; }

.hk-admin-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0 30px;
  border-bottom: 1px solid #dde0e3;
  margin-bottom: 30px;
}

.hk-admin-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: .02em;
  color: #061526;
}

.hk-admin-logo strong { color: #007f83; }

.hk-admin-logo-ring {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 40deg, #aeb23a, #007f83, #02314b, #aeb23a);
  position: relative;
}

.hk-admin-logo-ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: #061526;
  border-radius: 50%;
}

.hk-admin-card {
  background: #fff;
  border: 1px solid #dde0e3;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
}

.hk-admin-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #061526;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .hk-auth-grid   { grid-template-columns: 1fr; gap: 40px; }
  .hk-stats-row   { grid-template-columns: 1fr 1fr; }
  .hk-product-grid { --hk-cols: 2; }
  .hk-form-row    { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hk-auth-card    { padding: 34px; border-radius: 30px; }
  .hk-lead-card    { padding: 36px; }
  .hk-popup-card   { padding: 36px; }
  .hk-product-grid { --hk-cols: 1; }
  .hk-stats-row    { grid-template-columns: 1fr; }
  .hk-member-section { padding: 24px; }
  .hk-confirmation-card { padding: 34px; }
}

/* ============================================================
   Contenu du téléchargement [hypnokit_kit_contents]
   Grille des PDF inclus dans un kit, avec miniature de la 1ère page.
   ============================================================ */
.hk-kit-contents {
  padding: 60px 44px;
  background: var(--hk-cream);
  border-radius: var(--hk-radius-md);
}
.hk-kit-contents-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.04em;
  color: var(--hk-navy);
  margin: 0 0 10px;
}
.hk-kit-contents-subtitle {
  color: var(--hk-text);
  font-size: 1rem;
  margin: 0 0 34px;
}
.hk-kit-contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 26px;
}
.hk-kit-item { text-align: center; }
.hk-kit-item-thumb {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s;
}
.hk-kit-item:hover .hk-kit-item-thumb { transform: translateY(-4px); }
.hk-kit-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hk-kit-item-thumb-fallback { font-size: 2.2rem; opacity: .3; }
.hk-kit-item-title {
  font-weight: 700;
  font-size: .86rem;
  color: var(--hk-navy);
  margin-bottom: 4px;
}
.hk-kit-item-desc {
  font-size: .77rem;
  color: var(--hk-text);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 640px) {
  .hk-kit-contents { padding: 40px 22px; }
  .hk-kit-contents-grid { grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); gap: 16px; }
}


/* Validation TVA en temps réel — checkout entreprise */
.hk-vat-error{
  display:block;
  margin-top:8px;
  color:#ff8aa8;
  font-size:.82rem;
  line-height:1.45;
  font-weight:800;
}
.hk-input-invalid,
.woocommerce .input-text.hk-input-invalid,
.wc-block-components-text-input input.hk-input-invalid{
  border-color:#ff5c92 !important;
  box-shadow:0 0 0 4px rgba(255,92,146,.12) !important;
}
.hk-input-valid,
.woocommerce .input-text.hk-input-valid,
.wc-block-components-text-input input.hk-input-valid{
  border-color:rgba(0,213,255,.55) !important;
}
