/* KIANO storefront — neutral base, single teal accent, Outfit + Manrope */
:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-2: #f3f4f5;
  --ink: #0b0c0e;
  --ink-2: #2b2f33;
  --muted: #61676e;
  --line: #e6e7ea;
  --line-2: #d9dbdf;
  --accent: #0e8a76;
  --accent-ink: #0a6b5b;
  --accent-soft: #e7f4f1;
  --sale: #c0392b;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,12,14,.05), 0 1px 1px rgba(11,12,14,.04);
  --shadow-md: 0 18px 40px -22px rgba(11,12,14,.30);
  --container: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Outfit", system-ui, sans-serif; line-height: 1.1; margin: 0; letter-spacing: -0.02em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 760px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 14px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; border-radius: 8px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), background .2s var(--ease), border-color .2s; white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 9px 15px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.topbar { background: var(--ink); color: #e9eaec; font-size: 13px; }
.topbar-inner { display: flex; gap: 18px; justify-content: center; align-items: center; padding: 8px 0; flex-wrap: wrap; }
.topbar-sep { color: #9aa0a6; }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 20px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-family: "Outfit", sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.03em; color: var(--ink); flex-shrink: 0; }
.logo-mark { width: 26px; height: 26px; color: var(--accent); }
.brand-text { line-height: 1; }
.brand-logo { width: 190px; height: 40px; object-fit: cover; object-position: center; display: block; }
@media (max-width: 560px) { .brand-logo { width: 150px; height: 34px; } }
.section-cta { text-align: center; margin-top: 32px; }
.breadcrumb-wrap { padding-top: 18px; }
.main-nav { display: flex; gap: 4px; margin-left: 8px; }
.nav-link { padding: 8px 13px; border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--ink-2); transition: background .2s, color .2s; }
.nav-link:hover { background: var(--surface-2); color: var(--ink); }
.nav-link.is-active { background: var(--accent-soft); color: var(--accent-ink); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; padding: 8px 20px 16px; border-top: 1px solid var(--line); }
.mobile-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 600; }
.mobile-nav.open { display: flex; }

/* ---------- hero ---------- */
.hero { padding: 56px 0 40px; background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-block; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-soft); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
.hero .lead { font-size: 1.15rem; color: var(--muted); max-width: 48ch; margin: 18px 0 26px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points { list-style: none; display: flex; gap: 22px; padding: 0; margin: 28px 0 0; flex-wrap: wrap; }
.hero-points li { position: relative; padding-left: 22px; font-weight: 600; font-size: 14px; color: var(--ink-2); }
.hero-points li::before { content: ""; position: absolute; left: 0; top: 50%; width: 12px; height: 12px; margin-top: -6px; border-radius: 50%; background: var(--accent); box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--accent); }
.hero-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-tile { display: flex; flex-direction: column; justify-content: flex-end; min-height: 150px; padding: 20px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); transition: transform .2s var(--ease), box-shadow .2s; overflow: hidden; position: relative; }
.hero-tile::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 100% 0%, var(--accent-soft) 0%, transparent 55%); opacity: .9; }
.hero-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hero-tile-name { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.2rem; position: relative; }
.hero-tile-sub { font-size: 14px; color: var(--muted); position: relative; }
.tile-0 { background: linear-gradient(150deg, #0f1113, #1c2024); color: #fff; }
.tile-0 .hero-tile-sub { color: #aab0b6; }
.tile-0::after { background: radial-gradient(120% 80% at 100% 0%, rgba(14,138,118,.5) 0%, transparent 55%); }

/* ---------- sections ---------- */
.section { padding: 52px 0; }
.section--alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; }
.link-more { font-weight: 600; color: var(--accent-ink); }
.link-more:hover { text-decoration: underline; }

/* category strip */
.cat-strip { display: flex; gap: 12px; flex-wrap: wrap; }
.cat-pill { display: inline-flex; flex-direction: column; padding: 14px 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); font-weight: 600; transition: border-color .2s, transform .15s var(--ease); }
.cat-pill small { font-weight: 500; color: var(--muted); font-size: 13px; }
.cat-pill:hover { border-color: var(--ink); transform: translateY(-2px); }
.cat-pill.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-pill.is-active small { color: #b9bdc1; }
.cat-strip--filters { margin-bottom: 24px; }
.cat-strip--filters .cat-pill { flex-direction: row; }

/* ---------- product grid + cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-products { grid-template-columns: repeat(4, 1fr); }
.card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card-media { position: relative; aspect-ratio: 4 / 3; background: var(--surface-2); }
.card-thumb { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-cat { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-ink); }
.card-title { font-size: 1.02rem; font-weight: 600; font-family: "Outfit", sans-serif; }
.badge { position: absolute; top: 12px; z-index: 2; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 12px; padding: 5px 10px; border-radius: 999px; }
.badge--sale { left: 12px; background: var(--sale); color: #fff; }
.badge--out { right: 12px; background: var(--ink); color: #fff; }

/* placeholder thumb */
.thumb--ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: linear-gradient(135deg, var(--surface-2), #e9ecee); color: #b7bcc1; }
.thumb--ph .ph-mark { width: 34px; height: 34px; color: var(--accent); opacity: .7; }
.thumb--ph .ph-name { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 13px; color: #9aa0a6; padding: 0 10px; text-align: center; }

/* price */
.price { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
.price-now { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.price-was { font-size: .92rem; color: var(--muted); text-decoration: line-through; }
.price--lg .price-now { font-size: 2rem; }

/* ---------- listing ---------- */
.listing-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin: 18px 0 22px; flex-wrap: wrap; }
.listing-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.search { display: flex; gap: 8px; }
.search input { padding: 11px 15px; border: 1px solid var(--line-2); border-radius: 999px; font: inherit; min-width: 220px; background: var(--surface); }
.search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.result-count { margin-bottom: 18px; }
.empty { text-align: center; padding: 60px 20px; border: 1px dashed var(--line-2); border-radius: var(--radius-lg); }
.empty p { font-size: 1.1rem; margin-bottom: 18px; }

/* breadcrumbs */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { color: var(--line-2); }
.breadcrumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- product page ---------- */
.product-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.gallery { position: sticky; top: 96px; }
.gallery-main { aspect-ratio: 1 / 1; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.gallery-ph { aspect-ratio: 1/1; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb { width: 72px; height: 72px; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; background: var(--surface); cursor: pointer; padding: 0; transition: border-color .2s; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.gallery-thumb.is-active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.product-info h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 8px 0 12px; }
.product-info .card-cat { font-size: 13px; }
.product-info .lead { color: var(--muted); font-size: 1.05rem; }
.stock { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; margin: 16px 0; }
.stock .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.stock--outofstock { color: var(--sale); }
.stock--outofstock .dot { background: var(--sale); }
.highlights { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.highlights li { position: relative; padding-left: 26px; }
.highlights li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.buy-box { display: flex; gap: 12px; margin: 24px 0 18px; flex-wrap: wrap; }
.assurances { list-style: none; padding: 16px 0 0; margin: 8px 0 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--muted); font-size: 14px; }
.assurances li { position: relative; padding-left: 16px; }
.assurances li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.prose { max-width: 70ch; margin-top: 44px; }
.prose h2 { font-size: 1.5rem; margin-bottom: 14px; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 6px; }

.specs { margin-top: 44px; }
.specs h2 { font-size: 1.5rem; margin-bottom: 16px; }
.spec-table { width: 100%; border-collapse: collapse; max-width: 700px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 42%; color: var(--muted); font-weight: 600; }
.spec-table tr:nth-child(odd) { background: var(--surface); }
.related { margin-top: 56px; }

/* value props */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value p { margin: 0; font-size: 14px; }

/* contact */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.contact-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.contact-link { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--accent-ink); display: inline-block; margin: 8px 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #c7cacd; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding: 54px 20px 36px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .muted { color: #9aa0a6; max-width: 36ch; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; padding: 5px 0; color: #c7cacd; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; flex-wrap: wrap; }
.footer-bottom .muted { color: #8a9096; }
.brand--footer .logo-mark { color: var(--accent); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .product-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery { position: static; }
}
@media (max-width: 640px) {
  .grid-products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero { padding: 36px 0 28px; }
  .section { padding: 38px 0; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .listing-head { align-items: stretch; }
  .search { width: 100%; }
  .search input { flex: 1; min-width: 0; }
}
@media (max-width: 420px) {
  .grid-products { grid-template-columns: 1fr 1fr; }
}

/* ====================== header icons + search bar ====================== */
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid transparent; background: transparent; color: var(--ink); cursor: pointer; transition: background .2s; }
.icon-btn:hover { background: var(--surface-2); }

/* cart link + badge */
.cart-link { position: relative; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 5px; box-sizing: border-box;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Outfit", sans-serif; font-weight: 700; font-size: 11px; line-height: 1;
  color: #fff; background: var(--accent); border-radius: 999px;
  box-shadow: 0 0 0 2px var(--surface);
  pointer-events: none;
}
.cart-count[hidden] { display: none; }
.search-bar { border-top: 1px solid var(--line); background: var(--surface); animation: dropdown .25s var(--ease); }
.search-bar[hidden] { display: none; }
.search-bar-inner { display: flex; gap: 10px; padding: 14px 0; }
.search-bar-inner input { flex: 1; padding: 12px 16px; border: 1px solid var(--line-2); border-radius: 999px; font: inherit; background: var(--surface); }
.search-bar-inner input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
@keyframes dropdown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f0f1f2; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }

/* ====================== hero carousel ====================== */
.hero-carousel { position: relative; overflow: hidden; background: var(--ink); }
.carousel-track { display: flex; transition: transform .55s var(--ease); will-change: transform; }
.cslide { flex: 0 0 100%; min-width: 100%; }
.cslide-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; min-height: 480px; padding: 40px 20px; }
.cslide-copy .eyebrow { margin-bottom: 16px; }
.cslide-copy h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; line-height: 1.04; }
.cslide-copy p { font-size: 1.12rem; max-width: 46ch; margin: 16px 0 26px; }
.cslide-visual { display: flex; align-items: center; justify-content: center; }
.cslide-device { display: block; width: 100%; max-width: 460px; aspect-ratio: 16 / 10; border-radius: 18px; border: 1px solid rgba(255,255,255,.14); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 30px 60px -30px rgba(0,0,0,.6); }

/* slide themes */
.cslide--tv { background: radial-gradient(120% 130% at 80% 0%, #1b2a2b 0%, #0c0e10 55%); color: #f4f6f7; }
.cslide--tv .eyebrow { background: rgba(14,138,118,.22); color: #6fe0cc; }
.cslide--tv .cslide-copy p { color: #b9c0c4; }
.cslide--tv .cslide-device { background: linear-gradient(135deg, #11181c, #0a1f25 60%, #0e8a76 140%); }

.cslide--kid { background: linear-gradient(120deg, #fdeef0 0%, #eaf1fb 100%); color: #14181c; }
.cslide--kid .eyebrow { background: #fff; color: var(--accent-ink); }
.cslide--kid .cslide-copy p { color: #5b6168; }
.cslide--kid .cslide-device { background: linear-gradient(135deg, #f6c9d4, #bcd4f2); border-color: rgba(0,0,0,.06); box-shadow: 0 30px 60px -30px rgba(80,90,120,.5); }

.cslide--pet { background: radial-gradient(120% 130% at 10% 10%, #143b35 0%, #0c1412 60%); color: #f1f5f3; }
.cslide--pet .eyebrow { background: rgba(217,160,80,.2); color: #f0c486; }
.cslide--pet .cslide-copy p { color: #b6c2bd; }
.cslide--pet .cslide-device { background: linear-gradient(135deg, #14302b, #d9a050 160%); }

.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.3); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(4px); transition: background .2s; z-index: 3; }
.carousel-arrow:hover { background: rgba(0,0,0,.55); }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; gap: 8px; justify-content: center; z-index: 3; }
.carousel-dot { width: 9px; height: 9px; border-radius: 999px; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: width .25s var(--ease), background .2s; }
.carousel-dot.is-active { width: 26px; background: #fff; }
.cslide--kid ~ .carousel-dots .carousel-dot { } /* dots stay light over any slide */

/* ====================== bento categories ====================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 16px; grid-auto-flow: dense; }
.bento-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; display: flex; align-items: flex-end; padding: 22px; color: #fff; background-size: cover; background-position: center; border: 1px solid var(--line); transition: transform .2s var(--ease), box-shadow .25s; isolation: isolate; }
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,12,14,.05) 25%, rgba(11,12,14,.78) 100%); }
.bento-card-body { position: relative; display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
.bento-cat { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.35rem; letter-spacing: -.02em; }
.bento-lg .bento-cat { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.bento-tag { font-size: 14px; opacity: .9; }
.bento-cta { margin-top: 8px; }
/* gradient fallbacks per category (when no product image yet) */
.bento-theme-telewizory { background: linear-gradient(150deg, #1c2733, #0c1116); }
.bento-theme-projektory { background: linear-gradient(150deg, #143b35, #0c1a17); }
.bento-theme-smartwatche { background: linear-gradient(150deg, #23282d, #0e1113); }
.bento-theme-tablety { background: linear-gradient(150deg, #2a2620, #131110); }
.bento-theme-oczyszczacze-powietrza { background: linear-gradient(150deg, #16403a, #0c1c19); }
.bento-theme-za-kuche-i-kotka { background: linear-gradient(150deg, #3a2a18, #15100a); }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 860px) {
  .cslide-visual { display: none; }
  .cslide-inner { grid-template-columns: 1fr; min-height: 380px; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: 170px; }
  .bento-lg { grid-column: span 1; }
  .carousel-arrow { display: none; }
  .cslide-inner { min-height: 320px; padding: 30px 20px; }
}

/* ====================== single-product TV landing ====================== */
.tv-hero { padding: 48px 0 56px; background: linear-gradient(180deg, #fff, var(--bg)); }
.tv-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.tv-hero-media { background: radial-gradient(120% 100% at 50% 0%, #fff, var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.tv-hero-media img { width: 100%; height: auto; object-fit: contain; }
.tv-hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; margin: 12px 0 0; }
.tv-hero-copy .lead { font-size: 1.1rem; color: var(--muted); margin: 14px 0 22px; max-width: 48ch; }
.size-picker { margin: 0 0 18px; }
.size-picker-label { display: block; font-weight: 600; font-size: 13px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.size-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 15px; padding: 10px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); color: var(--ink); cursor: pointer; transition: transform .12s var(--ease), background .2s, border-color .2s, color .2s; }
.size-btn:hover { border-color: var(--ink); }
.size-btn:active { transform: translateY(1px); }
.size-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.tv-price { display: flex; align-items: baseline; gap: 10px; margin: 6px 0; }
.tv-meta { font-size: 14px; margin: 0 0 18px; }
.buy-box--center { justify-content: center; }

/* feature rows */
.features { display: flex; flex-direction: column; gap: 36px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.feature-row--reverse .feature-media { order: 2; }
.feature-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #0b0c0e; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 10; }
.feature-copy h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 12px; }
.feature-copy p { color: var(--muted); font-size: 1.05rem; max-width: 52ch; }

/* price cards */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: transform .15s var(--ease), box-shadow .2s; }
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card-size { font-family: "Outfit", sans-serif; font-weight: 800; font-size: 1.6rem; }
.price-card-res { font-size: 13px; }
.price-card-price { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.2rem; margin-top: 4px; }
.price-card-price s { color: var(--muted); font-weight: 500; font-size: .9rem; }
.price-card-stock { font-size: 13px; font-weight: 600; }
.price-card-stock.in { color: var(--accent-ink); }
.price-card-stock.out { color: var(--sale); }
.price-card .btn { margin-top: 10px; align-self: stretch; }

/* ports */
.ports-title { margin: 32px 0 12px; font-size: 1.2rem; }
.ports-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.ports-list li { position: relative; padding-left: 16px; color: var(--ink-2); }
.ports-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); aspect-ratio: 1 / 1; display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }

/* order */
.order-cta { text-align: center; }
.order-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.order-inner .muted { margin: 10px 0 22px; }

.footer-grid--3 { grid-template-columns: 1.6fr 1fr 1fr; }

@media (max-width: 900px) {
  .tv-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; gap: 16px; }
  .feature-row--reverse .feature-media { order: 0; }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .price-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ports-list { grid-template-columns: 1fr; }
}
