
.kb-root {
  --cream: #f6ecd9;
  --cream-2: #fbf5e7;
  --cream-3: #efe2c6;
  --brown-1: #2a1a0f;
  --brown-2: #3d2416;
  --brown-3: #6b4423;
  --brown-4: #8b5a2b;
  --gold: #c9a24a;
  --gold-2: #e0bd6a;
  --ink: #2a1a0f;
  --muted: #7a5a3f;
  --line: rgba(107, 68, 35, 0.15);
  --shadow-sm: 0 2px 12px rgba(58, 30, 10, 0.06);
  --shadow-md: 0 12px 40px rgba(58, 30, 10, 0.12);
  --shadow-lg: 0 24px 60px rgba(58, 30, 10, 0.18);
  background: var(--cream-2);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
.kb-root * { box-sizing: border-box; }
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700;9..144,900&family=Inter:wght@400;500;600;700&display=swap');
.kb-root h1, .kb-root h2, .kb-root h3, .kb-root h4 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--brown-1);
  margin: 0;
}
.kb-root p { margin: 0; }
.kb-root a { color: inherit; text-decoration: none; }
.kb-root img { max-width: 100%; display: block; }
.kb-root button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.kb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kb-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ANNOUNCEMENT BAR */
.kb-announce {
  background: linear-gradient(90deg, #3a1e0a 0%, #5a2e12 50%, #3a1e0a 100%);
  color: #f6d68a;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  overflow: hidden;
  position: relative;
  min-height: 36px;
}
.kb-announce::before, .kb-announce::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none;
}
.kb-announce::before { left: 0; background: linear-gradient(90deg, #3a1e0a, transparent); }
.kb-announce::after { right: 0; background: linear-gradient(270deg, #3a1e0a, transparent); }
.kb-announce-track {
  display: inline-flex; align-items: center; gap: 32px;
  white-space: nowrap; padding: 9px 0;
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  animation: kb-marquee 60s linear infinite;
  will-change: transform;
}
.kb-announce-item { display: inline-flex; align-items: center; gap: 8px; }
.kb-announce-item > span { filter: drop-shadow(0 1px 1px rgba(0,0,0,0.35)); }
.kb-announce-sep { color: #d4a24a; font-size: 10px; }
@keyframes kb-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .kb-announce {
    min-height: auto;
    overflow: visible;
  }
  .kb-announce::before,
  .kb-announce::after {
    display: none;
  }
  .kb-announce-track {
    animation: none !important;
    transform: none !important;
    will-change: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
    width: 100%;
    max-width: 100%;
    padding: 8px 14px;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }
  .kb-announce-track > :nth-child(n+5) {
    display: none;
  }
  .kb-announce-sep { opacity: .85; }
}

/* HEADER */
.kb-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 245, 231, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.kb-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.kb-header-inner { display: flex; align-items: center; gap: 24px; padding: 16px 24px; }
.kb-logo { display: flex; align-items: center; gap: 12px; }
.kb-logo-img {
  width: 48px; height: 48px; border-radius: 12px;
  object-fit: contain;
  background: linear-gradient(140deg, var(--brown-2), var(--brown-3));
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(224, 189, 106, 0.35), 0 6px 18px rgba(58, 30, 10, 0.25);
}
.kb-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.kb-logo-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px; color: var(--brown-1); }
.kb-logo-est { font-size: 11px; color: var(--brown-3); letter-spacing: 0.12em; text-transform: uppercase; }

.kb-nav { display: flex; gap: 4px; margin-left: 12px; }
.kb-nav a {
  padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: 14px;
  color: var(--brown-2); transition: background .2s, color .2s;
}
.kb-nav a:hover { background: var(--cream-3); color: var(--brown-1); }

.kb-header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.kb-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--brown-2); font-weight: 500; }
.kb-phone-num { display: none; }
@media (min-width: 900px) { .kb-phone-num { display: inline; } }

.kb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14px;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.kb-btn-primary { background: linear-gradient(135deg, var(--brown-2), var(--brown-3)); color: var(--cream); box-shadow: 0 8px 20px rgba(58, 30, 10, 0.22); }
.kb-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(58, 30, 10, 0.3); }
.kb-btn-ghost { background: transparent; color: var(--brown-1); border: 1.5px solid var(--brown-2); }
.kb-btn-ghost:hover { background: var(--brown-2); color: var(--cream); }
.kb-btn-wa { background: #128c7e; color: white; box-shadow: 0 6px 16px rgba(18, 140, 126, 0.35); }
.kb-btn-wa:hover { transform: translateY(-2px); background: #0f7268; }
.kb-btn-block { width: 100%; padding: 14px; }

.kb-cart-btn { position: relative; width: 42px; height: 42px; border-radius: 12px; background: var(--cream-3); font-size: 18px; }
.kb-cart-btn:hover { background: var(--brown-2); color: var(--cream); }
.kb-cart-count {
  position: absolute; top: -4px; right: -4px; background: var(--gold);
  color: var(--brown-1); font-size: 11px; font-weight: 700;
  width: 20px; height: 20px; border-radius: 10px; display: none;
  align-items: center; justify-content: center;
}
.kb-cart-count.show { display: flex; }

.kb-burger { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.kb-burger span { width: 22px; height: 2px; background: var(--brown-1); border-radius: 2px; transition: transform .2s; }

@media (max-width: 900px) {
  .kb-nav {
    position: absolute; top: 100%; left: 12px; right: 12px;
    background: linear-gradient(160deg, #3a1e0a 0%, #5a2e12 55%, #8a5a2b 100%);
    flex-direction: column; padding: 18px;
    gap: 10px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    box-shadow: 0 24px 50px rgba(30, 12, 4, 0.35);
    transform: translateY(-14px) scale(.98); opacity: 0; pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
    overflow: hidden;
    margin-top: 10px;
  }
  .kb-nav::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 15% 0%, rgba(212, 175, 55, 0.25), transparent 55%),
      radial-gradient(circle at 100% 100%, rgba(255, 220, 150, 0.18), transparent 60%);
    pointer-events: none;
  }
  .kb-nav.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  .kb-nav a {
    position: relative;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff8ea;
    background: rgba(255, 250, 235, 0.06);
    border: 1px solid rgba(255, 235, 190, 0.14);
    border-radius: 14px;
    display: flex; align-items: center; gap: 12px;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
  }
  .kb-nav a::before {
    content: "";
    width: 8px; height: 8px; border-radius: 999px;
    background: linear-gradient(135deg, #f6d68a, #d4a24a);
    box-shadow: 0 0 10px rgba(246, 214, 138, 0.7);
    flex: 0 0 auto;
  }
  .kb-nav a:hover, .kb-nav a:active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(255, 220, 150, 0.15));
    border-color: rgba(246, 214, 138, 0.55);
    color: #fff;
    transform: translateX(4px);
  }
  .kb-burger { display: flex; }
  .kb-btn-wa { display: none; }
  .kb-phone { display: none; }
}


/* HERO */
.kb-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.kb-hero-bg { position: relative; z-index: 0; pointer-events: none; overflow: hidden; background: var(--cream-2); }
.kb-hero-bg picture { display: block; width: 100%; }
.kb-hero-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  opacity: 1;
}
.kb-hero-actions {
  display: none;
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vw, 44px);
  z-index: 2;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  transform: translateX(-50%);
  padding: 12px 16px;
  background: rgba(255, 250, 240, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(58, 30, 10, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(58, 30, 10, 0.18);
}
.kb-hero-actions .kb-btn-primary {
  background: linear-gradient(135deg, #d4a24a 0%, #b6791f 55%, #8a4a0f 100%);
  color: #fff8ea;
  text-shadow: 0 1px 2px rgba(58, 30, 10, 0.35);
  border: 1px solid rgba(246, 214, 138, 0.6);
  box-shadow: 0 10px 22px rgba(138, 74, 15, 0.35);
}
.kb-hero-actions .kb-btn-primary:hover {
  background: linear-gradient(135deg, #e4b563 0%, #c88a2a 55%, #9a5a1a 100%);
  color: #fff;
}
.kb-hero-actions .kb-btn-ghost {
  background: #128c7e;
  color: #fff;
  border-color: #128c7e;
  box-shadow: 0 6px 16px rgba(18, 140, 126, 0.35);
}
.kb-hero-actions .kb-btn-ghost:hover {
  background: #0f7268;
  color: #fff;
  border-color: #0f7268;
}
.kb-hero-badge {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  background: rgba(42, 26, 15, 0.06); border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--brown-3);
  margin-bottom: 28px;
}
.kb-hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 24px;
}
.kb-hero-title em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(135deg, var(--brown-3), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kb-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--brown-3); max-width: 640px; margin: 0 auto 36px;
}
.kb-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.kb-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 640px; margin: 0 auto;
  padding-top: 40px; border-top: 1px solid var(--line);
}
.kb-hero-stats > div { display: flex; flex-direction: column; align-items: center; }
.kb-hero-stats strong { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--brown-1); }
.kb-hero-stats span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

@media (max-width: 768px) {
  html,
  body.kb-root {
    overflow-anchor: none;
  }
  .kb-root {
    overflow-x: clip;
  }
  .kb-hero-bg,
  .kb-hero-img,
  .reveal,
  .reveal.in {
    transform: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transition: none !important;
  }
  .kb-hero-actions {
    display: flex;
    left: 12px;
    right: 12px;
    bottom: 14px;
    transform: none;
    border-radius: 18px;
    padding: 10px;
  }
  .kb-hero-actions .kb-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 14px;
    font-size: 14px;
  }
}


/* SECTIONS */
.kb-section { padding: 100px 0; }
.kb-products { position: relative; background: linear-gradient(180deg, #fbf3df 0%, #f6ecd9 55%, #fbf5e7 100%); overflow: hidden; }
.kb-products-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(600px 400px at 10% 10%, rgba(201,162,74,0.18), transparent 60%),
    radial-gradient(700px 500px at 95% 80%, rgba(139,90,43,0.16), transparent 65%),
    repeating-linear-gradient(45deg, rgba(201,162,74,0.04) 0 2px, transparent 2px 22px);
}
.kb-products .kb-container { position: relative; z-index: 1; }
.kb-section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.kb-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--brown-4); letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 14px;
}
.kb-section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.kb-section-head p { color: var(--muted); font-size: 1.05rem; }

/* VIP section head (Products) */
.kb-section-head--vip { max-width: 780px; }
.kb-eyebrow--gold {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 22px; border-radius: 999px;
  background: linear-gradient(135deg, #f7e3b0 0%, #e0b866 50%, #b8862f 100%);
  color: #3a2410; letter-spacing: 0.28em; font-weight: 700;
  box-shadow: 0 8px 22px -10px rgba(184,134,47,.55), inset 0 1px 0 rgba(255,255,255,.5);
  margin-bottom: 20px; text-transform: uppercase; font-size: 11px;
}
.kb-eyebrow-line {
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, #3a2410, transparent);
}
.kb-vip-title {
  background: linear-gradient(135deg, var(--brown-1) 0%, #a06a2a 55%, #d4a24c 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 700; letter-spacing: -0.01em;
}
.kb-section-head--vip p strong {
  color: var(--brown-2); font-weight: 700;
  background: linear-gradient(90deg, #b8862f, #d4a24c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kb-vip-flourish {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 18px;
}
.kb-vip-flourish .kb-vip-dot {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, #b8862f, transparent);
}
.kb-vip-flourish .kb-vip-star {
  color: #b8862f; font-size: 14px;
  filter: drop-shadow(0 0 6px rgba(212,162,76,.5));
}

/* FILTERS — VIP pill rail */
.kb-filters {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin: 0 auto 56px; padding: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(246,236,217,.5));
  border: 1px solid var(--line); border-radius: 999px;
  width: fit-content; max-width: 100%;
  box-shadow: 0 10px 30px -18px rgba(58,36,16,.25), inset 0 1px 0 rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
}
.kb-filter {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px;
  background: transparent; color: var(--brown-2);
  font-weight: 600; font-size: 14px; letter-spacing: .02em;
  border: 1px solid transparent; transition: all .3s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.kb-filter .kb-filter-icon {
  font-size: 15px; line-height: 1;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.kb-filter:hover {
  color: var(--brown-1); background: rgba(255,255,255,.75);
  border-color: rgba(184,134,47,.35);
  transform: translateY(-1px);
}
.kb-filter:hover .kb-filter-icon { transform: rotate(-8deg) scale(1.15); }
.kb-filter.active {
  background: linear-gradient(135deg, #3a2410 0%, #6b4423 55%, #b8862f 130%);
  color: #f7e3b0; border-color: transparent;
  box-shadow: 0 10px 22px -10px rgba(58,36,16,.55), inset 0 1px 0 rgba(255,255,255,.15);
}
.kb-filter.active .kb-filter-icon {
  filter: drop-shadow(0 0 6px rgba(247,227,176,.6));
  transform: scale(1.1);
}
@media (max-width: 640px) {
  .kb-filters { gap: 6px; padding: 6px; border-radius: 22px; }
  .kb-filter { padding: 9px 14px; font-size: 13px; }
}

/* PRODUCT GRID */
.kb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.kb-product {
  position: relative;
  background: linear-gradient(180deg, #fffdf7 0%, #fbf3df 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.28);
  box-shadow: 0 4px 20px rgba(58, 30, 10, 0.08), inset 0 0 0 1px rgba(255,255,255,0.6);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
  display: flex; flex-direction: column;
}
.kb-product::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,162,74,0) 0%, rgba(201,162,74,0) 60%, rgba(201,162,74,0.18) 100%);
  opacity: 0; transition: opacity .4s;
}
.kb-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -20px rgba(58, 30, 10, 0.28), 0 0 0 1px rgba(201, 162, 74, 0.5);
  border-color: rgba(201, 162, 74, 0.6);
}
.kb-product:hover::before { opacity: 1; }
.kb-product-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, #fffaea, transparent 65%),
    linear-gradient(135deg, #f0dfb8, #e7cf9a);
}
.kb-product-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s;
  filter: saturate(1.05) contrast(1.02);
}
.kb-product:hover .kb-product-img img { transform: scale(1.08) rotate(-1deg); filter: saturate(1.15) contrast(1.05); }
.kb-product-img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 26, 15, 0.35) 100%);
}
.kb-product-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 12px; border-radius: 999px;
  background: linear-gradient(135deg, #3d2416, #6b4423);
  color: #f6ecd9; box-shadow: 0 6px 16px rgba(42,26,15,0.35);
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
}
.kb-product-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  padding: 5px 11px; border-radius: 999px;
  background: linear-gradient(135deg, #e0bd6a, #c9a24a);
  color: #2a1a0f; font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(201, 162, 74, 0.4), inset 0 1px 0 rgba(255,255,255,0.5);
}
.kb-product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; gap: 12px; position: relative; z-index: 1; }
.kb-product-body h3 { font-size: 1.35rem; }
.kb-product-body p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.kb-sizes { display: flex; gap: 8px; }
.kb-size {
  flex: 1; padding: 9px 12px; border-radius: 10px;
  background: rgba(255, 253, 247, 0.7); font-size: 12px; font-weight: 600;
  color: var(--brown-3); border: 1px solid rgba(201, 162, 74, 0.25); transition: all .2s;
}
.kb-size:hover { border-color: rgba(201, 162, 74, 0.6); }
.kb-size.active { background: linear-gradient(135deg, #3d2416, #6b4423); color: var(--cream); border-color: transparent; box-shadow: 0 6px 14px rgba(42,26,15,0.25); }
.kb-product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; padding-top: 12px; border-top: 1px dashed rgba(201, 162, 74, 0.35); }
.kb-price { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.35rem; background: linear-gradient(135deg, #3d2416, #8b5a2b); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.kb-product-actions { display: flex; gap: 6px; }
.kb-product-actions .kb-btn { padding: 9px 14px; font-size: 13px; }
.kb-wa { padding: 9px 12px !important; background: #128c7e !important; color: #fff !important; }

/* ABOUT */
.kb-about { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.kb-about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .kb-about-grid { grid-template-columns: 1fr; gap: 40px; } }
.kb-about-visual { position: relative; }
.kb-about-img {
  aspect-ratio: 4/5; border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(224, 189, 106, 0.4), transparent 60%),
    linear-gradient(160deg, var(--brown-2), var(--brown-3));
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  color: var(--cream); text-align: center; padding: 40px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.kb-about-img::before {
  content: ''; position: absolute; inset: 12px; border-radius: 16px;
  border: 1px solid rgba(224, 189, 106, 0.3);
}
.kb-about-img span:first-child { font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); }
.kb-about-img strong { font-family: 'Fraunces', serif; font-size: clamp(4rem, 10vw, 7rem); line-height: 1; color: var(--gold-2); margin: 20px 0; font-weight: 900; }
.kb-about-img span:last-child { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; }
.kb-about-tag {
  position: absolute; bottom: -20px; right: -10px;
  background: var(--gold); color: var(--brown-1);
  padding: 14px 22px; border-radius: 14px;
  font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-md); transform: rotate(-3deg);
}
.kb-about-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 10px 0 20px; }
.kb-about-text p { color: var(--brown-3); margin-bottom: 16px; font-size: 1.02rem; }
.kb-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.kb-badge {
  display: flex; gap: 12px; align-items: center;
  padding: 14px; border-radius: 14px;
  background: white; border: 1px solid var(--line);
}
.kb-badge-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--cream); display: grid; place-items: center; font-size: 20px;
  flex-shrink: 0;
}
.kb-badge strong { display: block; font-size: 14px; color: var(--brown-1); }
.kb-badge span { font-size: 12px; color: var(--muted); }

/* WHY */
.kb-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.kb-why-card {
  padding: 40px 32px; border-radius: 20px; background: white;
  border: 1px solid var(--line); transition: transform .3s, box-shadow .3s;
}
.kb-why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.kb-why-ico {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--cream-3), var(--cream));
  display: grid; place-items: center; font-size: 28px;
  margin-bottom: 20px;
}
.kb-why-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.kb-why-card p { color: var(--muted); }

/* REVIEWS */
.kb-reviews { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.kb-rating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 10px 18px; border-radius: 999px;
  background: white; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 14px;
}
.kb-rating-badge .kb-stars { color: var(--gold); letter-spacing: 2px; }
.kb-rating-badge strong { font-family: 'Fraunces', serif; font-size: 18px; }
.kb-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.kb-review {
  position: relative;
  padding: 40px 30px 28px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, #ffffff 0%, #fff8e9 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 10px 30px -18px rgba(90, 46, 18, 0.35), inset 0 1px 0 rgba(255,255,255,0.7);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.kb-review::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #d4a24a, #8a4a0f, #d4a24a);
  opacity: .85;
}
.kb-review:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(90, 46, 18, 0.45);
  border-color: rgba(212, 175, 55, 0.55);
}
.kb-review-quote {
  position: absolute; top: 6px; right: 18px;
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 90px; line-height: 1; color: rgba(212, 175, 55, 0.22);
  pointer-events: none; user-select: none;
}
.kb-review-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; position: relative; }
.kb-review-stars span { display: inline-block; animation: kb-star-pop .6s both; }
@keyframes kb-star-pop {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.kb-review blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.02rem; line-height: 1.6;
  color: var(--brown-1);
  margin: 0 0 22px;
  font-style: normal;
  font-weight: 400;
  position: relative;
}
.kb-review-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px dashed rgba(212, 175, 55, 0.4); }
.kb-review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff8e9; font-family: 'Fraunces', serif; font-weight: 700; font-size: 20px;
  box-shadow: 0 4px 12px -4px rgba(90, 46, 18, 0.5);
  flex-shrink: 0;
}
.kb-review-meta { display: flex; flex-direction: column; }
.kb-review-meta strong { display: block; color: var(--brown-1); font-family: 'Fraunces', serif; font-size: 15px; }
.kb-review-meta span { font-size: 12px; color: var(--muted); letter-spacing: .3px; }

/* CONTACT */
.kb-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .kb-contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.kb-contact-lead { color: var(--brown-3); margin: 10px 0 30px; font-size: 1.05rem; }
.kb-contact-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 20px; }
.kb-contact-list li { display: flex; gap: 16px; }
.kb-contact-list span {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--cream-3); display: grid; place-items: center; font-size: 18px;
}
.kb-contact-list strong { display: block; color: var(--brown-1); margin-bottom: 4px; }
.kb-contact-list a { color: var(--brown-3); }
.kb-contact-list a:hover { color: var(--brown-1); }
.kb-map { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/9; }
.kb-map iframe { width: 100%; height: 100%; border: 0; }

.kb-form { background: white; padding: 36px; border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.kb-form h3 { font-size: 1.6rem; margin-bottom: 24px; }
.kb-form label { display: block; margin-bottom: 16px; font-size: 13px; font-weight: 600; color: var(--brown-3); }
.kb-form input, .kb-form textarea {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 14px; border-radius: 10px;
  background: var(--cream-2); border: 1px solid var(--line);
  font-family: inherit; font-size: 14px; color: var(--ink);
  transition: border-color .2s, background .2s;
}
.kb-form input:focus, .kb-form textarea:focus { outline: none; border-color: var(--brown-3); background: white; }

/* FOOTER */
.kb-footer { background: var(--brown-1); color: rgba(246, 236, 217, 0.7); padding: 70px 0 0; }
.kb-footer .kb-logo-name, .kb-footer h4 { color: var(--cream); }
.kb-footer .kb-logo-est { color: var(--gold-2); }
.kb-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 800px) { .kb-footer-grid { grid-template-columns: 1fr 1fr; } }
.kb-footer h4 { font-family: 'Fraunces', serif; font-size: 1rem; margin: 20px 0 14px; }
.kb-footer a { display: block; padding: 4px 0; font-size: 14px; color: rgba(246, 236, 217, 0.7); }
.kb-footer a:hover { color: var(--gold-2); }
.kb-footer-about { font-size: 14px; margin-top: 16px; max-width: 320px; }
.kb-footer-brand { display: flex; align-items: center; gap: 14px; }
.kb-footer-logo-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8e7, #f6ecd9 60%, #e6d3a3);
  display: flex; align-items: center; justify-content: center;
  padding: 8px; box-shadow: 0 6px 20px rgba(212, 162, 74, 0.35), inset 0 0 0 2px rgba(212, 175, 55, 0.6);
  flex-shrink: 0;
}
.kb-footer-logo-img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
.kb-social { display: flex; gap: 10px; margin-top: 14px; }
.kb-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(224, 189, 106, 0.1); display: grid; place-items: center;
  font-size: 16px; padding: 0; color: var(--gold-2);
}
.kb-social a:hover { background: var(--gold); color: var(--brown-1); }
.kb-footer-bottom {
  border-top: 1px solid rgba(246, 236, 217, 0.1);
  padding: 24px; text-align: center; font-size: 13px;
}

/* FLOATING WA */
.kb-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  background: #25d366; color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  font-weight: 600; font-size: 14px;
  animation: kb-fab-in .6s .8s both, kb-fab-pulse 2.4s 1.5s infinite;
}
.kb-fab:hover { transform: scale(1.05); }
.kb-fab-ico { font-size: 20px; }
@keyframes kb-fab-in {
  from { transform: translateX(140%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes kb-fab-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) { .kb-fab-label { display: none; } .kb-fab { padding: 16px; } }

/* CART */
.kb-cart-backdrop {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(42, 26, 15, 0.4); opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.kb-cart-backdrop.open { opacity: 1; pointer-events: auto; }
.kb-cart {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: min(420px, 92vw); background: var(--cream-2);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 60px rgba(58, 30, 10, 0.25);
}
.kb-cart.open { transform: translateX(0); }

/* pair with backdrop when cart open: use JS-added class fallback */
.kb-cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--line);
}
.kb-cart-head h3 { font-size: 1.4rem; }
.kb-cart-head button { font-size: 28px; color: var(--brown-3); line-height: 1; }
.kb-cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.kb-cart-empty { color: var(--muted); text-align: center; padding: 40px 0; }
.kb-cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line); gap: 12px;
}
.kb-ci-name { font-weight: 600; color: var(--brown-1); font-size: 14px; }
.kb-ci-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.kb-ci-controls { display: flex; align-items: center; gap: 8px; }
.kb-ci-controls button {
  width: 26px; height: 26px; border-radius: 8px;
  background: white; border: 1px solid var(--line);
  font-size: 14px; color: var(--brown-2);
}
.kb-ci-controls span { min-width: 20px; text-align: center; font-weight: 600; font-size: 14px; }
.kb-ci-remove { color: var(--brown-4) !important; }
.kb-cart-foot { padding: 20px 24px; border-top: 1px solid var(--line); background: white; }
.kb-cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.kb-cart-total strong { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--brown-1); }
.kb-cart-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
