/*
 * KRONTEX — Shared Chrome
 *
 * Loads on EVERY page. Contains:
 *   - Viewport toggle (display switch between kr-desktop / kr-mobile)
 *   - Desktop @scope: tokens, reset, base elements, headings, eyebrow,
 *     container/shell, buttons, link-arrow, wood/stone/interior utilities,
 *     topbar, header (logo, searchbar, header__tools, tool),
 *     navbar, cats-btn, nav, nav__extras, mega-menu, footer.
 *   - Mobile @scope: tokens, reset, base, buttons (with beam),
 *     link-arrow, wood/stone/interior utilities, topbar (marquee),
 *     drawer (all levels), header (sticky, icon-btn, logo, searchbar-m,
 *     chipnav/chip), footer (accordion), sticky-cta, tabbar.
 *
 * Do NOT add home-only rules here. See assets/css/home.css for
 * hero, services, categories, products, collections, story, etc.
 *
 * @package KRONTEX
 */

/* ============================================================
   VIEWPORT TOGGLE
   kr-desktop: shown above 1024 px.
   kr-mobile:  shown at 1024 px and below.
   ============================================================ */
.kr-mobile { display: none; }

@media (max-width: 1024px) {
	.kr-desktop { display: none; }
	.kr-mobile  { display: block; }
}

/* Scroll lock applied to <body> while the mobile drawer is open —
   prevents the page behind the popup from scrolling (toggled in chrome.js). */
html.kr-noscroll, body.kr-noscroll { overflow: hidden; }


/* ============================================================
   DESKTOP CHROME
   ============================================================ */
@scope (.kr-desktop) {

/* ============== TOKENS ============== */
:scope {
  --kr-red:      #C8102E;
  --kr-red-dk:   #9E0B23;
  --kr-black:    #0F0F0F;
  --kr-graphite: #2B2B2B;
  --kr-mute:     #7A7A7A;
  --kr-line:     #ECE7DC;
  --kr-line-2:   #E2DCCE;
  --kr-bg:       #FBF8F2;
  --kr-cream:    #F4EEE2;
  --kr-cream-2:  #EDE5D2;
  --kr-sand:     #E8DBC0;
  --kr-sage:     #A8B095;
  --kr-mint:     #DCE5D7;
  --kr-blush:    #F1DDD2;
  --kr-sky:      #D8E1E6;
  --kr-wood-1:   #C9A57A;
  --kr-wood-2:   #8B6B47;
  --kr-yellow:   #F2C94C;
  --kr-white:    #FFFFFF;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;
  --shadow-card: 0 6px 24px rgba(40, 28, 12, 0.06);
  --shadow-hov:  0 12px 32px rgba(40, 28, 12, 0.10);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
:scope {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--kr-graphite);
  background: var(--kr-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--kr-black); font-weight: 800; }
h1 { font-size: 60px; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: 38px; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 22px; line-height: 1.25; letter-spacing: -0.01em; }
h4 { font-size: 17px; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kr-red);
}

.container { max-width: 1660px; margin: 0 auto; padding: 0 32px; }
.shell { max-width: 100%; margin: 0 auto; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: 14px; font-weight: 700; font-family: var(--font-display);
  border-radius: var(--r-pill); border: 1.5px solid transparent;
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn--primary { background: var(--kr-red); color: #fff; }
.btn--primary:hover { background: var(--kr-red-dk); }
.btn--dark { background: var(--kr-black); color: #fff; }
.btn--dark:hover { background: #2B2B2B; }
.btn--outline { background: transparent; border-color: var(--kr-black); color: var(--kr-black); }
.btn--outline:hover { background: var(--kr-black); color: #fff; }
.btn--outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--kr-black); }

/* white light running around the button border */
.btn--primary, .btn--dark { position: relative; }
.btn--primary::after, .btn--dark::after {
  content: ""; position: absolute; inset: -1.5px; border-radius: inherit;
  padding: 2.5px; pointer-events: none; z-index: 1;
  background: conic-gradient(from var(--kr-beam),
      transparent 0deg, transparent 230deg,
      rgba(255,255,255,0.55) 285deg, #fff 315deg,
      rgba(255,255,255,0.55) 345deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  filter: drop-shadow(0 0 2.5px rgba(255,255,255,0.7));
  animation: kr-beam-spin 3.2s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary::after, .btn--dark::after { animation: none; opacity: 0; }
}
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 15px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--kr-black); padding-bottom: 2px;
  border-bottom: 1.5px solid var(--kr-black);
}
.link-arrow--white { color: #fff; border-color: #fff; }
.link-arrow:hover { color: var(--kr-red); border-color: var(--kr-red); }

/* ============== WOOD / STONE / INTERIOR TINTS ============== */
.wood {
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.10) 0, rgba(0,0,0,0.10) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 4px),
    var(--wood-grad);
}
.stone {
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.5), transparent 35%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,0.35), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(0,0,0,0.15), transparent 45%),
    var(--stone-grad);
}
.wd-1  { --wood-grad: linear-gradient(180deg, #C9A57A 0%, #B68C5E 30%, #A07747 65%, #7E5D38 100%); }
.wd-2  { --wood-grad: linear-gradient(180deg, #E8D2A9 0%, #D9BC8A 35%, #C9A878 70%, #B0925E 100%); }
.wd-3  { --stone-grad: linear-gradient(180deg, #DCD3C2 0%, #C8BEAA 50%, #B5AB95 100%); }
.wd-4  { --wood-grad: linear-gradient(180deg, #6E4B30 0%, #553722 40%, #3F2818 75%, #2A1A0F 100%); }
.wd-5  { --wood-grad: linear-gradient(180deg, #EFE6D1 0%, #E2D4B9 50%, #CFC09F 100%); }
.wd-6  { --wood-grad: linear-gradient(180deg, #9A8F7E 0%, #847866 40%, #6E6353 75%, #564D40 100%); }
.wd-7  { --wood-grad: linear-gradient(180deg, #E0B98A 0%, #CFA571 50%, #B8884F 100%); }
.wd-8  { --stone-grad: linear-gradient(180deg, #EDEAE2 0%, #DAD6CB 40%, #B8B2A4 90%); }
.wd-9  { --wood-grad: linear-gradient(180deg, #876143 0%, #6B4A30 40%, #4D3320 80%, #3A2616 100%); }
.wd-10 { --wood-grad: linear-gradient(180deg, #B07A52 0%, #94613E 40%, #794D30 75%, #5C3A24 100%); }
.wd-11 { --wood-grad: linear-gradient(180deg, #F3ECDC 0%, #E5DBC4 50%, #CFC1A1 100%); }
.wd-12 { --wood-grad: linear-gradient(180deg, #3D2A1F 0%, #271912 50%, #16100B 100%); }

.interior-living {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 220, 170, 0.45), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(40, 25, 15, 0.55), transparent 60%),
    linear-gradient(160deg, #6E4F33 0%, #4C3522 40%, #8B6B47 75%, #C9A57A 100%);
}
.interior-kitchen {
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 230, 200, 0.5), transparent 60%),
    linear-gradient(170deg, #4A372B 0%, #7B5A3F 50%, #C9A57A 100%);
}
.interior-kid {
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 240, 220, 0.55), transparent 60%),
    linear-gradient(150deg, #B89878 0%, #DCC09A 60%, #EFE6D1 100%);
}
.interior-office {
  background: radial-gradient(ellipse at 70% 30%, rgba(220, 220, 220, 0.4), transparent 60%),
    linear-gradient(170deg, #2A2622 0%, #4A4036 60%, #6A5C4C 100%);
}
.interior-heated {
  background: radial-gradient(ellipse at 40% 80%, rgba(255, 160, 120, 0.4), transparent 55%),
    linear-gradient(170deg, #6B3F26 0%, #8D5A35 60%, #B68C5E 100%);
}
.interior-warm {
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 210, 160, 0.45), transparent 60%),
    linear-gradient(180deg, #44301F 0%, #6C4A2E 60%, #A07747 100%);
}
.interior-bath {
  background: radial-gradient(ellipse at 60% 30%, rgba(220, 235, 245, 0.45), transparent 60%),
    linear-gradient(170deg, #3F4D55 0%, #6E7D85 60%, #A8B5BB 100%);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--kr-black);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  height: 40px;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
  letter-spacing: 0.01em;
}
.topbar__left { display: inline-flex; align-items: center; gap: 8px; }
.topbar__left svg { color: var(--kr-red); }
.topbar__right { display: flex; align-items: center; gap: 24px; }
.topbar__right > a, .topbar__right > span { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.8); }
.topbar__right .lang { letter-spacing: 0.06em; color: rgba(255,255,255,0.6); }
.topbar__right .lang b { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.header { background: #fff; }
.header__top {
  display: grid; grid-template-columns: 220px 1fr auto;
  align-items: center; gap: 40px; padding: 22px 32px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 52px; height: 52px; background: var(--kr-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 8.5px;
  letter-spacing: 0.08em; border-radius: var(--r-sm);
}
.logo__word {
  font-family: var(--font-display); font-weight: 800; letter-spacing: 0.08em;
  font-size: 20px; color: var(--kr-black);
}
.logo__word small {
  display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  color: var(--kr-mute); margin-top: 2px;
}

.searchbar {
  display: grid; grid-template-columns: 140px 1fr auto;
  border: 2px solid var(--kr-black); border-radius: var(--r-pill);
  background: #fff; overflow: hidden;
}
.searchbar__select {
  padding: 0 18px; display: flex; align-items: center; justify-content: space-between;
  gap: 8px; font-size: 13px; font-weight: 600; color: var(--kr-black);
  border-right: 1px solid var(--kr-line); background: var(--kr-bg);
}
.searchbar__input {
  border: 0; outline: 0; padding: 0 20px; font-size: 14px; height: 46px;
  font-family: var(--font-body); color: var(--kr-black); background: transparent;
}
.searchbar__btn {
  background: var(--kr-red); color: #fff;
  padding: 0 26px; height: 46px; display: inline-flex; align-items: center;
  gap: 8px; font-weight: 700; font-family: var(--font-display); font-size: 13px;
  letter-spacing: 0.04em;
}
.searchbar__btn:hover { background: var(--kr-red-dk); }

.header__tools { display: flex; align-items: center; gap: 16px; }
.tool {
  position: relative;
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--kr-black); font-size: 11px; font-weight: 600;
}
.tool svg { width: 24px; height: 24px; }
.tool:hover { color: var(--kr-red); }
.tool__badge {
  position: absolute; top: -2px; right: -8px;
  background: var(--kr-red); color: #fff;
  font-size: 10px; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: var(--r-pill); display: inline-flex; align-items: center;
  justify-content: center; padding: 0 5px; font-family: var(--font-display);
}
.tool__phone {
  text-align: left; flex-direction: row; gap: 10px; padding-left: 8px;
  border-left: 1px solid var(--kr-line); margin-left: 8px;
}
.tool__phone strong {
  display: block; font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: var(--kr-black); letter-spacing: 0.01em;
}
.tool__phone small { color: var(--kr-mute); font-size: 11px; font-weight: 500; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  border-top: 1px solid var(--kr-line);
  border-bottom: 1px solid var(--kr-line);
  background: #fff;
}
.navbar__inner {
  display: grid; grid-template-columns: 280px 1fr auto;
  align-items: stretch; gap: 32px;
}
.cats-btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 0 22px; height: 56px;
  background: var(--kr-black); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r-pill); margin: 8px 0;
}
.cats-btn svg { opacity: 0.85; }
.cats-btn .chev { transition: transform .25s ease; }
.cats.is-open .cats-btn .chev { transform: rotate(180deg); }

/* ============================================================
   MEGA MENU
   ============================================================ */
.cats { position: relative; }
.mega {
  position: absolute; top: calc(100% + 2px); left: 0; z-index: 60;
  width: 1160px;
  background: #fff; border: 1px solid var(--kr-line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-hov);
  display: grid; grid-template-columns: 264px 1fr;
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(0.99);
  transform-origin: top left;
  transition: opacity .24s ease, transform .24s cubic-bezier(.2,.8,.2,1), visibility .24s;
}
.cats.is-open .mega { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.mega__rail { background: var(--kr-cream); padding: 10px 0; min-height: 384px; }
.mega__cat { position: static; }
.mega__cat-label {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 22px; font-size: 14px; font-weight: 600; color: var(--kr-black);
  cursor: pointer; transition: background .15s, color .15s;
  border-left: 2px solid transparent;
}
.mega__cat-label .ic { width: 20px; height: 20px; color: var(--kr-graphite); flex-shrink: 0; }
.mega__cat-label .arr { margin-left: auto; opacity: .35; transition: transform .18s, opacity .18s; }
.mega__cat:hover > .mega__cat-label {
  background: #fff; color: var(--kr-red); border-left-color: var(--kr-red);
}
.mega__cat:hover > .mega__cat-label .ic { color: var(--kr-red); }
.mega__cat:hover > .mega__cat-label .arr { transform: translateX(4px); opacity: .85; }
.mega__cat--hot > .mega__cat-label { color: var(--kr-red); font-weight: 700; }
.mega__cat-tag {
  font-family: var(--font-display); font-weight: 800; font-size: 8px; letter-spacing: .08em;
  text-transform: uppercase; padding: 2px 5px; border-radius: 4px;
  background: var(--kr-red); color: #fff; margin-left: 6px;
}

.mega__panel {
  position: absolute; top: 0; left: 264px; right: 0; bottom: 0;
  padding: 26px 30px;
  display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 28px;
  background: #fff; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease;
  animation: megaFade .28s ease;
}
.mega__cat:first-child .mega__panel { opacity: 1; visibility: visible; pointer-events: auto; }
.mega__rail:hover .mega__panel { opacity: 0; visibility: hidden; pointer-events: none; }
.mega__cat:hover .mega__panel { opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
@keyframes megaFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.mega__head {
  grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 2px; border-bottom: 1px solid var(--kr-line);
}
.mega__head h4 {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--kr-black); letter-spacing: -0.01em;
}
.mega__head h4 span { color: var(--kr-red); }
.mega__seeall {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--kr-red);
}
.mega__left { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

.mega__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mega__col h5 {
  font-family: var(--font-display); font-weight: 800; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--kr-mute);
  margin-bottom: 12px;
}
.mega__links { display: flex; flex-direction: column; gap: 9px; }
.mega__links a {
  font-size: 13px; color: var(--kr-graphite); line-height: 1.2;
  display: flex; align-items: center; gap: 8px; transition: color .12s, transform .12s;
}
.mega__links a:hover { color: var(--kr-red); transform: translateX(2px); }
.mega__links a .ct { margin-left: auto; font-size: 11px; color: var(--kr-mute); font-weight: 600; }

.mega__prods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mega__prod {
  display: flex; gap: 11px; align-items: center; padding: 8px;
  border: 1px solid var(--kr-line); border-radius: var(--r-md);
  transition: border-color .15s, box-shadow .15s;
}
.mega__prod:hover { border-color: transparent; box-shadow: var(--shadow-card); }
.mega__prod-img { width: 54px; height: 54px; border-radius: var(--r-sm); flex-shrink: 0; }
.mega__prod-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mega__prod-cat {
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--kr-mute);
}
.mega__prod-name {
  font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--kr-black);
  line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mega__prod-price { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--kr-red); }
.mega__prod-price em { font-style: normal; font-weight: 500; font-size: 10px; color: var(--kr-mute); }

.mega__banner {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  min-height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: #fff;
}
.mega__banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.62) 100%); z-index: 1; }
.mega__banner > * { position: relative; z-index: 2; }
.mega__banner-eye {
  font-family: var(--font-display); font-weight: 800; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: #FFD7DE; margin-bottom: 8px;
}
.mega__banner h6 { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1.05; margin-bottom: 6px; }
.mega__banner p { font-size: 12px; color: rgba(255,255,255,0.82); margin-bottom: 14px; max-width: 90%; }
.mega__banner .btn { align-self: flex-start; }
.mega__banner .btn--white { background: #fff; color: var(--kr-black); }
.mega__banner .btn--white:hover { background: var(--kr-red); color: #fff; }
.mega__dots { position: absolute; top: 18px; right: 18px; z-index: 2; display: flex; gap: 6px; }
.mega__dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.45); }
.mega__dots i.on { background: #fff; width: 18px; border-radius: 4px; }
.cats.is-open .mega__dots i { animation: krMegaDot 6s infinite; }
.cats.is-open .mega__dots i:nth-child(1) { animation-delay: 0s; }
.cats.is-open .mega__dots i:nth-child(2) { animation-delay: 2s; }
.cats.is-open .mega__dots i:nth-child(3) { animation-delay: 4s; }
@keyframes krMegaDot {
  0%, 28% { background: #fff; width: 18px; border-radius: 4px; }
  34%, 100% { background: rgba(255,255,255,0.45); width: 7px; border-radius: 50%; }
}
.mega__banner { background-size: 150% 150%; }
.cats.is-open .mega__banner { animation: krBannerPan 16s ease-in-out infinite alternate; }
@keyframes krBannerPan { from { background-position: 0% 0%; } to { background-position: 100% 60%; } }
.mega__arrows { position: absolute; bottom: 18px; right: 18px; z-index: 2; display: flex; gap: 6px; }
.mega__arrows button {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.mega__arrows button:hover { background: rgba(255,255,255,0.34); }

/* ============================================================
   NAV LINKS
   ============================================================ */
.nav {
  display: flex; align-items: center; gap: 28px;
}
.nav a {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--kr-black);
}
.nav a:hover { color: var(--kr-red); }
.nav .new {
  display: inline-block; background: var(--kr-red); color: #fff; font-size: 9px;
  padding: 2px 6px; border-radius: 4px; vertical-align: middle; margin-left: 6px;
  letter-spacing: 0.1em;
}

.nav__extras {
  display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 600;
  color: var(--kr-graphite);
}
.nav__extras a { color: var(--kr-graphite); }
.nav__extras a:hover { color: var(--kr-red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--kr-black); color: rgba(255,255,255,0.7); margin-top: 80px; }
.footer__top {
  padding: 72px 32px 56px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer__brand .logo__word, .footer__brand .logo__word small { color: #fff; }
.footer__brand .logo__word small { color: rgba(255,255,255,0.55); }
.footer__brand p { font-size: 13px; color: rgba(255,255,255,0.6); max-width: 280px; margin: 18px 0 24px; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; font-size: 13px; }
.footer__contact .row { display: flex; align-items: center; gap: 12px; }
.footer__contact strong { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; }
.footer__contact small { color: rgba(255,255,255,0.55); }
.socials { display: flex; gap: 10px; }
.social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.social:hover { background: var(--kr-red); }

.footer__col h5 {
  font-family: var(--font-display); font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
  margin-bottom: 22px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer__col a:hover { color: #fff; }

.footer__pay {
  margin-top: 14px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.pay-cell {
  height: 28px; min-width: 44px; padding: 0 8px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  color: rgba(255,255,255,0.7); letter-spacing: 0.04em;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 32px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.footer__bottom .links { display: flex; gap: 28px; }
.footer__bottom a:hover { color: #fff; }

}  /* end @scope (.kr-desktop) */


/* ============================================================
   MOBILE CHROME
   ============================================================ */
@scope (.kr-mobile) {

/* ============== TOKENS ============== */
:scope {
  position: relative;
  --kr-red: #C8102E; --kr-red-dk: #9E0B23;
  --kr-black: #0F0F0F; --kr-graphite: #2B2B2B; --kr-mute: #7A7A7A;
  --kr-line: #ECE7DC; --kr-line-2: #E2DCCE;
  --kr-bg: #FBF8F2; --kr-cream: #F4EEE2; --kr-cream-2: #EDE5D2;
  --kr-sand: #E8DBC0; --kr-mint: #DCE5D7; --kr-blush: #F1DDD2; --kr-sky: #D8E1E6;
  --kr-yellow: #F2C94C; --kr-white: #FFFFFF;
  --r-sm: 6px; --r-md: 12px; --r-lg: 18px; --r-pill: 999px;
  --shadow-card: 0 6px 24px rgba(40, 28, 12, 0.06);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
:scope {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--kr-graphite); background: #fff;
  -webkit-font-smoothing: antialiased;
  width: 100%; max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--kr-black); font-weight: 800; }
h1 { font-size: 34px; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: 24px; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 17px; line-height: 1.25; }
h4 { font-size: 15px; }
.eyebrow {
  font-family: var(--font-display); font-size: 10px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--kr-red);
}
.container { padding: 0 16px; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 22px; font-size: 13px; font-weight: 700; font-family: var(--font-display);
  border-radius: var(--r-pill); border: 1.5px solid transparent;
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn--primary { background: var(--kr-red); color: #fff; }
.btn--dark { background: var(--kr-black); color: #fff; }
.btn--outline { background: transparent; border-color: var(--kr-black); color: var(--kr-black); }
.btn--outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn--block { width: 100%; }

/* white light running around the button border */
.btn--primary, .btn--dark { position: relative; }
.btn--primary::after, .btn--dark::after {
  content: ""; position: absolute; inset: -1.5px; border-radius: inherit;
  padding: 2.5px; pointer-events: none; z-index: 1;
  background: conic-gradient(from var(--kr-beam),
      transparent 0deg, transparent 230deg,
      rgba(255,255,255,0.55) 285deg, #fff 315deg,
      rgba(255,255,255,0.55) 345deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  filter: drop-shadow(0 0 2.5px rgba(255,255,255,0.7));
  animation: kr-beam-spin 3.2s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary::after, .btn--dark::after { animation: none; opacity: 0; }
}
.btn--sm { padding: 10px 16px; font-size: 12px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--kr-black); padding-bottom: 2px; border-bottom: 1.5px solid var(--kr-black);
}

/* ============== WOOD / STONE / INTERIOR TINTS ============== */
.wood {
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,0.10) 0, rgba(0,0,0,0.10) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 4px),
    var(--wood-grad);
}
.stone {
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.5), transparent 35%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,0.35), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(0,0,0,0.15), transparent 45%),
    var(--stone-grad);
}
.wd-1  { --wood-grad: linear-gradient(180deg, #C9A57A 0%, #B68C5E 30%, #A07747 65%, #7E5D38 100%); }
.wd-2  { --wood-grad: linear-gradient(180deg, #E8D2A9 0%, #D9BC8A 35%, #C9A878 70%, #B0925E 100%); }
.wd-3  { --stone-grad: linear-gradient(180deg, #DCD3C2 0%, #C8BEAA 50%, #B5AB95 100%); }
.wd-4  { --wood-grad: linear-gradient(180deg, #6E4B30 0%, #553722 40%, #3F2818 75%, #2A1A0F 100%); }
.wd-5  { --wood-grad: linear-gradient(180deg, #EFE6D1 0%, #E2D4B9 50%, #CFC09F 100%); }
.wd-6  { --wood-grad: linear-gradient(180deg, #9A8F7E 0%, #847866 40%, #6E6353 75%, #564D40 100%); }
.wd-7  { --wood-grad: linear-gradient(180deg, #E0B98A 0%, #CFA571 50%, #B8884F 100%); }
.wd-9  { --wood-grad: linear-gradient(180deg, #876143 0%, #6B4A30 40%, #4D3320 80%, #3A2616 100%); }
.wd-10 { --wood-grad: linear-gradient(180deg, #B07A52 0%, #94613E 40%, #794D30 75%, #5C3A24 100%); }
.wd-12 { --wood-grad: linear-gradient(180deg, #3D2A1F 0%, #271912 50%, #16100B 100%); }

.interior-living {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 220, 170, 0.45), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(40, 25, 15, 0.55), transparent 60%),
    linear-gradient(160deg, #6E4F33 0%, #4C3522 40%, #8B6B47 75%, #C9A57A 100%);
}
.interior-kitchen {
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 230, 200, 0.5), transparent 60%),
    linear-gradient(170deg, #4A372B 0%, #7B5A3F 50%, #C9A57A 100%);
}
.interior-kid {
  background: radial-gradient(ellipse at 30% 30%, rgba(255, 240, 220, 0.55), transparent 60%),
    linear-gradient(150deg, #B89878 0%, #DCC09A 60%, #EFE6D1 100%);
}
.interior-office {
  background: radial-gradient(ellipse at 70% 30%, rgba(220, 220, 220, 0.4), transparent 60%),
    linear-gradient(170deg, #2A2622 0%, #4A4036 60%, #6A5C4C 100%);
}
.interior-heated {
  background: radial-gradient(ellipse at 40% 80%, rgba(255, 160, 120, 0.4), transparent 55%),
    linear-gradient(170deg, #6B3F26 0%, #8D5A35 60%, #B68C5E 100%);
}
.interior-warm {
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 210, 160, 0.45), transparent 60%),
    linear-gradient(180deg, #44301F 0%, #6C4A2E 60%, #A07747 100%);
}
.interior-bath {
  background: radial-gradient(ellipse at 60% 30%, rgba(220, 235, 245, 0.45), transparent 60%),
    linear-gradient(170deg, #3F4D55 0%, #6E7D85 60%, #A8B5BB 100%);
}

/* ============================================================
   TOPBAR (mobile marquee)
   ============================================================ */
.topbar {
  background: var(--kr-black); color: rgba(255,255,255,0.85);
  font-size: 11px; height: 32px;
  display: flex; align-items: center;
  overflow: hidden; white-space: nowrap;
}
.topbar__track {
  display: flex; align-items: center; width: max-content;
  animation: topbar-scroll 18s linear infinite;
}
.topbar__marquee {
  display: inline-flex; align-items: center; gap: 8px; padding: 0 24px;
  flex-shrink: 0; white-space: nowrap;
}
.topbar__marquee svg { color: var(--kr-red); flex-shrink: 0; }
.topbar__sep { color: rgba(255,255,255,0.3); padding: 0 6px; }
@keyframes topbar-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar__track { animation: none; }
}

/* ============================================================
   DRAWER
   ============================================================ */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim {
  position: absolute; inset: 0; background: rgba(20,18,16,0.5);
  opacity: 0; transition: opacity .28s ease;
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 86%; max-width: 340px; background: #fff;
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 40px rgba(0,0,0,0.25);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--kr-line);
}
.drawer__close {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--kr-black);
}
.drawer__close:active { background: var(--kr-bg); }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 0 24px; }
.drawer__group { padding: 8px 0; }
.drawer__group + .drawer__group { border-top: 1px solid var(--kr-line); }
.drawer__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--kr-mute); padding: 10px 20px 6px;
}
.drawer__nav { display: flex; flex-direction: column; }
.drawer__link {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 20px; font-size: 15px; font-weight: 500; color: var(--kr-black);
  border-left: 2px solid transparent;
}
.drawer__link:active { background: var(--kr-bg); }
.drawer__link--hot { color: var(--kr-red); font-weight: 700; border-left-color: var(--kr-red); }
.drawer__tag {
  font-family: var(--font-display); font-weight: 800; font-size: 9px; letter-spacing: .06em;
  color: #fff; background: var(--kr-red); padding: 2px 6px; border-radius: 3px;
}
.drawer__tag--dark { background: var(--kr-black); }
.drawer__phone {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 16px 0; padding: 14px 16px;
  background: var(--kr-cream); border-radius: var(--r-md); color: var(--kr-black);
}
.drawer__phone svg { color: var(--kr-red); flex-shrink: 0; }
.drawer__phone strong { display: block; font-size: 15px; }
.drawer__phone small { display: block; font-size: 11px; color: var(--kr-mute); margin-top: 2px; }

/* collection rows (level 1) */
.drawer__crow {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 10px 18px 10px 20px; text-align: left; color: var(--kr-black);
  background: none; border: 0; cursor: pointer; font: inherit;
}
.drawer__crow:active { background: var(--kr-bg); }
.drawer__cthumb {
  width: 44px; height: 44px; border-radius: 9px; flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.drawer__cmeta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.drawer__cname {
  font-size: 15px; font-weight: 600; line-height: 1.2;
  display: flex; align-items: center; gap: 7px;
}
.drawer__cdesc { font-size: 12px; color: var(--kr-mute); }
.drawer__chev { color: var(--kr-mute); flex-shrink: 0; }
.drawer__link .ct {
  margin-left: auto; color: var(--kr-mute); font-size: 13px; font-weight: 500;
}

/* level-2 sub views */
.drawer__view--sub {
  position: absolute; inset: 0; z-index: 5; background: #fff;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.drawer__view--sub.is-active { transform: translateX(0); visibility: visible; }
.drawer__subhead {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 10px 10px 6px; border-bottom: 1px solid var(--kr-line); flex-shrink: 0;
}
.drawer__back {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 8px 10px; font-size: 14px; font-weight: 600; color: var(--kr-black);
  background: none; border: 0; cursor: pointer; border-radius: var(--r-pill);
}
.drawer__back:active { background: var(--kr-bg); }
.drawer__subtitle {
  flex: 1; font-family: var(--font-display); font-weight: 800; font-size: 17px;
}
.drawer__subbody { flex: 1; overflow-y: auto; padding-bottom: 28px; }

/* thematic slider inside a sub view */
.dslider { padding: 14px 0 4px; }
.dslider__track {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 16px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.dslider__track::-webkit-scrollbar { display: none; }
.dbanner {
  position: relative; flex: 0 0 86%; scroll-snap-align: center;
  min-height: 156px; border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; color: #fff;
}
.dbanner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.58) 100%);
}
.dbanner > * { position: relative; z-index: 1; }
.dbanner__eye {
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase; opacity: .92;
}
.dbanner__eye--red { color: var(--kr-red); opacity: 1; }
.dbanner__title { font-family: var(--font-display); font-weight: 800; font-size: 21px; margin-top: 4px; }
.dbanner__title--dark { color: var(--kr-black); }
.dbanner__txt { font-size: 12.5px; line-height: 1.4; opacity: .92; margin-top: 5px; max-width: 92%; }
.dbanner__txt--dark { color: rgba(15,15,15,0.72); opacity: 1; }
.dbanner__cta {
  margin-top: 11px; align-self: flex-start; font-size: 12px; font-weight: 700;
  background: #fff; color: var(--kr-black); padding: 7px 14px; border-radius: var(--r-pill);
}
.dbanner__cta--red { background: var(--kr-red); color: #fff; }
.dslider__dots { display: flex; gap: 6px; justify-content: center; padding: 12px 0 2px; }
.dslider__dots i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--kr-line);
  transition: width .2s ease, background .2s ease;
}
.dslider__dots i.on { background: var(--kr-red); width: 18px; border-radius: 3px; }

.drawer__seeall {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin: 10px 16px 0; padding: 13px 16px;
  background: var(--kr-cream); border-radius: var(--r-md);
  font-weight: 700; font-size: 14px; color: var(--kr-black);
}
.drawer__seeall svg { color: var(--kr-red); }

/* ============================================================
   HEADER (mobile sticky)
   ============================================================ */
.header { background: #fff; border-bottom: 1px solid var(--kr-line); position: sticky; top: 0; z-index: 50; }
.header__row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
}
.icon-btn {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--kr-black); position: relative;
}
.icon-btn:active { background: var(--kr-bg); }
.icon-btn__badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--kr-red); color: #fff; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700; font-family: var(--font-display);
  display: inline-flex; align-items: center; justify-content: center;
}
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo__mark {
  width: 36px; height: 36px; background: var(--kr-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 7px;
  letter-spacing: 0.06em; border-radius: var(--r-sm);
}
.logo__word { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.06em; font-size: 15px; color: var(--kr-black); }
.header__spacer { flex: 1; }

/* mobile searchbar (inline form) */
.searchbar {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--kr-black); border-radius: var(--r-pill);
  background: #fff; padding: 0 14px 0 16px; margin: 0 16px 12px;
  height: 44px;
}
.searchbar svg { color: var(--kr-black); flex-shrink: 0; }
.searchbar__placeholder {
  flex: 1; font-size: 13px; color: var(--kr-mute);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.searchbar__filter {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--kr-black); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================================
   CHIPNAV
   ============================================================ */
.chipnav {
  display: flex; gap: 8px; padding: 4px 16px 14px;
  overflow-x: auto; scrollbar-width: none;
}
.chipnav::-webkit-scrollbar { display: none; }
.chipnav { cursor: grab; }
.chipnav.is-dragging { cursor: grabbing; }
.chipnav.is-dragging .chip { pointer-events: none; }
.chip {
  flex-shrink: 0; padding: 9px 16px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.04em; color: var(--kr-black);
  background: var(--kr-bg); border: 1px solid var(--kr-line);
  display: inline-flex; align-items: center; gap: 6px;
}
.chip--active { background: var(--kr-black); color: #fff; border-color: var(--kr-black); }
.chip--red { color: var(--kr-red); border-color: rgba(200,16,46,0.25); background: rgba(200,16,46,0.06); }
.chip .new {
  background: var(--kr-red); color: #fff; font-size: 8px;
  padding: 2px 5px; border-radius: 3px; letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER (mobile)
   ============================================================ */
.footer { background: var(--kr-black); color: rgba(255,255,255,0.7); margin-top: 48px; }
.footer__top { padding: 36px 20px 24px; }
.footer__brand .logo__word { color: #fff; }
.footer__brand p { font-size: 12px; color: rgba(255,255,255,0.6); margin: 14px 0 18px; }
.footer__contact { font-size: 13px; margin-bottom: 18px; }
.footer__contact strong { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #fff; display: block; margin-bottom: 4px; }
.footer__contact small { color: rgba(255,255,255,0.55); font-size: 11px; }
.socials { display: flex; gap: 8px; margin-bottom: 24px; }
.social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: inline-flex;
  align-items: center; justify-content: center; color: #fff;
}

/* footer accordion */
.footer__acc { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__acc summary {
  list-style: none; cursor: pointer;
  padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
}
.footer__acc summary::-webkit-details-marker { display: none; }
.footer__acc summary::after {
  content: ""; width: 10px; height: 10px;
  border-right: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
  transform: rotate(45deg) translate(-2px, -2px);
}
.footer__acc[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.footer__acc ul { list-style: none; padding: 0 0 16px; display: flex; flex-direction: column; gap: 10px; }
.footer__acc a { color: rgba(255,255,255,0.65); font-size: 13px; }

.footer__pay { padding: 18px 0; display: flex; gap: 6px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1); }
.pay-cell {
  height: 28px; min-width: 44px; padding: 0 8px;
  background: rgba(255,255,255,0.08); border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 9px;
  color: rgba(255,255,255,0.85); letter-spacing: 0.05em;
}

.footer__bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 10px; color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   STICKY CTA + TABBAR
   ============================================================ */
.sticky-cta {
  position: sticky; bottom: 0; z-index: 60;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--kr-line);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 8px 12px env(safe-area-inset-bottom, 8px);
  gap: 6px;
}
.sticky-cta__btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 6px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.04em; color: var(--kr-graphite);
}
.sticky-cta__btn--primary {
  background: var(--kr-red); color: #fff;
}
.sticky-cta__btn--primary svg { color: #fff; }

.tabbar {
  position: sticky; bottom: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--kr-line);
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
}
.tabbar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 10px; font-weight: 600; color: var(--kr-graphite);
  padding: 4px 2px; position: relative;
}
.tabbar a.is-active { color: var(--kr-red); }
.tabbar a .dot {
  position: absolute; top: 4px; right: 18%;
  width: 6px; height: 6px; border-radius: 50%; background: var(--kr-red);
}

}  /* end @scope (.kr-mobile) */
