/* ============================================================
   Korea Care – assets/css/theme.css
   Extraído do index.html + estilos adicionais do tema WP.
   ============================================================ */

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }

:root {
  /* ── New Brand Identity: Premium Black × Gold ── */
  --black:     #0D0D0D;
  --off-white: #F7F5F3;
  --gold:      #C9A46A;
  --bronze:    #9B6B43;
  --nude:      #D8B5A5;

  /* ── Legacy vars remapped to new palette ── */
  --pk:        #0D0D0D;    /* deep black  (was hot pink)   */
  --pk-dark:   #C9A46A;    /* champagne gold (hover state) */
  --pk-light:  #F0EBE6;    /* warm beige  (subtle bg)      */
  --pk-bg:     #F7F5F3;    /* off-white background         */
  --txt:       #0D0D0D;    /* primary text                 */
  --txt2:      #706B66;    /* secondary / muted text       */
  --border:    #E7E3DF;    /* warm gray borders            */
  --coral:     #C9A46A;    /* remapped → champagne gold    */
}

body { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--txt); background: var(--off-white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── BUTTONS ── */
.btn-pk {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pk); color: #fff;
  padding: 13px 26px; border-radius: 30px;
  font-size: 13px; font-weight: 700; border: none; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.btn-pk:hover { background: var(--pk-dark); color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--txt);
  padding: 13px 26px; border-radius: 30px;
  font-size: 13px; font-weight: 700;
  border: 2px solid var(--txt); cursor: pointer;
  white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.btn-outline:hover {
  background: var(--txt); color: #fff; border-color: var(--txt);
  transform: translateY(-1px);
}

.btn-outline-pk {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--pk);
  padding: 10px 22px; border-radius: 30px;
  font-size: 13px; font-weight: 700;
  border: 2px solid var(--pk); cursor: pointer;
  white-space: nowrap; transition: background .2s, color .2s;
}
.btn-outline-pk:hover { background: var(--pk); color: #fff; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--txt); color: #fff;
  padding: 12px 22px; border-radius: 30px;
  font-size: 13px; font-weight: 700; border: none; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.btn-dark:hover { background: #333; color: #fff; }

.btn-coral {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: #fff;
  padding: 13px 26px; border-radius: 30px;
  font-size: 13px; font-weight: 700; border: none; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.btn-coral:hover { background: #a84d3a; color: #fff; }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: linear-gradient(90deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 9px 20px;
  display: flex; justify-content: center; align-items: center;
  gap: 22px; flex-wrap: wrap;
}
.ann-bar .sep { opacity: .35; font-size: 16px; }

/* ── HEADER ── */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky; top: 0; z-index: 200;
}
.site-logo {
  font-size: 21px; font-weight: 900;
  letter-spacing: 3px; line-height: 1.05;
  color: var(--txt); text-decoration: none;
}
.site-logo img,
.site-logo .kc-logo-img { max-height: 140px; width: auto; display: block; }
.ft-logo-link { display: inline-block; margin-bottom: 16px; }
.ft-logo-img { max-height: 90px; width: auto; display: block; filter: brightness(0) invert(1); }
/* WP custom logo wrapper */
.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo .custom-logo-link img { max-height: 140px; width: auto; }

.kc-nav { display: flex; align-items: center; gap: 28px; }
.kc-nav a,
.kc-nav .menu-item a { font-size: 16px; font-weight: 500; color: var(--txt); }
.kc-nav a:hover,
.kc-nav .menu-item a:hover,
.kc-nav .current-menu-item > a { color: var(--pk); }
/* Hide WP default nav list markers */
.kc-nav ul { display: flex; gap: 28px; align-items: center; }
.kc-nav ul li { list-style: none; }

.hdr-right { display: flex; align-items: center; gap: 16px; }

/* Header icons (SVG based) */
.hdr-icon-btn {
  background: none; border: none; cursor: pointer;
  padding: 4px; position: relative; color: var(--txt);
  display: flex; align-items: center; justify-content: center;
}
.hdr-icon-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.hdr-icon-btn:hover { color: var(--pk); }

/* Register CTA in header (non-logged users) */
.hdr-register-cta {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 700; color: var(--txt);
  text-decoration: none; white-space: nowrap;
  transition: border-color .2s, color .2s, background .2s;
}
.hdr-register-cta:hover { border-color: var(--pk); color: var(--pk); background: var(--pk-light); }
.hdr-register-cta svg { stroke: currentColor; flex-shrink: 0; }
@media (max-width: 768px) { .hdr-register-label { display: none; } .hdr-register-cta { padding: 6px; border: none; } }

.kc-cart-wrap { position: relative; }
.kc-cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--pk); color: #fff;
  border-radius: 50%; width: 17px; height: 17px;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.kc-cart-count:empty,
.kc-cart-count[data-count="0"] { display: none; }

/* ── SEARCH OVERLAY ── */
.kc-search-overlay {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  background: #fff;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: block !important; /* sobrescreve o hidden nativo */
  pointer-events: none;
}
.kc-search-overlay.is-open {
  transform: translateY(0);
  pointer-events: all;
}

.kc-search-inner {
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
}

.kc-search-form {
  display: flex; align-items: center; gap: 0; flex: 1;
  background: var(--pk-bg,#fafafa); border: 2px solid var(--border);
  border-radius: 100px; overflow: hidden;
  transition: border-color .2s;
}
.kc-search-form:focus-within { border-color: var(--pk); }
.kc-search-form input[type="search"] {
  flex: 1; border: none; background: transparent;
  padding: 13px 20px; font-size: 15px; font-family: inherit;
  color: var(--txt); outline: none; min-width: 0;
  -webkit-appearance: none;
}
.kc-search-form input[type="search"]::placeholder { color: #aaa; }
.kc-search-form input[type="search"]::-webkit-search-cancel-button { display: none; }
.kc-search-form button[type="submit"] {
  flex-shrink: 0; background: var(--pk); border: none; cursor: pointer;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 0 100px 100px 0; color: #fff;
  transition: background .18s;
}
.kc-search-form button[type="submit"]:hover { background: var(--pk-dark,#b08a2e); }
.kc-search-form button[type="submit"] svg { stroke: #fff; }

.kc-search-close {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: #f3f4f6; border: none; cursor: pointer;
  color: #666;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.kc-search-close:hover { background: #fee2e2; color: #c00; }

@media (max-width: 768px) {
  .kc-search-overlay { padding: 12px 14px; }
  .kc-search-form input[type="search"] { padding: 11px 16px; font-size: 14px; }
  .kc-search-form button[type="submit"] { width: 44px; height: 44px; }
  .kc-search-close { width: 36px; height: 36px; }
}

/* ── MINI-CART DRAWER ── */
.kc-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.kc-overlay.active { opacity: 1; pointer-events: all; }

.kc-mini-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 95vw;
  background: #fff; z-index: 400;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,.15);
}
.kc-mini-cart-drawer.is-open { transform: translateX(0); }

.kc-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
}
.kc-drawer-head h4 { font-size: 17px; font-weight: 800; }
.kc-drawer-close {
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #888; transition: background .2s;
}
.kc-drawer-close:hover { background: #f5f5f5; color: var(--txt); }

.kc-mini-cart-inner { flex: 1; overflow-y: auto; padding: 16px 24px; }
.kc-mini-cart-inner:empty::after {
  content: 'Seu carrinho está vazio.';
  display: block; text-align: center;
  color: #aaa; font-size: 14px; padding: 40px 0;
}

/* Mini-cart items (override WC) */
.woocommerce-mini-cart { padding: 0; }
.woocommerce-mini-cart__empty-message { text-align: center; color: #aaa; padding: 30px 0; }
.woocommerce-mini-cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid #f5f5f5;
}
.woocommerce-mini-cart-item img {
  width: 70px; height: 70px; object-fit: cover;
  border-radius: 10px; flex-shrink: 0;
}
.kc-cart-item-info { flex: 1; }
.kc-cart-item-name { font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.kc-cart-item-price { font-size: 13px; color: #555; }
.kc-cart-item-qty {
  display: flex; align-items: center; gap: 8px;
  margin-top: 8px;
}
.kc-qty-btn {
  width: 26px; height: 26px; border: 1px solid #ddd;
  border-radius: 50%; background: #fff;
  cursor: pointer; font-size: 16px; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.kc-qty-btn:hover { background: var(--pk-light); border-color: var(--pk); }
.kc-qty-val { font-size: 13px; font-weight: 700; min-width: 20px; text-align: center; }
.kc-cart-remove {
  background: none; border: none; cursor: pointer;
  color: #ccc; font-size: 16px; padding: 4px;
  transition: color .2s; flex-shrink: 0;
}
.kc-cart-remove:hover { color: #e74c3c; }

.kc-drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.kc-drawer-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.kc-drawer-subtotal strong { font-size: 16px; font-weight: 800; }
.kc-drawer-subtotal .amount { font-size: 18px; font-weight: 900; color: var(--gold); }
.kc-drawer-btns { display: flex; flex-direction: column; gap: 10px; }
.kc-drawer-btns .btn-pk,
.kc-drawer-btns .btn-outline { width: 100%; justify-content: center; }

/* ── HERO CTA BUTTON (diagnóstico) ── */
.btn-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: #fff;
  padding: 15px 30px; border-radius: 50px;
  font-size: 14px; font-weight: 800; border: 2px solid var(--black); cursor: pointer;
  white-space: nowrap; text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(201,164,106,.40);
  transition: box-shadow .3s, transform .2s, color .2s;
}
.btn-hero-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,164,106,.22), transparent);
  animation: hero-btn-shimmer 2.2s ease-in-out infinite;
}
@keyframes hero-btn-shimmer {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}
.btn-hero-cta:hover {
  box-shadow: 0 8px 36px rgba(201,164,106,.65);
  color: #fff;
}
@media (hover: hover) {
  .btn-hero-cta:hover {
    transform: translateY(-2px);
  }
  .btn-hero-cta:hover svg { transform: translateX(3px); }
}
.btn-hero-cta svg { flex-shrink: 0; transition: transform .2s; }

/* ── SCORE CARD – CTA variant ── */
.score-card--cta {
  display: flex; flex-direction: column; gap: 0;
}

/* AI chip badge */
.sc-ai-chip {
  display: inline-flex; align-items: center; gap: 5px; align-self: flex-start;
  background: var(--black); color: var(--gold);
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.sc-ai-chip svg { flex-shrink: 0; }

.sc-cta-headline {
  font-size: 20px; font-weight: 900; line-height: 1.2;
  color: var(--black); margin-bottom: 18px;
}
.sc-cta-headline em {
  font-style: italic; color: var(--gold);
}

/* Mystery metric rows */
.sc-mystery-rows {
  display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 22px;
}
.sc-mystery-row {
  display: flex; align-items: center; gap: 10px;
}
.sc-m-name {
  font-size: 12px; color: #666; min-width: 76px;
}
.sc-m-bar-wrap {
  flex: 1; height: 6px;
  background: #f0f0f0; border-radius: 3px; overflow: hidden;
}
.sc-m-bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #E7E3DF, #C9A46A);
  filter: blur(2px);
  animation: sc-bar-pulse 1.8s ease-in-out infinite alternate;
}
@keyframes sc-bar-pulse {
  from { opacity: .55; }
  to   { opacity: 1; }
}
.sc-m-q {
  font-size: 12px; font-weight: 700; color: #bbb;
  min-width: 28px; text-align: right;
}

/* CTA button inside the card */
.sc-btn-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--black); color: #fff;
  padding: 14px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 800; text-decoration: none;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
}
.sc-btn-cta:hover {
  background: var(--gold); color: #fff;
  box-shadow: 0 5px 18px rgba(201,164,106,.45);
}
.sc-btn-cta svg { flex-shrink: 0; }

/* Footer note */
.sc-footer-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; color: #aaa; margin-top: 12px;
}

/* ── DIAGNÓSTICO PLACEHOLDER PAGE ── */
.kc-diag-placeholder {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
}
.kc-diag-ph-inner {
  text-align: center; padding: 60px 40px; max-width: 480px;
}
.kc-diag-ph-chip {
  display: inline-block;
  background: var(--black); color: var(--gold);
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 24px;
}
.kc-diag-ph-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--pk-light); color: var(--gold);
  margin-bottom: 24px;
}
.kc-diag-ph-inner h1 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.kc-diag-ph-inner p  { font-size: 15px; color: var(--txt2); line-height: 1.7; margin-bottom: 32px; }

/* ════════════════════════════════════════════════════════════════
   HERO SPLIT — Esquerda: imagem IA + fundadoras recortadas
                Direita: card branco com texto + ícones + CTAs
   ════════════════════════════════════════════════════════════════ */
.kc-hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 680px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* ── COLUNA ESQUERDA — foto + bg ── */
.kc-hs-photo-col {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: #1a1a1a;
}
.kc-hs-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.kc-hs-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.02);
}
.kc-hs-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.05) 40%, rgba(0,0,0,.30) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(0,0,0,.25) 0%, transparent 60%);
}
.kc-hs-bg-glow {
  position: absolute;
  left: 50%; bottom: -10%;
  transform: translateX(-50%);
  width: 90%; height: 70%;
  background: radial-gradient(ellipse, rgba(201,164,106,.30) 0%, rgba(201,164,106,.10) 40%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* Foto recortada das fundadoras — absolute no hero inteiro, centralizada na tela */
.kc-hs-founders {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: auto;
  max-width: 55%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.45));
  pointer-events: none;
}

/* Badge — ancorado à foto (relativo ao hero) */
.kc-hs-badge {
  position: absolute;
  bottom: 26px; left: 26px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,13,13,.82);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid rgba(201,164,106,.45);
  z-index: 3;
}
.kc-hs-badge svg { color: var(--gold); }

/* ── COLUNA DIREITA — card branco ── */
/* Coluna direita — gradiente do transparente para branco evita borda dura sobre a foto */
.kc-hs-text-col {
  position: relative;
  z-index: 3;
  background: transparent;
  display: flex; align-items: center;
  padding: 60px 64px;
}
.kc-hs-text-inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.kc-hs-kicker {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}
.kc-hs-h1 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 700; line-height: 1.08;
  color: var(--txt);
  margin: 0 0 14px;
  letter-spacing: -.5px;
}
.kc-hs-h1 .acc { color: var(--gold); font-style: italic; }

.kc-hs-handle {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: var(--bronze);
  text-decoration: none;
  margin-bottom: 22px;
  transition: color .2s;
}
.kc-hs-handle:hover { color: var(--gold); }

.kc-hs-sub {
  font-size: 15px; line-height: 1.7;
  color: #555;
  margin: 0 0 14px;
}
.kc-hs-sub--alt {
  color: #444;
  font-size: 14.5px;
  margin-bottom: 28px;
}

/* 4 ícones em grid 4 colunas */
.kc-hs-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 32px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kc-hs-trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
}
.kc-hs-trust-icon {
  width: 44px; height: 44px;
  background: var(--pk-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kc-hs-trust-icon svg { width: 18px; height: 18px; stroke: var(--bronze); }
.kc-hs-trust-text { display: flex; flex-direction: column; gap: 2px; }
.kc-hs-trust-text b {
  display: block; font-size: 11.5px; font-weight: 700;
  color: var(--txt); line-height: 1.3;
}
.kc-hs-trust-text small {
  font-size: 10.5px; color: #555; line-height: 1.3;
}

/* CTAs */
.kc-hs-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 4px;
}
.kc-hero-split .kc-hs-cta {
  background: var(--gold); border-color: var(--gold); color: #fff;
  box-shadow: 0 6px 24px rgba(201,164,106,.45);
}
.kc-hero-split .kc-hs-cta:hover {
  background: var(--bronze); border-color: var(--bronze); color: #fff;
  box-shadow: 0 10px 36px rgba(155,107,67,.55);
}
.kc-hero-split .kc-hs-outline {
  color: #fff;
  border-color: var(--gold);
  background: var(--gold);
  font-weight: 700;
  font-size: 1.05em;
  padding: 14px 32px;
  box-shadow: 0 4px 18px rgba(201,164,106,.38);
  transition: background .22s, border-color .22s, box-shadow .22s, transform .15s;
}
.kc-hero-split .kc-hs-outline:hover {
  background: var(--bronze); border-color: var(--bronze);
  box-shadow: 0 8px 28px rgba(155,107,67,.5);
  transform: translateY(-2px);
}

/* ── Mobile ── */
/* Versão inline da foto — escondida no desktop, só aparece no mobile */
.kc-hs-founders--inline { display: none; }

@media (max-width: 980px) {
  .kc-hero-split { grid-template-columns: 1fr; }

  /* Coluna de fundo: vira um bloco normal com foto empilhada */
  .kc-hs-photo-col {
    position: relative;
    min-height: 280px;
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    order: -1;
  }
  .kc-hs-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
  /* Foto absoluta do desktop: some no mobile */
  .kc-hs-founders { display: none; }

  /* Foto inline no mobile: aparece em fluxo normal na base da coluna */
  .kc-hs-founders--inline {
    display: block;
    position: relative; z-index: 2;
    width: auto;
    max-width: 80%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
    margin: 0 auto;
  }

  .kc-hs-text-col { padding: 36px 20px 48px; }
  .kc-hs-h1 { font-size: clamp(28px, 7vw, 40px); }
  .kc-hs-trust { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .kc-hs-btns .btn-hero-cta,
  .kc-hs-btns .btn-outline { width: 100%; justify-content: center; }
}

/* ── HERO FOUNDERS (legacy) ── */
.hero--founders {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 660px;
  background: #0D0D0D;
  overflow: hidden;
}
/* Coluna da foto */
.hero-founders-photo-col {
  position: relative;
  overflow: hidden;
}
.hero-founders-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
/* Badge flutuante sobre a foto */
.hero-founders-badge {
  position: absolute; bottom: 28px; left: 28px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(13,13,13,.80); backdrop-filter: blur(10px);
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
}
.hero-founders-badge svg { color: var(--gold); }
/* Coluna de texto */
.hero-founders-text-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 64px 64px 52px;
  background: #0D0D0D;
}
.hero-founders-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.hero-founders-label-line {
  display: inline-block; width: 32px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}
.hero-founders-h1 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(34px, 3.8vw, 62px);
  font-weight: 700; line-height: 1.08;
  color: #fff; margin: 0 0 20px;
}
.hero-founders-sub {
  font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.75;
  margin: 0 0 34px; max-width: 440px;
}
.hero-founders-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}
/* Buttons override – fundo escuro do hero */
.hero--founders .btn-hero-cta {
  background: var(--gold); border-color: var(--gold); color: #fff;
  box-shadow: 0 4px 28px rgba(201,164,106,.50);
}
.hero--founders .btn-hero-cta:hover {
  background: var(--bronze); border-color: var(--bronze); color: #fff;
  box-shadow: 0 8px 40px rgba(201,164,106,.70);
}
.hero--founders .btn-outline {
  color: #fff; border-color: rgba(255,255,255,.35); background: transparent;
}
.hero--founders .btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
}
/* Trust badges */
.hero-founders-trust {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.hft-item { display: flex; align-items: center; gap: 10px; }
.hft-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,.07); border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
}
.hft-icon svg { width: 15px; height: 15px; stroke: var(--gold); }
.hft-item b { display: block; font-size: 12px; font-weight: 600; color: #fff; }
.hft-item small { font-size: 11px; color: rgba(255,255,255,.48); }

.hero {
  display: flex; align-items: center;
  padding: 54px 60px 54px 80px; gap: 40px;
  background: #fff;
}
.hero-left { flex: 1; max-width: 520px; }
.hero-tag {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 3.5px; color: var(--pk);
  font-weight: 600; margin-bottom: 18px;
}
.hero h1 { font-size: 50px; font-weight: 900; line-height: 1.08; color: var(--txt); }
.hero h1 .acc { color: var(--pk); font-style: italic; }
.hero-sub { font-size: 15.5px; color: #666; line-height: 1.68; margin: 22px 0 32px; }
.hero-btns { display: flex; gap: 14px; margin-bottom: 38px; flex-wrap: wrap; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.ti { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #555; }
.ti-icon {
  width: 34px; height: 34px; background: var(--pk-light);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ti-icon svg { width: 16px; height: 16px; stroke: var(--pk); fill: none; stroke-width: 2; }
.ti b { display: block; font-size: 12px; font-weight: 600; color: var(--txt); }
.ti small { font-size: 11px; color: #888; }

.hero-right { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.hero-photo { width: 400px; height: 520px; object-fit: cover; border-radius: 22px; background: var(--pk-light); }
/* Hero model image (direct <img> from template) */
.hero-right > img {
  width: 420px; max-width: 100%; height: 560px; object-fit: cover; object-position: top center;
  border-radius: 24px; display: block;
}
.score-card {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  background: #fff; border-radius: 20px;
  padding: 22px 22px 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,.16);
  width: 260px;
  max-width: calc(100% - 16px);
}
.sc-label { font-size: 10px; color: #aaa; font-weight: 500; }
.sc-title { font-size: 12px; font-weight: 700; margin-top: 2px; }
.sc-score { font-size: 48px; font-weight: 900; line-height: 1; margin: 6px 0 12px; }
.sc-score sup { font-size: 14px; font-weight: 400; color: #bbb; }
.mrow { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; font-size: 11px; }
.mname { min-width: 72px; color: #444; }
.mbar { flex: 1; height: 4px; background: #f0f0f0; border-radius: 2px; overflow: hidden; }
.mfill { height: 100%; border-radius: 2px; }
.mval { min-width: 32px; text-align: right; color: #666; font-weight: 600; }
.sc-btn {
  display: block; text-align: center;
  background: var(--pk); color: #fff;
  border-radius: 20px; padding: 9px;
  font-size: 11px; font-weight: 700; margin-top: 12px;
  transition: background .2s;
}
.sc-btn:hover { background: var(--pk-dark); }

/* ── PAIN POINTS ── */
.pain-section { display: flex; align-items: center; padding: 70px 80px; gap: 60px; background: #fff; }
.pain-left { flex: 1.2; }
.pain-left h2 { font-size: 27px; font-weight: 800; margin-bottom: 22px; }
.pitem { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; font-size: 14.5px; color: #444; }
.pchk {
  width: 22px; height: 22px; background: var(--pk); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pchk svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 2.5; fill: none; }
.pain-center { flex-shrink: 0; text-align: center; width: 170px; }
.pain-slogan { font-size: 19px; font-weight: 800; color: var(--pk); line-height: 1.3; margin-bottom: 18px; }
.pain-arrow {
  width: 58px; height: 58px; background: var(--pk-light);
  border-radius: 50%; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--pk);
}
.pain-right { flex: 1.2; }
.pain-right h2 { font-size: 25px; font-weight: 800; line-height: 1.35; margin-bottom: 16px; }
.pain-right p { font-size: 14.5px; color: #555; margin-bottom: 22px; line-height: 1.65; }
.pain-img {
  margin-top: 22px; background: var(--pk-light);
  border-radius: 14px; height: 110px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pain-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }

/* ── HOW IT WORKS ── */
.how-section { display: flex; align-items: flex-start; padding: 70px 80px; gap: 60px; background: #fafafa; }
.how-left { flex: 1; }
.how-left h2 { font-size: 31px; font-weight: 800; margin-bottom: 30px; }
.steps-row { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 34px; }
.step { display: flex; flex-direction: column; align-items: center; flex: 1; text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: '→'; position: absolute; right: -6px; top: 10px;
  font-size: 14px; color: var(--pk);
}
.step-num {
  width: 36px; height: 36px; background: var(--pk); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; margin-bottom: 9px;
}
.step-txt { font-size: 11px; color: #555; line-height: 1.55; }
.phone-wrap {
  width: 280px; height: 420px; margin: 0 auto;
  background: var(--pk); border-radius: 36px;
  padding: 10px; box-shadow: 0 16px 50px rgba(0,0,0,.30);
}
.phone-inner {
  background: #fff; border-radius: 28px; width: 100%; height: 100%;
  padding: 16px; display: flex; flex-direction: column; gap: 9px; overflow: hidden;
}
.ph-header { background: var(--pk-light); border-radius: 9px; padding: 8px 12px; font-size: 11px; color: var(--pk); font-weight: 600; }
.ph-progress-track { height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
.ph-progress-fill { height: 100%; border-radius: 3px; background: var(--pk); width: 80%; }
.ph-list { display: flex; flex-direction: column; gap: 7px; }
.ph-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #444; }
.ph-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.ph-pct {
  background: linear-gradient(90deg, #0D0D0D, #C9A46A);
  border-radius: 10px; text-align: center;
  padding: 8px; color: #fff; font-size: 15px; font-weight: 800;
}
.how-right { flex: 1; padding-top: 8px; }
.how-right h2 { font-size: 35px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; }
.how-features { margin-bottom: 30px; }
.hfeat { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14.5px; color: #333; }
.chk-circle {
  width: 22px; height: 22px; background: var(--pk); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; flex-shrink: 0;
}

/* ── DIAG 4 STEPS ── */
.diag4-section { display: flex; align-items: center; gap: 60px; padding: 70px 80px; background: var(--pk-light); }
.diag4-left { flex: 0 0 320px; }
.diag4-label { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--bronze); font-weight: 600; margin-bottom: 14px; }
.diag4-left h2 { font-size: 36px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; color: var(--txt); }
.diag4-left p { font-size: 14.5px; color: var(--txt2); line-height: 1.68; margin-bottom: 26px; }
.diag4-mini { display: block; font-size: 12px; color: var(--txt2); margin-top: 10px; }
.diag4-right { flex: 1; display: flex; gap: 12px; align-items: flex-end; }
.mini-phone { flex: 1; background: #1a1a1a; border-radius: 18px; padding: 8px; min-width: 0; box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.mini-phone-inner { background: #fff; border-radius: 12px; padding: 10px; min-height: 200px; display: flex; flex-direction: column; gap: 6px; }
.mp-num { width: 24px; height: 24px; background: var(--pk); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; margin-bottom: 4px; }
.mp-title { font-size: 9px; font-weight: 700; color: #222; line-height: 1.3; margin-bottom: 6px; }
.mp-line { height: 5px; background: #f0f0f0; border-radius: 3px; margin-bottom: 4px; }
.mp-line.short { width: 60%; }
.mp-line.med { width: 80%; }
.mp-line.full { width: 100%; }
.mp-score-big { font-size: 28px; font-weight: 900; color: var(--txt); text-align: center; margin: auto 0; }
.mp-score-sub { font-size: 8px; color: #aaa; text-align: center; }
.mp-progress { background: #f0f0f0; border-radius: 3px; height: 5px; overflow: hidden; margin: 4px 0; }
.mp-progress-fill { height: 100%; background: var(--pk); border-radius: 3px; }
.mp-tag { font-size: 8px; color: #aaa; }
.mp-pct { font-size: 18px; font-weight: 800; color: var(--txt); text-align: center; }
.mp-check { font-size: 8px; color: #555; display: flex; align-items: center; gap: 4px; }
.mp-check::before { content: '✓'; color: var(--pk); font-weight: 800; }

/* ── SCORE SECTION ── */
.score-section { padding: 70px 80px; background: #fff; }
.score-inner { display: flex; align-items: center; gap: 60px; }
.score-left { flex: 1.2; }
.score-left h2 { font-size: 33px; font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.score-left p { font-size: 14.5px; color: #666; line-height: 1.65; margin-bottom: 28px; }
.score-circles { flex: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.sc-item { text-align: center; }
.sc-svg { width: 100px; height: 100px; }
.c-bg { fill: none; stroke: #F0F0F0; stroke-width: 8; }
.c-fill { fill: none; stroke-width: 8; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50px 50px; }
.c-val { font-size: 22px; font-weight: 800; fill: var(--txt); dominant-baseline: central; text-anchor: middle; }
.c-out { font-size: 10px; fill: #bbb; dominant-baseline: central; text-anchor: middle; }
.sc-lbl { font-size: 13px; color: #555; margin-top: 7px; font-weight: 500; }

/* ── WHY KOREAN (split layout) ── */
.wk-section { padding: 80px 80px; background: var(--pk-light); }
.wk-inner { max-width: 1200px; margin: 0 auto; }
.wk-split { display: flex; gap: 60px; align-items: flex-start; }
.wk-split-left { flex: 0 0 420px; }
.wk-split-right { flex: 1; }
.wk-label { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--bronze); font-weight: 700; margin-bottom: 14px; }
.wk-split-left h2 { font-size: 32px; font-weight: 900; line-height: 1.2; margin-bottom: 16px; color: var(--txt); }
.wk-split-left > p { font-size: 14.5px; color: var(--txt2); line-height: 1.7; margin-bottom: 24px; }
.wk-check-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; }
.wk-check-list li { font-size: 13.5px; color: var(--txt); padding-left: 26px; position: relative; line-height: 1.5; }
.wk-check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.wk-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.wk-cards-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wk-card { background: #fff; border-radius: 16px; padding: 22px 18px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .2s, transform .2s; }
.wk-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.wk-icon { width: 46px; height: 46px; background: var(--pk-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.wk-card h3 { font-size: 14px; font-weight: 800; color: var(--txt); line-height: 1.25; }
.wk-card p { font-size: 13px; color: var(--txt2); line-height: 1.6; }

/* ── BRAND HIGHLIGHTS ── */
.bh-section { padding: 70px 80px; background: #fff; }
.bh-inner { max-width: 1200px; margin: 0 auto; }
.bh-header { text-align: center; margin-bottom: 48px; }
.bh-label { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--bronze); font-weight: 700; margin-bottom: 12px; }
.bh-header h2 { font-size: 34px; font-weight: 900; line-height: 1.15; margin-bottom: 14px; color: var(--txt); }
.bh-header p { font-size: 14.5px; color: var(--txt2); line-height: 1.65; max-width: 540px; margin: 0 auto; }
.bh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.bh-card { border-radius: 18px; padding: 26px 22px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; border: 1.5px solid var(--border); transition: box-shadow .2s, transform .2s; background: #fff; }
.bh-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.bh-badge { display: inline-block; font-size: 13px; font-weight: 900; letter-spacing: 1.5px; padding: 8px 16px; border-radius: 10px; align-self: flex-start; }
.bh-desc { font-size: 13px; color: var(--txt2); line-height: 1.6; flex: 1; }
.bh-link { font-size: 12px; font-weight: 700; color: var(--gold); }
.bh-cta { text-align: center; }

/* ── ROUTINE PRODUCTS ── */
.rp-section { padding: 70px 80px; background: var(--pk-bg); }
.rp-inner { max-width: 1200px; margin: 0 auto; }
.rp-header { text-align: center; margin-bottom: 36px; }
.rp-label { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--bronze); font-weight: 700; margin-bottom: 12px; }
.rp-header h2 { font-size: 34px; font-weight: 900; line-height: 1.15; margin-bottom: 14px; color: var(--txt); }
.rp-header p { font-size: 14.5px; color: var(--txt2); line-height: 1.65; max-width: 500px; margin: 0 auto; }
.rp-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; background: #fff; border-radius: 14px; padding: 6px; max-width: 380px; margin-left: auto; margin-right: auto; border: 1.5px solid var(--border); }
.rp-tab { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 18px; border: none; background: transparent; border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--txt2); cursor: pointer; transition: background .2s, color .2s; }
.rp-tab--active { background: var(--txt); color: #fff; }
.rp-tab:not(.rp-tab--active):hover { background: var(--pk-light); color: var(--txt); }
.rp-panel { display: none; }
.rp-panel--active { display: block; }
.rp-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 28px; }
.rp-card { background: #fff; border-radius: 14px; padding: 12px; display: flex; flex-direction: column; border: 1.5px solid var(--border); transition: box-shadow .2s; }
.rp-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.08); }
.rp-img { width: 100%; aspect-ratio: 1; background: var(--pk-light); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.rp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.rp-card:hover .rp-img img { transform: scale(1.04); }
.rp-cat { font-size: 10px; color: var(--txt2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.rp-name { font-size: 12px; font-weight: 600; color: var(--txt); line-height: 1.35; text-decoration: none; flex: 1; margin-bottom: 10px; }
.rp-name:hover { color: var(--gold); }
.rp-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.rp-price { font-size: 13px; font-weight: 800; color: var(--txt); }
.rp-price .woocommerce-Price-amount { font-weight: 800; }
.rp-add { width: 28px; height: 28px; background: var(--txt); color: #fff; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; flex-shrink: 0; transition: background .2s, transform .15s; }
.rp-add:hover { background: var(--gold); transform: scale(1.1); }
.rp-add.loading { opacity: .6; pointer-events: none; }
.rp-view-all { text-align: center; }

/* ── BEST SELLERS ── */
.bs-section { padding: 70px 80px; background: #fff; }
.bs-inner { display: flex; align-items: flex-start; gap: 50px; }
.bs-left { flex: 0 0 230px; }
.bs-label { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--coral); font-weight: 700; margin-bottom: 12px; }
.bs-left h2 { font-size: 34px; font-weight: 900; line-height: 1.15; margin-bottom: 28px; color: var(--txt); }
.bs-right { flex: 1; display: flex; gap: 13px; overflow: hidden; }
.bs-card {
  flex: 1; min-width: 0; position: relative;
  border: 1px solid #EBEBEB; border-radius: 14px; padding: 12px;
  display: flex; flex-direction: column; transition: box-shadow .2s;
}
.bs-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.bs-card-link { text-decoration: none; }
.bs-img { width: 100%; height: 170px; background: #F5F0EB; border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.bs-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.bs-card:hover .bs-img img { transform: scale(1.04); }
.bs-brand { font-size: 10px; color: #999; font-weight: 600; text-transform: uppercase; margin-bottom: 3px; }
.bs-name { font-size: 12px; font-weight: 600; color: #222; line-height: 1.35; margin-bottom: 8px; flex: 1; text-decoration: none; }
.bs-name:hover { color: var(--pk); }
.bs-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.bs-price { font-size: 14px; font-weight: 800; color: var(--txt); }
.bs-price .woocommerce-Price-amount { font-weight: 800; }
.bs-plus {
  width: 28px; height: 28px; background: var(--txt); color: #fff;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.bs-plus:hover { background: var(--pk); transform: scale(1.1); }
.bs-plus.loading { opacity: .6; pointer-events: none; }

/* ── KITS PERSONALIZADOS ── */
.kitsrot-section { padding: 70px 80px; background: var(--pk-light); }
.kitsrot-inner { display: flex; gap: 50px; align-items: center; }
.kitsrot-left { flex: 0 0 260px; }
.kitsrot-label { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--bronze); font-weight: 700; margin-bottom: 12px; }
.kitsrot-left h2 { font-size: 34px; font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.kitsrot-feat { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.kf { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #555; }
.kf-dot { width: 20px; height: 20px; background: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 11px; }
.kitsrot-right { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.krot-card { background: #fff; border-radius: 16px; padding: 16px; display: flex; flex-direction: column; position: relative; transition: box-shadow .2s; }
.krot-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.krot-badge { display: inline-block; background: var(--coral); color: #fff; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 3px 8px; border-radius: 8px; margin-bottom: 10px; align-self: flex-start; }
.krot-img { width: 100%; height: 120px; background: #F5EDE8; border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.krot-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.krot-card:hover .krot-img img { transform: scale(1.04); }
.krot-name { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.krot-desc { font-size: 11px; color: #888; line-height: 1.45; margin-bottom: 10px; flex: 1; }
.krot-foot { display: flex; align-items: center; justify-content: space-between; }
.krot-from { font-size: 9px; color: #aaa; text-transform: uppercase; }
.krot-price { font-size: 14px; font-weight: 800; color: var(--txt); }
.krot-arrow { width: 28px; height: 28px; background: var(--txt); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; text-decoration: none; transition: background .2s; }
.krot-arrow:hover { background: var(--pk); }

/* ── KITS GRID ── */
.kits-section { padding: 70px 80px; background: var(--pk-bg); }
.kits-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.kits-hdr h2 { font-size: 31px; font-weight: 800; line-height: 1.25; }
.kits-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 15px; }
.kit-card { background: #fff; border-radius: 16px; padding: 16px; text-align: center; transition: box-shadow .2s; }
.kit-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.kit-badge { display: inline-block; background: var(--pk); color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 8px; border-radius: 10px; margin-bottom: 10px; }
.kit-img { width: 100%; height: 140px; background: var(--pk-light); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.kit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.kit-card:hover .kit-img img { transform: scale(1.04); }
.kit-name { font-size: 13px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.kit-from { font-size: 10px; color: #999; margin-bottom: 3px; text-transform: uppercase; }
.kit-price { font-size: 15px; font-weight: 800; color: var(--gold); }

/* ── TIKTOK PRODUCTS ── */
.tt-section { padding: 70px 80px; background: #fff; }
.tt-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.tt-hdr h2 { font-size: 31px; font-weight: 800; line-height: 1.25; }
.tt-hdr a { color: var(--pk); font-size: 14px; font-weight: 600; }
.tt-hdr a:hover { text-decoration: underline; }
.tt-carousel-wrap { display: flex; align-items: center; gap: 14px; }
.products-row { display: flex; gap: 14px; overflow: hidden; flex: 1; }
.prod-card { background: #fff; border: 1.5px solid #F0F0F0; border-radius: 16px; padding: 14px; flex: 1; min-width: 0; position: relative; transition: box-shadow .2s; }
.prod-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.prod-badge { position: absolute; top: 12px; left: 12px; z-index: 1; background: var(--pk); color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; padding: 3px 8px; border-radius: 8px; }
.prod-badge.viral { background: #FF6B35; }
.prod-img { width: 100%; height: 155px; background: var(--pk-light); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-brand { font-size: 10px; color: #999; font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.prod-name { font-size: 13px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: var(--txt); text-decoration: none; display: block; }
.prod-name:hover { color: var(--pk); }
.prod-price { font-size: 14px; font-weight: 800; color: var(--txt); }
.carousel-btn { width: 40px; height: 40px; border: 2px solid #ddd; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; flex-shrink: 0; align-self: center; transition: border-color .2s; }
.carousel-btn:hover { border-color: var(--pk); color: var(--pk); }

/* ── PROMOTIONS SECTION ── */
.promo-section { padding: 70px 80px; background: #FFF8F5; }
.promo-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 34px; }
.promo-hdr h2 { font-size: 31px; font-weight: 800; line-height: 1.25; margin: 0; }
.promo-hdr a { color: var(--pk); font-size: 14px; font-weight: 600; }
.promo-hdr a:hover { text-decoration: underline; }
.promo-tag { display: inline-block; background: #E53935; color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; }
.promo-section .prod-badge { background: #E53935; font-size: 10px; padding: 4px 10px; }
.promo-section .prod-price del { color: #aaa; font-size: 11px; font-weight: 500; text-decoration: line-through; }
.promo-section .prod-price ins { text-decoration: none; color: #E53935; font-weight: 800; }
.kc-nav-promo { color: #E53935 !important; font-weight: 700 !important; }

/* ── TESTIMONIALS ── */
/* ── (old testi / how CSS kept for safety — now replaced by kc-wall + kc-ttv) ── */
.testi-section { display: none; }
.how-section   { display: none; }


/* ── WALL OF LOVE (WhatsApp prints) ── */
.kc-wall-section {
  padding: 70px 60px 80px;
  background: var(--pk-bg);
  overflow: hidden;
}
.kc-wall-header {
  text-align: center;
  margin-bottom: 60px;
}
.kc-wall-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 7px 18px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 18px;
}
.kc-wall-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(26px, 3vw, 42px); font-weight: 700;
  color: var(--txt); margin: 0 0 12px;
}
.kc-wall-sub {
  font-size: 16px; color: var(--txt2); margin: 0;
}
.kc-wall-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
  padding: 30px 20px 60px;
  flex-wrap: wrap;
}
.kc-wall-card {
  flex: 0 0 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.20);
  transform: rotate(var(--rot, 0deg)) translateY(var(--ty, 0px));
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  cursor: default;
  position: relative;
  background: #fff;
}
.kc-wall-card:hover {
  transform: rotate(0deg) translateY(-18px) scale(1.06) !important;
  box-shadow: 0 24px 56px rgba(0,0,0,.28);
  z-index: 10;
}
.kc-wall-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── TIKTOK VIDEO SECTION ── */
.kc-ttv-section {
  background: #0D0D0D;
  padding: 70px 80px;
}
.kc-ttv-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.kc-ttv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: #fff;
  padding: 7px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 24px;
}
.kc-ttv-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(26px, 3vw, 42px); font-weight: 700;
  color: #fff; margin: 0 0 18px; line-height: 1.2;
}
.kc-ttv-sub {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.72);
  margin: 0 0 28px;
}
.kc-ttv-perks {
  list-style: none; margin: 0 0 36px; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.kc-ttv-perks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,.85);
}
.kc-ttv-perks svg { flex-shrink: 0; color: #C9A46A; }
.kc-ttv-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #0D0D0D;
  padding: 14px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .2s;
}
.kc-ttv-btn:hover { background: #C9A46A; color: #fff; }
@media (hover: hover) { .kc-ttv-btn:hover { transform: translateY(-2px); } }
/* Phone mockup */
.kc-ttv-phone-wrap {
  display: flex; justify-content: center;
}
.kc-ttv-phone {
  position: relative;
  width: 360px;
  aspect-ratio: 9/19.5;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,.6), inset 0 0 0 2px rgba(255,255,255,.08);
  overflow: hidden;
}
.kc-ttv-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 10px; background: #000;
  border-radius: 10px; z-index: 10;
}
.kc-ttv-video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.kc-ttv-floating-badge {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
  z-index: 5;
}

/* ════════════════════════════════════════════════════════════════
   IA VIDEO — Passo a passo esquerda + celular com vídeo direita
   ════════════════════════════════════════════════════════════════ */
.kc-ia-video {
  background: #F7F5F3;
  padding: 90px 80px;
}
.kc-ia-video-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* Esquerda — texto */
.kc-iav-kicker {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}
.kc-iav-h2 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700; line-height: 1.12;
  color: var(--txt);
  margin: 0 0 18px;
}
.kc-iav-sub {
  font-size: 15px; line-height: 1.7;
  color: #666; margin: 0 0 36px;
  max-width: 460px;
}
/* Steps */
.kc-iav-steps {
  list-style: none; margin: 0 0 36px; padding: 0;
  display: flex; flex-direction: column; gap: 24px;
}
.kc-iav-step {
  display: flex; align-items: flex-start; gap: 20px;
}
.kc-iav-step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--txt); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; letter-spacing: .5px;
}
.kc-iav-step div { display: flex; flex-direction: column; gap: 4px; padding-top: 10px; }
.kc-iav-step b { font-size: 15px; font-weight: 700; color: var(--txt); }
.kc-iav-step span { font-size: 13.5px; color: #444; line-height: 1.55; }
.kc-iav-btn { align-self: flex-start; }
.kc-iav-micro {
  margin-top: 12px; font-size: 12px; color: #555;
}

/* Direita — phone mockup (mesmo estilo do TikTok) */
.kc-iav-phone-wrap {
  display: flex; justify-content: center;
}
.kc-iav-phone {
  position: relative;
  width: 320px;
  aspect-ratio: 9/19.5;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,.30), inset 0 0 0 2px rgba(255,255,255,.08);
  overflow: hidden;
}
.kc-iav-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 10px;
  background: #000; border-radius: 10px; z-index: 10;
}
.kc-iav-video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

/* Mobile */
@media (max-width: 900px) {
  .kc-ia-video { padding: 60px 24px; }
  .kc-ia-video-inner { grid-template-columns: 1fr; gap: 48px; }
  .kc-iav-phone { width: 260px; }
  .kc-iav-phone-wrap { order: -1; }
}

/* ── BRAND LOGOS ── */
.brands-section { padding: 44px 80px; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; background: #fff; }
.brands-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.brand-logo { font-size: 17px; font-weight: 800; color: #aaa; letter-spacing: 1px; }

/* ── WHY KOREA CARE ── */
.why-section { padding: 70px 80px; background: #fafafa; }
.why-section h2 { font-size: 31px; font-weight: 800; text-align: center; margin-bottom: 46px; }
.why-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.why-item { text-align: center; }
.why-icon { width: 68px; height: 68px; background: var(--pk-light); border-radius: 50%; margin: 0 auto 13px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 28px; height: 28px; stroke: var(--pk); fill: none; stroke-width: 1.8; }
.why-item h4 { font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--txt); }

/* ── REGISTER CTA (non-logged banner) ── */
.kc-register-cta {
  background: linear-gradient(135deg, var(--pk-light,#fdf4e7) 0%, #fff7ec 100%);
  border-top: 2px solid var(--pk); border-bottom: 2px solid var(--pk);
  padding: 18px 40px;
}
.kc-register-cta__inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.kc-register-cta__icon { flex-shrink: 0; }
.kc-register-cta__text {
  flex: 1 1 200px; display: flex; flex-direction: column; gap: 2px;
}
.kc-register-cta__text strong { font-size: 15px; font-weight: 800; color: var(--txt); }
.kc-register-cta__text span { font-size: 13px; color: var(--txt-light,#666); }
.kc-register-cta__text code {
  background: var(--pk); color: #fff; padding: 1px 6px; border-radius: 4px;
  font-family: monospace; font-size: 12px; letter-spacing: .5px;
}
.kc-register-cta__btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pk); color: #fff;
  padding: 10px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 800; text-decoration: none;
  white-space: nowrap; transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.kc-register-cta__btn:hover { background: var(--pk-dark,#b08a2e); transform: translateY(-1px); }
@media (max-width: 600px) {
  .kc-register-cta { padding: 16px 20px; }
  .kc-register-cta__inner { gap: 14px; }
  .kc-register-cta__btn { width: 100%; justify-content: center; }
}

/* ── BOTTOM CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
  padding: 60px 80px; display: flex; align-items: center; gap: 60px; overflow: hidden;
}
.cta-left { flex: 1.2; }
.cta-left h2 { font-size: 42px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.cta-left p { font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.65; margin-bottom: 28px; }
.cta-mini { display: block; color: rgba(255,255,255,.80); font-size: 12px; margin-top: 12px; }
.cta-right { flex: 0.8; display: flex; justify-content: flex-end; }
.cta-img { width: 300px; height: 360px; border-radius: 20px; overflow: hidden; background: rgba(255,255,255,.08); }
.cta-img img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }

/* ── FOOTER ── */
.site-footer { background: #111; color: #ddd; padding: 58px 80px 28px; }
.ft-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.ft-logo { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: 3px; margin-bottom: 12px; line-height: 1.05; text-decoration: none; display: inline-block; }
.ft-logo:hover { color: var(--gold); }
.ft-brand-txt { font-size: 12px; color: #777; line-height: 1.65; margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; }
.soc { width: 35px; height: 35px; background: #222; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #aaa; transition: background .2s, color .2s; text-decoration: none; }
.soc:hover { background: var(--gold); color: #fff; }
.soc svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.ft-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 10px; }
.ft-col ul li a { font-size: 13px; color: #777; transition: color .2s; }
.ft-col ul li a:hover { color: #fff; }
.ft-col p { font-size: 13px; color: #777; line-height: 1.65; margin-bottom: 8px; }
.nl-form { display: flex; margin-top: 14px; }
.nl-input { flex: 1; padding: 10px 14px; background: #1e1e1e; border: 1px solid #333; border-right: none; border-radius: 20px 0 0 20px; color: #fff; font-size: 13px; outline: none; }
.nl-input::placeholder { color: #555; }
.nl-input:focus { border-color: var(--pk); }
.nl-btn { background: var(--pk); color: #fff; padding: 10px 16px; border: none; border-radius: 0 20px 20px 0; cursor: pointer; font-size: 17px; transition: background .2s; }
.nl-btn:hover { background: var(--pk-dark); }
.ft-bottom { border-top: 1px solid #222; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.ft-bottom p { font-size: 12px; color: #555; }

.kc-signup-popup {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(13,13,13,.58);
}
.kc-signup-popup[hidden] { display: none; }
.kc-signup-popup__panel {
  width: min(420px, 100%);
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.kc-signup-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #f4f1ee;
  color: var(--txt);
  font-size: 20px;
  cursor: pointer;
}
.kc-signup-popup__eyebrow {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--pk-light);
  color: var(--bronze);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.kc-signup-popup h2 { font-size: 24px; font-weight: 900; margin: 0 0 10px; color: var(--txt); }
.kc-signup-popup p { font-size: 14px; color: #666; line-height: 1.55; margin: 0 0 18px; }
.kc-signup-popup__form { display: flex; gap: 8px; }
.kc-signup-popup__form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0 13px;
  font: inherit;
  outline: none;
}
.kc-signup-popup__form input:focus { border-color: var(--txt); }
.kc-signup-popup__form button {
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--txt);
  color: #fff;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.kc-signup-popup__success {
  padding: 16px;
  border: 1.5px dashed var(--gold);
  border-radius: 14px;
  background: #fff8e8;
  text-align: center;
}
.kc-signup-popup__success span { display: block; font-size: 12px; color: #665b4d; margin-bottom: 4px; }
.kc-signup-popup__success strong { display: block; font-size: 28px; color: var(--bronze); letter-spacing: 1px; }
.kc-signup-popup__success small { color: #665b4d; }
body.kc-signup-open { overflow: hidden; }

/* ── WP PAGE ── */
.kc-main { min-height: 60vh; }
.kc-page-content { max-width: 860px; margin: 60px auto; padding: 0 40px; }
.kc-page-content h1 { font-size: 36px; font-weight: 900; margin-bottom: 24px; }
.kc-page-content p { font-size: 15px; line-height: 1.75; color: #444; margin-bottom: 18px; }

/* ── BREADCRUMB ── */
.kc-breadcrumb { padding: 14px 80px; font-size: 12px; color: #aaa; }
.kc-breadcrumb ol { display: flex; gap: 4px; flex-wrap: wrap; list-style: none; }
.kc-breadcrumb li { display: flex; align-items: center; gap: 4px; }
.kc-breadcrumb a { color: #888; }
.kc-breadcrumb a:hover { color: var(--pk); }
.kc-breadcrumb .sep { opacity: .5; }

/* ── 404 ── */
.kc-404 { text-align: center; padding: 100px 40px; }
.kc-404 h1 { font-size: 120px; font-weight: 900; color: var(--gold); line-height: 1; }
.kc-404 h2 { font-size: 28px; font-weight: 800; margin: 16px 0 12px; }
.kc-404 p { font-size: 16px; color: #666; margin-bottom: 28px; }

/* ── ARCHIVE/SHOP header ── */
.kc-shop-header { padding: 40px 80px 0; }
.kc-shop-header h1 { font-size: 38px; font-weight: 900; margin-bottom: 8px; }
.kc-shop-header p { font-size: 15px; color: #666; }

/* ── RESPONSIVE ── */
/* Hamburger hidden on desktop; shown via media query below */
.kc-hamburger { display: none; }
/* ── VITRINE DE CATEGORIAS ── */
.kc-catshow-section {
  background: var(--pk-bg);
  padding: 56px 80px 64px;
}
.kc-catshow-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-bottom: 36px;
}
.kc-catshow-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px); font-weight: 700;
  color: var(--txt); line-height: 1.2; margin: 0; max-width: 520px;
}
.kc-catshow-btn {
  display: inline-block; border: 2px solid var(--txt);
  color: var(--txt); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; padding: 10px 24px; border-radius: 6px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .2s, color .2s;
}
.kc-catshow-btn:hover { background: var(--txt); color: #fff; }

/* 3-column grid */
.kc-catshow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kc-catshow-card {
  display: block; text-decoration: none;
  transition: transform .25s;
}
.kc-catshow-card:hover { transform: translateY(-6px); }
.kc-catshow-img-wrap {
  width: 100%; aspect-ratio: 3/4;
  max-height: 480px;
  border-radius: 22px; overflow: hidden;
  background: var(--pk-light);
  position: relative;
}
.kc-catshow-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.kc-catshow-card:hover .kc-catshow-img { transform: scale(1.05); }
/* Label overlaid at the bottom */
.kc-catshow-label {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 14px; font-weight: 800;
  letter-spacing: 2px; color: var(--txt);
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 8px 28px;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}
.kc-catshow-card:hover .kc-catshow-label {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

/* ── GARANTIA / MADE IN KOREA ── */
.kc-garantia-section {
  background: var(--pk-bg);
  padding: 60px 40px;
}
.kc-garantia-row {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.kc-garantia-left {
  display: flex; flex-direction: column; align-items: center;
}
.kc-garantia-stamp {
  position: relative; z-index: 2;
  margin-bottom: -32px;
}
.kc-stamp-svg { color: #5a7a5a; opacity: .85; }
.kc-garantia-card {
  background: #d4e6f8; /* azul suave como no site original */
  border-radius: 24px;
  padding: 60px 40px 44px;
  text-align: center;
  width: 100%;
}
.kc-garantia-title {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 900;
  color: var(--txt); letter-spacing: .5px; margin: 0 0 20px;
  text-transform: uppercase;
}
.kc-garantia-text {
  font-size: 16px; line-height: 1.75; color: #2a2a2a;
  margin: 0 0 28px;
}
.kc-garantia-badge {
  display: inline-flex; justify-content: center;
}
.kc-badge-svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,.2)); }

/* Social column dentro do garantia */
.kc-garantia-social {
  display: flex; flex-direction: column; gap: 24px;
}
.kc-garantia-social-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(22px, 2.2vw, 32px); font-weight: 700;
  color: var(--txt); margin: 0;
}
.kc-garantia-social-sub {
  font-size: 16px; line-height: 1.7; color: var(--txt2); margin: 0;
}
.kc-garantia-social-btns {
  display: flex; flex-direction: column; gap: 16px;
}
.kc-gsocial-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-radius: 14px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.kc-gsocial-btn:hover { box-shadow: 0 8px 24px rgba(0,0,0,.14); }
@media (hover: hover) { .kc-gsocial-btn:hover { transform: translateY(-3px); } }
.kc-gsocial-btn--ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); color: #fff; }
.kc-gsocial-btn--tt { background: #0D0D0D; color: #fff; }
.kc-gsocial-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kc-gsocial-info {
  display: flex; flex-direction: column; gap: 2px;
}
.kc-gsocial-info strong { font-size: 15px; font-weight: 700; }
.kc-gsocial-info small  { font-size: 12px; opacity: .8; text-transform: uppercase; letter-spacing: .5px; }

/* ── SOCIAL FEED ── */
.kc-social-section {
  background: var(--pk-bg);
  padding: 64px 40px;
  text-align: center;
}
.kc-social-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(24px, 2.5vw, 36px); font-weight: 700;
  color: var(--txt); margin: 0 0 36px;
}
.kc-social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  max-width: 1100px; margin: 0 auto 48px;
  overflow: hidden;
}
/* Mosaic: 1ª e 4ª fotos são maiores (rowspan 2) */
.kc-social-photo:nth-child(1),
.kc-social-photo:nth-child(4) {
  grid-row: span 2;
  grid-column: span 2;
}
.kc-social-photo {
  display: block; overflow: hidden;
  border-radius: 12px; background: var(--pk-light);
  aspect-ratio: 1;
}
.kc-social-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.kc-social-photo:hover img { transform: scale(1.05); }
.kc-social-btns {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.kc-social-btn-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.kc-social-handle {
  font-size: 12px; color: var(--txt2); letter-spacing: .3px;
}
.kc-social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--txt); color: var(--txt);
  font-size: 14px; font-weight: 700; letter-spacing: 1.5px;
  padding: 14px 36px; border-radius: 8px; text-decoration: none;
  min-width: 220px; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.kc-social-btn:hover { background: var(--txt); color: #fff; }

/* ── GRUPO VIP WHATSAPP ── */
.kc-vip-section {
  background: #2D3320; /* verde-oliva escuro, tom da borda da arte */
  padding: 72px 80px;
  overflow: hidden;
}
.kc-vip-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 64px;
}
.kc-vip-text { flex: 1; min-width: 0; }
.kc-vip-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); color: #d4c99a;
  font-size: 12px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.kc-vip-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(28px, 3vw, 44px); font-weight: 700;
  color: #f5f0e6; line-height: 1.2; margin: 0 0 16px;
}
.kc-vip-sub {
  font-size: 17px; color: #c8c2b4; line-height: 1.65;
  margin: 0 0 28px; max-width: 480px;
}
.kc-vip-perks {
  list-style: none; margin: 0 0 36px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.kc-vip-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: #ddd8cc;
}
.kc-vip-perks li svg { color: #7cbf6a; flex-shrink: 0; }
.kc-vip-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 16px 32px; border-radius: 12px;
  text-decoration: none; letter-spacing: .2px;
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.kc-vip-btn:hover {
  background: #1ebe5a; transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.45);
}
.kc-vip-note {
  margin: 14px 0 0; font-size: 12px; color: #8a8676;
  letter-spacing: .3px;
}
/* Arte / imagem */
.kc-vip-art { flex: 0 0 340px; width: 340px; }
.kc-vip-art-img {
  width: 100%; height: auto; display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transform: rotate(1.5deg);
}

/* ── SLIDER DE BANNERS ── */
.kc-slider {
  position: relative; width: 100%; overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 16/5; /* desktop */
  max-height: 620px;
}
.kc-slider-track { position: relative; width: 100%; height: 100%; }
.kc-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
  pointer-events: none;
}
.kc-slide.is-active { opacity: 1; pointer-events: auto; }
.kc-slide-img-link { display: block; width: 100%; height: 100%; }
.kc-slide-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kc-slide-overlay {
  position: absolute; inset: 0; pointer-events: none;
}
/* Texto sobre o slide */
.kc-slide-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; padding: 40px 80px;
  gap: 12px;
}
.kc-slide-content--left  { align-items: flex-start; text-align: left; }
.kc-slide-content--center{ align-items: center;     text-align: center; }
.kc-slide-content--right { align-items: flex-end;   text-align: right; }
.kc-slide-content--white .kc-slide-title,
.kc-slide-content--white .kc-slide-subtitle { color: #fff; }
.kc-slide-content--dark  .kc-slide-title,
.kc-slide-content--dark  .kc-slide-subtitle { color: var(--txt); }
.kc-slide-title {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px); font-weight: 700;
  line-height: 1.2; margin: 0; max-width: 700px;
  text-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.kc-slide-subtitle {
  font-size: clamp(14px, 1.5vw, 20px); margin: 0; opacity: .92;
  max-width: 560px; text-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.kc-slide-cta {
  display: inline-block;
  background: var(--gold); color: #fff;
  padding: 12px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; letter-spacing: .3px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: background .2s, transform .15s;
}
.kc-slide-cta:hover { background: var(--bronze); }
@media (hover: hover) { .kc-slide-cta:hover { transform: translateY(-1px); } }
/* Setas */
.kc-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.85); border: none; border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: background .2s, opacity .2s;
  color: var(--txt); box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.kc-slider-arrow:hover { background: #fff; }
.kc-slider-arrow--prev { left: 20px; }
.kc-slider-arrow--next { right: 20px; }
/* Dots */
.kc-slider-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.kc-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: none; cursor: pointer;
  padding: 0; transition: background .2s, transform .2s;
}
.kc-slider-dot.is-active {
  background: #fff; transform: scale(1.3);
}

/* Mobile nav hidden by default for all sizes */
.kc-mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(360px, 100vw);
  background: #fff; z-index: 350;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}
/* Mobile nav accordion sub-list (visible on all breakpoints to avoid flash) */
.kc-mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.kc-mobile-nav-logo { display: flex; align-items: center; }
.kc-mobile-nav-logo img,
.kc-mobile-nav-logo .custom-logo-link img { max-height: 56px !important; width: auto !important; }
.kc-mobile-nav-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pk-light); border: none; cursor: pointer;
  color: var(--txt); transition: background .2s;
}
.kc-mobile-nav-close:hover { background: var(--border); }
.kc-mobile-nav-body { flex: 1; overflow-y: auto; }
.kc-mobile-menu { list-style: none; margin: 0; padding: 0; }
.kc-mnav-item { border-bottom: 1px solid var(--border); }
.kc-mnav-item > a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; font-size: 15px; font-weight: 600;
  color: var(--txt); text-decoration: none;
  transition: color .15s;
  border-bottom: 1px solid var(--border);
}
.kc-mnav-item > a:hover { color: var(--gold); }
.kc-mnav-icon { flex-shrink: 0; color: #aaa; }
.kc-mnav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 20px; background: none; border: none;
  border-bottom: 1px solid var(--border);
  font-size: 15px; font-family: inherit; font-weight: 600;
  color: var(--txt); cursor: pointer; text-align: left;
  transition: color .15s;
}
.kc-mnav-toggle-inner { display: flex; align-items: center; gap: 12px; }
.kc-mnav-toggle:hover { color: var(--gold); }
.kc-mnav-toggle[aria-expanded="true"] { color: var(--gold); }
.kc-mnav-toggle[aria-expanded="true"] .kc-mnav-chevron { transform: rotate(180deg); }
.kc-mnav-chevron { transition: transform .25s ease; flex-shrink: 0; }
.kc-mnav-sub {
  list-style: none; margin: 0; padding: 0;
  background: #faf8f6;
  border-top: 1px solid var(--border);
}
.kc-mnav-sub[hidden] { display: none; }
.kc-mnav-sub li { border-bottom: 1px solid var(--border); }
.kc-mnav-sub li:last-child { border-bottom: none; }
.kc-mnav-sub li a {
  display: block; padding: 13px 28px;
  font-size: 14px; color: #555; text-decoration: none;
  transition: color .15s;
}
.kc-mnav-sub li a:hover { color: var(--gold); }
.kc-mnav-sub-all a {
  font-weight: 700; color: var(--txt) !important; font-size: 15px;
}
.kc-mobile-nav-footer {
  padding: 20px; border-top: 1px solid var(--border); flex-shrink: 0;
}
.kc-mnav-account-link {
  display: flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 13px; color: #666; text-decoration: none; justify-content: center;
}
.kc-mnav-account-link:hover { color: var(--gold); }
.kc-mnav-sep { color: #ccc; }
@media (max-width: 1200px) {
  .kits-grid { grid-template-columns: repeat(3,1fr); }
  .bs-right { gap: 10px; }
  .kitsrot-right { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .site-header { padding: 14px 30px; }
  .hero { padding: 40px 30px; gap: 24px; }
  .hero h1 { font-size: 38px; }
  .pain-section, .how-section, .score-section, .diag4-section,
  .bs-section, .kitsrot-section, .kits-section, .tt-section,
  .testi-section, .brands-section, .why-section, .cta-section { padding: 50px 30px; }
  .wk-section, .bh-section, .rp-section { padding: 50px 30px; }
  .wk-split { gap: 36px; }
  .wk-split-left { flex: 0 0 340px; }
  .wk-split-left h2 { font-size: 26px; }
  .bh-grid { grid-template-columns: repeat(3, 1fr); }
  .rp-grid { grid-template-columns: repeat(4, 1fr); }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .site-footer { padding: 50px 30px 24px; }
  .kc-breadcrumb { padding: 14px 30px; }
}

/* ── TABLET / MOBILE ── */
@media (max-width: 768px) {

  /* ── HEADER ── */
  .site-header { padding: 12px 20px; }
  .kc-nav { display: none; }
  /* Hide header CTA btn-pk on mobile — hamburger takes its place */
  .hdr-right .btn-pk, .hdr-right .btn-hero-cta { display: none; }
  /* Hamburger button */
  .kc-hamburger {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: none; border: none;
    cursor: pointer; flex-direction: column; gap: 5px; padding: 4px;
  }
  .kc-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--txt); border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .kc-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .kc-hamburger.is-open span:nth-child(2) { opacity: 0; }
  .kc-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav: show when open */
  .kc-mobile-nav.is-open { transform: translateX(0); }

  /* ── ANN BAR ── */
  .ann-bar { font-size: 11px; padding: 7px 16px; gap: 10px; flex-wrap: nowrap; overflow: hidden; }
  .ann-bar .sep { display: none; }
  /* Show only first message on mobile */
  .ann-bar span:not(:first-child) { display: none; }

  /* ── SLIDER ── */
  .kc-slider { aspect-ratio: 4/3; max-height: 80vw; }
  .kc-slide-content { padding: 20px 24px; gap: 8px; }
  .kc-slider-arrow { width: 36px; height: 36px; }
  .kc-slider-arrow--prev { left: 10px; }
  .kc-slider-arrow--next { right: 10px; }

  /* ── VITRINE DE CATEGORIAS ── */
  .kc-catshow-section { padding: 40px 20px 48px; }
  .kc-catshow-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
  .kc-catshow-grid { grid-template-columns: 1fr; gap: 14px; }
  .kc-catshow-img-wrap { aspect-ratio: 4/3; max-height: none; }
  .kc-catshow-label { font-size: 13px; padding: 7px 22px; }

  /* ── GARANTIA ── */
  .kc-garantia-section { padding: 40px 16px; }
  .kc-garantia-row { grid-template-columns: 1fr; gap: 32px; }
  .kc-garantia-card { padding: 52px 24px 36px; border-radius: 18px; }
  .kc-garantia-text { font-size: 15px; }

  /* ── SOCIAL FEED ── */
  .kc-social-section { padding: 48px 20px; }
  .kc-social-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    overflow-x: auto; scroll-snap-type: x mandatory;
    display: flex; gap: 8px;
  }
  .kc-social-photo { flex: 0 0 140px; scroll-snap-align: start; }
  .kc-social-photo:nth-child(1),
  .kc-social-photo:nth-child(4) { grid-row: auto; grid-column: auto; }
  .kc-social-btn { min-width: 160px; padding: 12px 20px; font-size: 13px; }
  .kc-social-btns { gap: 12px; }

  /* ── GRUPO VIP ── */
  .kc-vip-section { padding: 52px 24px; }
  .kc-vip-inner { flex-direction: column; gap: 36px; }
  .kc-vip-art { flex: none; width: min(320px, 90%); margin: 0 auto; }
  .kc-vip-art-img { transform: none; }
  .kc-vip-sub { font-size: 15px; max-width: 100%; }
  .kc-vip-btn { width: 100%; justify-content: center; }

  /* ── HERO V2 ── */
  .kc-hero-v2 { padding: 56px 20px 64px; min-height: auto; }
  .kc-hero-v2-bg-img { right: -40%; opacity: .14; }
  .kc-hero-v2-glow { width: 420px; height: 420px; }
  .kc-hero-v2-inner { gap: 28px; }
  .kc-hero-v2-kicker { font-size: 10px; letter-spacing: 3px; }
  .kc-hero-v2-kicker-line { width: 24px; }
  .kc-hero-v2-h1 { font-size: clamp(28px, 8vw, 40px); }
  .kc-hero-v2-sub { font-size: 14.5px; }
  .kc-hero-v2-photo-wrap { max-width: 100%; }
  .kc-hero-v2-photo-stamp {
    width: 88px; height: 88px;
    bottom: -18px; right: -10px;
    border-width: 3px;
    font-size: 8px;
  }
  .kc-hero-v2-photo-stamp strong { font-size: 16px; }
  .kc-hero-v2-photo-badge { top: 14px; left: 14px; padding: 7px 13px; font-size: 9.5px; }
  .kc-hero-v2-btns { flex-direction: column; width: 100%; }
  .kc-hero-v2-btns .btn-hero-cta,
  .kc-hero-v2-btns .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .kc-hero-v2-trust {
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    margin-top: 28px;
    padding-top: 24px;
  }
  .kc-hv2-trust-icon { width: 34px; height: 34px; }
  .kc-hv2-trust-item b { font-size: 11.5px; }
  .kc-hv2-trust-item small { font-size: 10.5px; }

  /* ── HERO FOUNDERS ── */
  .hero--founders {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-founders-photo-col {
    aspect-ratio: 4/3;
    max-height: 75vw;
  }
  .hero-founders-text-col {
    padding: 36px 24px 44px;
  }
  .hero-founders-btns { flex-direction: column; }
  .hero-founders-btns .btn-hero-cta,
  .hero-founders-btns .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .hero-founders-trust { grid-template-columns: 1fr 1fr; gap: 12px 16px; }

  /* ── HERO (legacy rules kept for safety) ── */
  .hero { padding: 32px 20px 40px; gap: 32px; }
  .hero-left { max-width: 100%; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 14px; margin: 16px 0 24px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-hero-cta,
  .hero-btns .btn-outline { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 10px 16px; }
  .ti { font-size: 11px; }
  .ti-icon { width: 28px; height: 28px; }

  /* Hero right / image + score card */
  .hero-right {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .hero-right > img {
    width: 100%; max-width: 360px; height: 380px;
    border-radius: 20px;
  }
  .hero-photo { width: 100%; max-width: 360px; height: 340px; }
  /* Score card: flows below image, not absolute */
  .score-card {
    position: relative; right: auto; top: auto;
    transform: none; margin-top: 16px;
    width: 100%; max-width: 360px;
    border-radius: 16px;
    /* cancel hero animation — use scroll one instead */
    animation: none;
    opacity: 1; transform: none;
  }
  .score-card--cta { padding: 20px; }

  /* ── PAIN SECTION ── */
  .pain-section { flex-direction: column; gap: 28px; }
  .pain-center { width: 100%; text-align: center; }
  .pain-slogan { font-size: 16px; }
  .pain-img { height: 80px; }

  /* ── HOW IT WORKS ── */
  .how-section { flex-direction: column; gap: 32px; }
  .steps-row { gap: 2px; }
  .step-txt { font-size: 10px; }
  .phone-wrap { width: 220px; height: 330px; }

  /* ── DIAG 4 STEPS ── */
  .diag4-section { flex-direction: column; gap: 28px; }
  .diag4-right {
    overflow-x: auto; padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .mini-phone { scroll-snap-align: start; flex: 0 0 140px; }

  /* ── SCORE SECTION ── */
  .score-inner { flex-direction: column; gap: 28px; }

  /* ── WHY KOREAN (split → stack) ── */
  .wk-section { padding: 50px 20px; }
  .wk-split { flex-direction: column; gap: 32px; }
  .wk-split-left { flex: none; width: 100%; }
  .wk-split-left h2 { font-size: 26px; }
  .wk-cta-row { flex-direction: column; }
  .wk-cta-row .btn-pk, .wk-cta-row .btn-outline-pk { text-align: center; }
  .wk-cards-2x2 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .wk-card { padding: 18px 14px; }

  /* ── BRAND HIGHLIGHTS ── */
  .bh-section { padding: 50px 20px; }
  .bh-header h2 { font-size: 26px; }
  .bh-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* ── ROUTINE PRODUCTS ── */
  .rp-section { padding: 50px 20px; }
  .rp-header h2 { font-size: 26px; }
  .rp-tabs { max-width: 100%; }
  .rp-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .score-circles { grid-template-columns: repeat(3,1fr); gap: 14px; }
  .sc-svg { width: 80px; height: 80px; }
  .c-val { font-size: 18px; }
  .sc-lbl { font-size: 11px; }

  /* ── BEST SELLERS ── */
  .bs-inner { flex-direction: column; gap: 20px; }
  .bs-left { display: flex; align-items: center; justify-content: space-between; flex: none; }
  .bs-left h2 { font-size: 22px; margin-bottom: 0; }
  .bs-right {
    overflow-x: auto; padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
  }
  .bs-card { min-width: 160px; flex: 0 0 160px; scroll-snap-align: start; }

  /* ── KITS ── */
  .kitsrot-inner { flex-direction: column; }
  .kitsrot-right { grid-template-columns: 1fr; }
  .kits-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }

  /* ── TIKTOK / TRENDING ── */
  .tt-hdr { flex-direction: column; align-items: flex-start; gap: 8px; }
  .products-row {
    overflow-x: auto; padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .prod-card { min-width: 180px; flex: 0 0 180px; scroll-snap-align: start; }

  /* ── WALL OF LOVE ── */
  .kc-wall-section { padding: 48px 16px 60px; }
  .kc-wall-grid {
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 20px 16px 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .kc-wall-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    transform: none !important;
  }
  .kc-wall-card:hover { transform: translateY(-8px) scale(1.03) !important; }

  /* ── TIKTOK VIDEO ── */
  .kc-ttv-section { padding: 48px 20px; }
  .kc-ttv-inner { grid-template-columns: 1fr; gap: 40px; }
  .kc-ttv-phone-wrap { order: -1; }
  .kc-ttv-phone { width: 280px; }

  /* ── TESTIMONIALS (old — hidden) ── */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-section h2 { font-size: 26px; }

  /* ── WHY SECTION ── */
  .why-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }

  /* ── BOTTOM CTA ── */
  .cta-section { flex-direction: column; padding: 48px 20px; gap: 28px; }
  .cta-left h2 { font-size: 28px; }
  .cta-left p { font-size: 14px; }
  .cta-right { display: none; }

  /* ── FOOTER ── */
  .site-footer { padding: 40px 20px 24px; }
  .ft-top { grid-template-columns: 1fr; gap: 28px; }
  .nl-form { flex-direction: row; }
  .nl-input { border-radius: 20px 0 0 20px; }
  .ft-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── MINI-CART ── */
  .kc-mini-cart-drawer { width: 100%; max-width: 100%; }

  /* ── BREADCRUMB ── */
  .kc-breadcrumb { padding: 10px 20px; }

  /* ── 404 ── */
  .kc-404 { padding: 60px 20px; }
  .kc-404 h1 { font-size: 80px; }

  /* ── SHOP ── */
  .kc-shop-header { padding: 28px 20px 0; }
  .kc-shop-header h1 { font-size: 28px; }
}

/* ── SMALL PHONES ── */
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .score-circles { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .kits-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex-direction: column; gap: 10px; }
  .wk-cards-2x2 { grid-template-columns: 1fr; }
  .bh-grid { grid-template-columns: 1fr; }
  .rp-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rp-tab { font-size: 12px; padding: 10px 10px; }
}


/* ── COOKIE CONSENT BANNER ── */
.kc-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
  background: #1a1a1a; color: #f0ebe6;
  border-top: 1px solid rgba(201,164,106,.25);
  box-shadow: 0 -4px 24px rgba(0,0,0,.28);
  padding: 16px 24px;
  transition: transform .4s ease, opacity .4s ease;
}
.kc-cookie-banner--hiding {
  transform: translateY(100%);
  opacity: 0;
}
.kc-cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.kc-cookie-text { flex: 1; min-width: 220px; }
.kc-cookie-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.kc-cookie-text p { font-size: 13px; color: #b8b3ae; line-height: 1.55; margin: 0; }
.kc-cookie-text a { color: var(--gold); text-decoration: underline; }
.kc-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.kc-cookie-btn {
  padding: 10px 22px; border-radius: 8px; font-size: 13px;
  font-weight: 700; cursor: pointer; transition: background .2s, color .2s;
  border: none; line-height: 1;
}
.kc-cookie-btn--outline {
  background: transparent; color: #b8b3ae;
  border: 1.5px solid rgba(184,179,174,.35);
}
.kc-cookie-btn--outline:hover { background: rgba(255,255,255,.06); color: #fff; }
.kc-cookie-btn--accept {
  background: var(--gold); color: #0d0d0d;
}
.kc-cookie-btn--accept:hover { background: #d4b07a; }

@media (max-width: 480px) {
  .kc-cookie-inner { flex-direction: column; align-items: flex-start; }
  .kc-cookie-actions { width: 100%; }
  .kc-cookie-btn { flex: 1; text-align: center; padding: 12px; }
  .wk-grid { grid-template-columns: 1fr; }
}

/* ── WhatsApp FAB ── */
.kc-whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.kc-whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  color: #fff;
}
.kc-whatsapp-fab svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .kc-whatsapp-fab { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .kc-whatsapp-fab svg { width: 24px; height: 24px; }
}

/* ── COUPON FORM (cart) ── */
.kc-coupon-wrap {
  margin-bottom: 20px;
  border: 1.5px dashed var(--gold, #c9a84c);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(201,168,76,.06);
}
.kc-coupon-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold, #c9a84c);
  margin-bottom: 10px;
}
.kc-coupon-row {
  display: flex;
  gap: 8px;
}
.kc-coupon-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e0d5c8;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #1a1a1a;
  outline: none;
  transition: border-color .2s;
}
.kc-coupon-input:focus { border-color: var(--gold, #c9a84c); }
.kc-coupon-btn {
  padding: 10px 18px;
  background: var(--gold, #c9a84c);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.kc-coupon-btn:hover { background: #a88538; }

/* ── OUT OF STOCK NOTICE ── */
.kc-out-of-stock-notice {
  padding: 14px 18px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  color: #856404;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

