@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap");

:root {
  --vk-bg-main: #FFFFFF;
  --vk-bg-soft: #F8FAFC;
  --vk-bg-cream: #FCF7EF;
  --vk-bg-warm: #FFF8EC;
  --vk-surface: #FFFFFF;
  --vk-text-main: #0F172A;
  --vk-text-body: #1F2937;
  --vk-text-muted: #64748B;
  --vk-text-light: #94A3B8;
  --vk-navy: #0F172A;
  --vk-ink: #1F2A2E;
  --vk-yellow: #FFD12A;
  --vk-yellow-soft: #FFF4BF;
  --vk-buy: #FF9F1C;
  --vk-buy-hover: #F97316;
  --vk-buy-text: #FFFFFF;
  --vk-love: #EF4444;
  --vk-love-soft: #FEE2E2;
  --vk-love-border: #FCA5A5;
  --vk-border: #E5E7EB;
  --vk-border-soft: #F1F5F9;
  --vk-shadow-card: 0 12px 30px rgba(15, 23, 42, 0.06);
  --vk-shadow-hover: 0 18px 45px rgba(15, 23, 42, 0.10);
  --vk-footer: #0F172A;
  --vk-header: #FFFFFF;
  --vk-header-text: #142033;
  --vk-footer-text: #FFFFFF;
  --vk-footer-muted: #C8D0DC;

  --font-main: "Be Vietnam Pro", Arial, sans-serif;
  --color-white: var(--vk-surface);
  --color-bg: var(--vk-bg-soft);
  --color-cream: var(--vk-bg-cream);
  --color-blue-soft: #EFF6FF;
  --color-orange-soft: #FFF3E0;
  --color-green-soft: #EAF6EE;
  --color-heading: var(--vk-text-main);
  --color-text: var(--vk-text-body);
  --color-muted: var(--vk-text-muted);
  --color-subtle: var(--vk-text-light);
  --color-primary: #2563EB;
  --color-primary-hover: #1D4ED8;
  --color-accent: var(--vk-buy);
  --color-accent-hover: var(--vk-buy-hover);
  --color-navy: var(--vk-navy);
  --color-navy-soft: var(--vk-ink);
  --color-border: var(--vk-border);
  --color-border-soft: var(--vk-border-soft);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-card: var(--vk-shadow-card);
  --shadow-hover: var(--vk-shadow-hover);
  --container: 1200px;

  --site-ink: var(--color-text);
  --site-muted: var(--color-muted);
  --site-line: var(--color-border);
  --site-soft: var(--color-border-soft);
  --site-brand: var(--color-primary);
  --site-brand-2: var(--color-accent);
  --site-warm: var(--color-accent);
  --site-hot: var(--color-accent-hover);
  --site-white: var(--color-white);
  --site-radius: var(--radius-lg);
  --site-shadow: var(--shadow-card);
  --site-container: var(--container);
  --site-font-base: 14.5px;
  --site-font-small: .84rem;
  --site-font-nav: .86rem;
  --site-weight-strong: 700;
  --site-weight-bold: 760;
}

/* V-Kid35 customer experience: shared cart drawer and footer */
.site-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 10020;
  visibility: hidden;
  pointer-events: none;
}
.site-cart-drawer[aria-hidden="false"] { visibility: visible; pointer-events: auto; }
.site-cart-drawer__backdrop { position: absolute; inset: 0; border: 0; background: rgba(15, 23, 42, .42); opacity: 0; transition: opacity 240ms ease; }
.site-cart-drawer__panel { position: absolute; inset: 0 0 0 auto; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; width: min(440px, 100vw); height: 100%; padding: 0; background: #fff; box-shadow: -14px 0 36px rgba(20,32,51,.12); transform: translateX(100%); transition: transform 240ms ease; }
.site-cart-drawer[aria-hidden="false"] .site-cart-drawer__backdrop { opacity: 1; }
.site-cart-drawer[aria-hidden="false"] .site-cart-drawer__panel { transform: translateX(0); }
.site-cart-drawer-open { overflow: hidden !important; }
.site-cart-drawer__head { display: flex; align-items: center; justify-content: space-between; min-height: 82px; padding: 16px 20px; border-bottom: 1px solid #e5e7eb; }
.site-cart-drawer__head span { display: flex; align-items: baseline; gap: 8px; color: #142033; font-size: 20px; font-weight: 800; }
.site-cart-drawer__head span b,.site-cart-drawer__head small { color: #667085; font-size: 12px; font-weight: 500; }
.site-cart-drawer__head small { display: block; margin-top: 4px; }
.site-cart-drawer__head small strong { color: #ff8a00; }
.site-cart-drawer__head button { width: 44px; height: 44px; border: 1px solid #e5e7eb; border-radius: 12px; background: #f7f8fa; color: #142033; font-size: 26px; cursor: pointer; }
.site-cart-drawer__body { min-height: 0; overflow-y: auto; padding: 8px 20px; }
.site-cart-drawer__empty { display: grid; min-height: 100%; place-content: center; justify-items: center; gap: 9px; padding: 30px; text-align: center; }
.site-cart-drawer__empty[hidden] { display: none; }
.site-cart-drawer__empty-icon { font-size: 42px; }
.site-cart-drawer__empty strong { color: #142033; font-size: 17px; }
.site-cart-drawer__empty > span:not(.site-cart-drawer__empty-icon) { color: #667085; }
.site-cart-drawer__empty .site-btn { margin-top: 8px; min-height: 44px; }
.site-cart-drawer__list { overflow: visible; padding: 0; }
.site-cart-drawer__list .site-cart-item { position: relative; display: grid; grid-template-columns: 80px minmax(0,1fr); gap: 12px; padding: 16px 30px 16px 0; border-bottom: 1px solid #f1f5f9; }
.site-cart-drawer__list .site-cart-item img { width: 80px; height: 80px; border-radius: 12px; background: #fcf6ec; object-fit: contain; }
.site-cart-drawer__list .site-cart-item h3 { display: -webkit-box; margin: 0 0 5px; overflow: hidden; color: #263241; font-size: 14px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.site-cart-drawer__list .site-cart-item p { margin: 0 0 5px; color: #667085; font-size: 12px; }
.site-cart-drawer__list .site-cart-item strong { color: #ff8a00; font-size: 14px; }
.site-cart-item__controls { grid-column: 2; display: inline-grid; grid-template-columns: 34px 46px 34px; width: max-content; overflow: hidden; border: 1px solid #e5e7eb; border-radius: 10px; }
.site-cart-item__controls button,.site-cart-item__controls input { width: auto; height: 34px; margin: 0; border: 0; background: #fff; text-align: center; }
.site-cart-item__controls input { border-inline: 1px solid #e5e7eb; }
.site-cart-drawer__list .site-cart-item .site-cart-item__remove { position: absolute; top: 14px; right: 0; grid-column: auto; margin: 0; padding: 6px; border: 0; background: transparent; color: #d92d20; font-size: 12px; cursor: pointer; }
.site-cart-drawer__foot { display: block; padding: 16px 20px 20px; border-top: 1px solid #e5e7eb; background: #fff; }
.site-cart-drawer__foot[hidden] { display: none; }
.site-cart-drawer__subtotal { display: flex; justify-content: space-between; margin-bottom: 12px; color: #263241; }
.site-cart-drawer__subtotal strong { color: #ff8a00; font-size: 20px; }
.site-cart-drawer__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.site-cart-drawer__actions .site-btn { display: flex; height: 46px; min-height: 46px; align-items: center; justify-content: center; padding: 0 12px; border-radius: 11px; font-weight: 700; }
.site-cart-drawer__actions .site-btn--ghost { border: 1px solid #e5e7eb; background: #f7f8fa; color: #142033; }
.site-cart-drawer__actions .site-btn--checkout { border: 1px solid #ff8a00; background: #ff8a00; color: #fff; }
.site-cart-drawer__actions .site-btn--checkout:hover { background: #e97800; }

.site-footer { margin-top: 42px; padding: 48px 0 0; background: #142033; color: #c8d0dc; }
.site-footer__grid { display: grid; grid-template-columns: 1.35fr repeat(3,minmax(0,1fr)); gap: 34px; }
.site-footer__logo { width: 72px; height: 72px; margin-bottom: 12px; border-radius: 16px; background: #fcf6ec; object-fit: contain; }
.site-footer h2,.site-footer h3,.site-footer__brand strong { color: #fff; }
.site-footer__brand strong { display: block; margin-bottom: 9px; font-size: 13px; }
.site-footer a { min-height: 36px; color: #c8d0dc; }
.site-footer a:hover { color: #ffd12a; }
.site-footer__bottom { margin-top: 34px; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.12); }

@media (max-width: 900px) { .site-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 540px) {
  .site-cart-drawer__panel { width: 100vw; }
  .site-cart-drawer__body { padding-inline: 14px; }
  .site-cart-drawer__foot { padding-inline: 14px; }
  .site-footer { padding-top: 36px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__menu-block a,.site-footer__contact a { display: flex; min-height: 44px; align-items: center; }
}
@media (prefers-reduced-motion: reduce) { .site-cart-drawer__backdrop,.site-cart-drawer__panel { transition: none; } }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--site-ink);
  font-family: var(--font-main);
  font-size: var(--site-font-base);
  line-height: 1.58;
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 99, 235, .08), transparent 28rem),
    radial-gradient(circle at 92% 2%, rgba(255, 159, 28, .10), transparent 26rem),
    linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-topbar {
  color: var(--site-white);
  background: var(--color-navy);
  font-size: var(--site-font-small);
  font-weight: var(--site-weight-bold);
}

.site-topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  align-items: center;
}

.site-topbar span::before {
  content: "";
  margin-right: 6px;
}

.site-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-topbar__item::before {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 999px;
  color: var(--color-primary);
  background: var(--site-warm);
  font-size: .66rem;
  font-weight: 800;
}

.site-topbar__item--ship::before {
  content: "🚚";
}

.site-topbar__item--fast::before {
  content: "4h";
}

.site-topbar__item--member::before {
  content: "👥";
}

.site-topbar__item--install::before {
  content: "⬇";
}

.site-topbar__item--stores::before {
  content: "🏪";
}

img {
  display: block;
  max-width: 100%;
}

.site-container {
  width: min(calc(100% - 32px), var(--site-container));
  margin-inline: auto;
}

.site-container--narrow {
  max-width: 880px;
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 220;
  background: var(--site-white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .08);
}

.site-header-main {
  background:
    radial-gradient(circle at 12% 0, rgba(255, 209, 42, .14), transparent 22%),
    linear-gradient(180deg, #fff, #fbfdff);
  color: var(--vk-navy);
  border-bottom: 1px solid var(--vk-border);
}

.site-header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.site-search {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 620px;
  min-height: 48px;
  border: 1px solid var(--vk-border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--site-white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.site-search svg {
  width: 24px;
  height: 24px;
  margin-left: 16px;
  fill: var(--color-primary);
}

.site-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: var(--site-ink);
  font: inherit;
  outline: none;
}

.site-search button {
  border: 0;
  align-self: stretch;
  padding: 0 28px;
  color: var(--site-white);
  background: linear-gradient(135deg, #ff9a1f, #ff6a00);
  font-weight: var(--site-weight-bold);
  cursor: pointer;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 92px;
  color: var(--vk-navy);
  font-weight: var(--site-weight-bold);
  letter-spacing: -.03em;
}

.site-logo img {
  width: 78px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(15, 23, 42, .12));
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--vk-navy);
}

.site-action-link,
.site-language {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 9px;
  border-radius: 14px;
  border: 1px solid var(--vk-border);
  color: var(--vk-navy);
  background: var(--vk-bg-soft);
  font-size: var(--site-font-nav);
  font-weight: var(--site-weight-bold);
}

.site-action-link:hover,
.site-language:hover {
  border-color: var(--vk-yellow);
  color: var(--vk-buy-hover);
  background: var(--vk-yellow-soft);
}

.site-action-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-action-link--wish,
.site-action-link--cart {
  justify-content: center;
  width: auto;
  padding-inline: 11px;
}

.site-action-link--wish svg {
  color: var(--vk-love);
}

.site-action-link--cart svg {
  color: var(--vk-navy);
}

.site-action-link b {
  position: absolute;
  top: -5px;
  left: 24px;
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--vk-bg-main);
  border-radius: 999px;
  color: var(--vk-buy-text);
  background: var(--vk-buy-hover);
  font-size: .72rem;
  line-height: 1;
}

.site-action-link b:empty {
  display: none;
}

.site-language {
  border: 1px solid var(--vk-border);
}

.site-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.site-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 23, 51, .38);
  opacity: 0;
  transition: opacity .22s ease;
}

.site-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  width: min(420px, calc(100vw - 22px));
  height: 100%;
  padding: 18px;
  background: #fff;
  box-shadow: -24px 0 60px rgba(7, 23, 51, .2);
  transform: translateX(105%);
  transition: transform .26s ease;
}

.site-cart-drawer[aria-hidden="false"] {
  pointer-events: auto;
}

.site-cart-drawer[aria-hidden="false"] .site-cart-drawer__backdrop {
  opacity: 1;
}

.site-cart-drawer[aria-hidden="false"] .site-cart-drawer__panel {
  transform: translateX(0);
}

.site-cart-drawer-open {
  overflow: hidden;
}

.site-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--site-line);
}

.site-cart-drawer__head span,
.site-cart-drawer__head strong {
  display: block;
}

.site-cart-drawer__head span {
  color: var(--site-muted);
  font-size: .84rem;
}

.site-cart-drawer__head strong {
  color: var(--site-brand-2);
  font-size: 1.15rem;
}

.site-cart-drawer__head button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--site-ink);
  background: var(--site-soft);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.site-cart-drawer__empty {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 16px;
  border: 1px dashed var(--site-line);
  border-radius: 18px;
  color: var(--site-muted);
  background: #f8fbff;
}

.site-cart-drawer__empty[hidden] {
  display: none;
}

.site-cart-drawer__empty strong {
  color: var(--site-ink);
}

.site-cart-drawer__list {
  min-height: 0;
  overflow: auto;
  padding-block: 14px;
}

.site-cart-drawer__list .site-cart-item {
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--site-line);
  box-shadow: none;
  background: transparent;
}

.site-cart-drawer__list .site-cart-item img {
  width: 72px;
  height: 72px;
}

.site-cart-drawer__list .site-cart-item h3 {
  font-size: .9rem;
}

.site-cart-drawer__list .site-cart-item label {
  grid-column: 2 / 4;
}

.site-cart-drawer__list .site-cart-item button {
  align-self: start;
}

.site-cart-drawer__foot {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--site-line);
}

.site-menu-bar {
  position: relative;
  z-index: 230;
  background: linear-gradient(180deg, #fffaf0, #fff);
  border-top: 1px solid rgba(255, 209, 42, .36);
  border-bottom: 1px solid var(--vk-border);
}

.site-menu-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  gap: 10px;
  overflow: visible;
}

.site-menu-bar a,
.site-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 16px;
  color: var(--vk-navy);
  font-size: .83rem;
  font-weight: var(--site-weight-bold);
  text-transform: uppercase;
  letter-spacing: .025em;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.site-menu-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-menu-bar a:hover,
.site-menu-item:hover > .site-menu-link {
  color: #7b2a00;
  background: linear-gradient(135deg, #fff0b8, #fff8df);
  box-shadow: 0 10px 24px rgba(255, 159, 28, .18);
  transform: translateY(-1px);
}

.site-menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 400;
  display: grid;
  gap: 6px;
  min-width: 280px;
  padding: 12px;
  border: 1px solid rgba(0, 37, 132, .09);
  border-radius: 22px;
  background: var(--site-white);
  box-shadow: 0 26px 70px rgba(7, 23, 51, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .18s ease;
}

.site-submenu::before {
  content: "";
  position: absolute;
  inset: -12px 0 auto;
  height: 12px;
}

.site-menu-item:hover > .site-submenu,
.site-menu-item:focus-within > .site-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-submenu .site-menu-link {
  justify-content: space-between;
  min-height: 42px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--site-ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: .9rem;
  font-weight: var(--site-weight-strong);
  background: #f8fbff;
}

.site-submenu .site-menu-item {
  display: grid;
  width: 100%;
}

.site-submenu .site-menu-link:hover,
.site-submenu .site-menu-item:hover > .site-menu-link {
  color: var(--vk-buy-hover);
  background: linear-gradient(135deg, #fff3c8, #fff);
  box-shadow: none;
  transform: none;
}

.site-submenu .site-submenu {
  top: -12px;
  left: calc(100% + 12px);
}

.site-menu-pill--sale {
  color: #7b2a00 !important;
  background: linear-gradient(135deg, #ffe89c, #ff9e2f);
  border: 1px solid var(--vk-yellow);
  box-shadow: 0 10px 24px rgba(255, 159, 28, .25);
}

.site-nav__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-nav__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-nav__icon b {
  position: absolute;
  top: -5px;
  right: -3px;
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--site-white);
  border-radius: 999px;
  color: var(--site-white);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  font-size: .72rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(229, 57, 31, .28);
}

.site-nav__wish svg {
  color: var(--color-accent-hover);
}

.site-nav__cart svg {
  color: var(--site-brand);
}

.site-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  border: 1px solid var(--vk-border);
  background: var(--vk-bg-soft);
}

.site-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--site-brand);
}

.site-main {
  overflow: hidden;
}

.site-hero {
  color: var(--vk-text-main);
  background:
    linear-gradient(120deg, var(--vk-bg-cream), var(--vk-bg-soft)),
    radial-gradient(circle at 75% 30%, rgba(255, 209, 42, .20), transparent 20rem);
  background-size: cover;
  background-position: center;
}

.site-hero__grid {
  display: grid;
  min-height: 440px;
  align-items: center;
  padding-block: 56px;
}

.site-hero__copy {
  max-width: 760px;
}

.site-eyebrow {
  margin: 0 0 10px;
  color: var(--site-brand-2);
  font-size: .84rem;
  font-weight: var(--site-weight-bold);
  text-transform: uppercase;
  letter-spacing: .16em;
}

.site-hero .site-eyebrow {
  color: var(--vk-buy-hover);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.75rem, 3.65vw, 3.1rem);
}

h2 {
  font-size: clamp(1.35rem, 2.45vw, 2.05rem);
}

h3 {
  font-size: .98rem;
}

.site-section {
  padding-block: clamp(42px, 6vw, 72px);
}

.site-section--soft {
  background: rgba(255, 255, 255, .62);
}

.site-category-strip {
  padding-block: 34px;
  background: rgba(255, 255, 255, .75);
  border-bottom: 1px solid var(--site-line);
}

.site-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid rgba(0, 87, 200, .16);
  border-radius: 999px;
  color: var(--color-primary-hover);
  background: linear-gradient(180deg, #fff, #eef6ff);
  font-size: .92rem;
  font-weight: var(--site-weight-strong);
}

.site-section__head {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 26px;
}

.site-page-title {
  padding-block: 44px 24px;
  background: linear-gradient(135deg, rgba(0, 87, 200, .09), rgba(0, 167, 111, .09));
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--site-white);
  background: var(--vk-buy);
  font-size: .94rem;
  font-weight: var(--site-weight-bold);
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 159, 28, .22);
}

.site-btn--light {
  color: var(--site-ink);
  background: var(--site-white);
}

.site-btn:hover,
.site-btn:focus-visible,
.site-mini-btn--warm:hover,
.site-mini-btn--warm:focus-visible {
  color: var(--vk-buy-text);
  background: var(--vk-buy-hover);
}

.site-btn--ghost {
  color: var(--site-brand);
  background: rgba(0, 87, 200, .08);
  box-shadow: none;
}

.site-voucher-strip {
  padding-block: 18px;
  background: #f5f5f5;
}

.site-voucher-strip > .site-container {
  position: relative;
  overflow: hidden;
  padding: 18px 58px 18px 28px;
}

.site-voucher-strip__eyebrow {
  display: inline-flex;
  margin-bottom: 6px;
  color: #ff8a00;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-voucher-strip__head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #142033;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.site-voucher-strip__head p {
  margin: 7px 0 0;
  color: #667085;
  font-size: .92rem;
}

.site-voucher-strip__all {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #ffd8b5;
  border-radius: 999px;
  background: #fff7f0;
  color: #c85a00;
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
}

.site-voucher-strip__all:hover,
.site-voucher-strip__all:focus-visible {
  border-color: #ff8a00;
  color: #fff;
  background: #ff8a00;
}

.site-voucher-strip__rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 4px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.site-voucher-strip__rail::-webkit-scrollbar {
  display: none;
}

.site-voucher-strip__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #9ca3af;
  box-shadow: 0 8px 26px rgba(15, 23, 42, .18);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.site-voucher-strip__prev {
  left: 12px;
}

.site-voucher-strip__next {
  right: 12px;
}

.site-voucher-strip__nav:hover,
.site-voucher-strip__nav:focus-visible {
  color: #ff4d2f;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .22);
}

.site-voucher-strip__nav.is-disabled,
.site-voucher-strip__nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.site-voucher-card {
  position: relative;
  display: flex;
  flex: 0 0 306px;
  min-height: 96px;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  padding: 0;
  border: 1px dashed #ffb7aa;
  border-radius: 2px;
  background:
    radial-gradient(circle at 0 8px, transparent 5px, rgba(255, 255, 255, 0) 5.5px) 0 0/1px 12px repeat-y,
    radial-gradient(circle at 100% 8px, transparent 5px, rgba(255, 255, 255, 0) 5.5px) 100% 0/1px 12px repeat-y,
    #fff4f3;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .07);
  scroll-snap-align: start;
}

.site-voucher-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 64px;
  border-left: 1px dashed rgba(255, 151, 136, .42);
}

.site-voucher-card__body {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  align-content: center;
  padding: 11px 10px;
}

.site-voucher-card__value {
  overflow: hidden;
  color: #ff3d20;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-voucher-card__condition {
  overflow: hidden;
  margin-top: 2px;
  color: #ff3d20;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-voucher-card__tag {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 20px;
  align-items: center;
  margin-top: 5px;
  overflow: hidden;
  padding: 3px 7px;
  border: 1px solid rgba(255, 83, 53, .28);
  border-radius: 2px;
  background: #fff9f6;
  color: #ff4d2f;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-voucher-card__expiry {
  margin-top: 6px;
  color: #7c8794;
  font-size: 10px;
  line-height: 1.25;
}

.site-voucher-card__side {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 64px;
  place-items: center;
  padding-inline: 7px;
}

.site-voucher-card__main {
  min-width: 0;
  padding-right: 8px;
}

.site-voucher-card h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #142033;
  font-size: .95rem;
  line-height: 1.35;
  font-weight: 800;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.site-voucher-card p {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  color: #667085;
  font-size: .82rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.site-voucher-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 9px;
}

.site-voucher-card__meta strong {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 7px;
  background: #fff0e0;
  color: #c85a00;
  font-size: .78rem;
  letter-spacing: .04em;
}

.site-voucher-card__meta span {
  color: #667085;
  font-size: .78rem;
  font-weight: 700;
}

.site-voucher-card__save {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 48px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 5px 7px;
  border: 0;
  border-radius: 2px;
  background: #ff4d2f;
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.site-voucher-card__save:hover,
.site-voucher-card__save:focus-visible {
  background: #e6371b;
}

.site-voucher-card.is-saved .site-voucher-card__save,
.site-voucher-card__save:disabled {
  background: #f7d5cf;
  color: #a33a2b;
  cursor: default;
}

.site-voucher-modal {
  position: fixed;
  inset: 0;
  z-index: 10030;
  display: grid;
  place-items: center;
  padding: 18px;
}

.site-voucher-modal[hidden] {
  display: none;
}

.site-voucher-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, .45);
}

.site-voucher-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(78vh, 720px);
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, .20);
}

.site-voucher-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.site-voucher-modal__head h2 {
  color: #142033;
  font-size: 1.15rem;
}

.site-voucher-modal__head button {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  color: #142033;
  font-size: 24px;
  cursor: pointer;
}

.site-voucher-modal__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: calc(78vh - 80px);
  overflow-y: auto;
  padding: 18px 20px 22px;
}

.site-saved-vouchers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border: 1px solid #ffd8b5;
  border-radius: 16px;
  background: #fff7f0;
}

.site-saved-vouchers[hidden] {
  display: none;
}

.site-saved-vouchers__label {
  width: 100%;
  color: #667085;
  font-size: .84rem;
  font-weight: 800;
}

.site-saved-voucher {
  display: inline-grid;
  gap: 2px;
  min-height: 44px;
  padding: 7px 12px;
  border: 1px solid #ffd8b5;
  border-radius: 12px;
  background: #fff;
  color: #142033;
  font: inherit;
  font-size: .82rem;
  font-weight: 850;
  cursor: pointer;
}

.site-saved-voucher span {
  color: #ff8a00;
  font-size: .75rem;
  font-weight: 750;
}

.site-saved-voucher.is-active {
  border-color: #ff8a00;
  background: #fff0e0;
}

.site-toast {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 10050;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 16px;
  border: 1px solid #ffd8b5;
  border-radius: 14px;
  background: #142033;
  color: #fff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .18);
  font-size: .9rem;
  font-weight: 800;
}

.site-toast.is-error {
  border-color: #fecaca;
  background: #991b1b;
}

.site-richtext {
  color: var(--site-muted);
}

.site-richtext--lead {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: .98rem;
}

.site-single-banner {
  position: relative;
  min-height: clamp(300px, 42vw, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--site-white);
  background:
    linear-gradient(135deg, rgba(213, 9, 47, .9), rgba(7, 31, 131, .82)),
    radial-gradient(circle at 82% 16%, rgba(255, 191, 34, .42), transparent 20rem);
  background-size: cover;
  background-position: center;
}

.site-single-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(3, 13, 38, .72));
  pointer-events: none;
}

.site-single-banner__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.site-single-banner__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-block: clamp(36px, 7vw, 86px);
}

.site-single-banner .site-eyebrow,
.site-single-banner .site-richtext {
  color: rgba(255, 255, 255, .88);
}

.site-single-banner h1 {
  font-size: clamp(2rem, 5.4vw, 5.2rem);
}

.site-card-grid,
.site-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.site-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-card-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-feature-ribbon-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(238, 247, 255, .78)),
    radial-gradient(circle at 10% 20%, rgba(255, 191, 34, .18), transparent 18rem);
}

.site-feature-ribbon-wrap {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.site-feature-ribbon-copy {
  position: sticky;
  top: 130px;
}

.site-feature-ribbon {
  display: grid;
  gap: 14px;
  counter-reset: ribbon;
}

.site-feature-ribbon-card {
  counter-increment: ribbon;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(7, 31, 131, .12);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(7, 23, 51, .08);
}

.site-feature-ribbon-card::before {
  content: counter(ribbon, decimal-leading-zero);
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 22px;
  color: var(--site-white);
  background: linear-gradient(135deg, var(--site-brand), #d5092f);
  font-size: 1.1rem;
  font-weight: var(--site-weight-bold);
}

.site-feature-ribbon-card img {
  width: 100%;
  max-height: 180px;
  grid-column: 1 / -1;
  object-fit: cover;
  border-radius: 22px;
}

.site-feature-ribbon-card h3 {
  margin-bottom: 5px;
}

.site-icon-strip-section {
  padding-block: 30px;
  background: #fff;
  border-block: 1px solid var(--site-line);
}

.site-icon-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 9px 15px;
  border: 1px solid rgba(7, 31, 131, .12);
  border-radius: 999px;
  color: #073d8c;
  background: linear-gradient(180deg, #fff, #f0f7ff);
  box-shadow: 0 12px 24px rgba(7, 23, 51, .06);
}

.site-icon-pill::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 22%, transparent 23%),
    linear-gradient(135deg, var(--site-warm), var(--site-hot));
}

.site-icon-pill img,
.site-icon-pill a {
  display: none;
}

.site-icon-pill h3 {
  font-size: .9rem;
}

.site-section--visual {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 176, 32, .18), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(0, 167, 111, .14), transparent 18rem);
}

.site-image-mosaic,
.site-image-duo,
.site-combo-grid,
.site-category-showcase {
  display: grid;
  gap: 20px;
}

.site-image-mosaic {
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 220px;
}

.site-image-mosaic article:first-child {
  grid-row: span 2;
}

.site-image-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: calc(var(--site-radius) + 8px);
  background: var(--site-white);
  box-shadow: var(--site-shadow);
}

.site-image-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform .35s ease;
}

.site-image-card:hover img {
  transform: scale(1.04);
}

.site-image-card h3 {
  margin: 14px 16px 6px;
}

.site-image-card .site-richtext {
  margin: 0 16px 16px;
}

.site-landing-split,
.site-trust-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.site-image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.site-image-stack article:nth-child(2) {
  transform: translateY(34px);
}

.site-image-rail,
.site-product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 28%);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.site-image-rail > *,
.site-product-rail > * {
  scroll-snap-align: start;
}

.site-product-picker {
  background: #fff;
}

.site-product-picker > .site-container {
  position: relative;
}

.site-product-picker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.site-product-picker__head h2 {
  color: #64748b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.site-product-picker__head p {
  margin: 0 0 3px;
  color: #94a3b8;
  font-size: 13px;
}

.site-product-picker__head a {
  color: #ef4427;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-product-picker__rail {
  display: flex;
  gap: 12px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 2px 2px 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.site-product-picker__rail::-webkit-scrollbar {
  display: none;
}

.site-product-picker__nav {
  position: absolute;
  top: 52%;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #64748b;
  box-shadow: 0 8px 28px rgba(15, 23, 42, .18);
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.site-product-picker__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-product-picker__prev {
  left: -10px;
}

.site-product-picker__next {
  right: -10px;
}

.site-product-picker__nav:hover,
.site-product-picker__nav:focus-visible {
  background: #ff9f1c;
  color: #fff;
  box-shadow: 0 12px 32px rgba(249, 115, 22, .28);
}

.site-product-picker__nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.site-motion-banner {
  padding: 18px 0;
  background: #fff;
}

.site-motion-banner > .site-container {
  position: relative;
}

.site-motion-banner--main {
  width: 100%;
  padding: 0;
  background: #fff;
}

.site-motion-banner__full {
  position: relative;
  width: 100%;
  max-width: none;
}

.site-motion-banner--main .site-motion-banner__viewport {
  border-radius: 0;
  box-shadow: none;
}

.site-motion-banner--main .site-motion-banner__head {
  max-width: var(--container, 1200px);
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}

.site-motion-banner__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.site-motion-banner__head h2 {
  margin: 0;
  color: var(--vk-text-main, #0f172a);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
}

.site-motion-banner__head p {
  max-width: 520px;
  margin: 0;
  color: var(--vk-text-muted, #64748b);
  font-size: 14px;
}

.site-motion-banner__viewport {
  position: relative;
  aspect-ratio: 5 / 2;
  overflow: hidden;
  border-radius: 20px;
  background: var(--vk-bg-warm, #fff8ec);
  box-shadow: var(--vk-shadow-card, 0 12px 30px rgba(15, 23, 42, .06));
}

.site-motion-banner__track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform .55s ease;
}

.site-motion-banner__slide {
  min-width: 100%;
  flex: 0 0 100%;
  height: 100%;
}

.site-motion-banner__slide a,
.site-motion-banner__slide img {
  display: block;
}

.site-motion-banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--vk-bg-warm, #fff8ec);
}

.site-motion-banner__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--vk-text-muted, #64748b);
  box-shadow: 0 10px 32px rgba(15, 23, 42, .18);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.site-motion-banner__nav svg {
  width: 24px;
  height: 24px;
}

.site-motion-banner__prev {
  left: 14px;
}

.site-motion-banner__next {
  right: 14px;
}

.site-motion-banner__nav:hover,
.site-motion-banner__nav:focus-visible {
  background: var(--vk-buy, #ff9f1c);
  color: #fff;
  box-shadow: 0 14px 36px rgba(249, 115, 22, .28);
}

.site-motion-banner__dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-motion-banner__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .08);
  cursor: pointer;
  transition: width .18s ease, background-color .18s ease;
}

.site-motion-banner__dots button.is-active {
  width: 26px;
  background: var(--vk-buy, #ff9f1c);
}

.site-image-list {
  padding: 18px 0;
  background: #fff;
}

.site-image-list__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.site-image-list__head h2 {
  margin: 0;
  color: var(--vk-text-main, #0f172a);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
}

.site-image-list__head p {
  max-width: 520px;
  margin: 0;
  color: var(--vk-text-muted, #64748b);
  font-size: 14px;
}

.site-image-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.site-image-list__item {
  overflow: hidden;
  border-radius: 12px;
  background: var(--vk-bg-warm, #fff8ec);
  box-shadow: var(--vk-shadow-card, 0 12px 30px rgba(15, 23, 42, .06));
}

.site-image-list__item a,
.site-image-list__item img {
  display: block;
}

.site-image-list__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .28s ease;
}

.site-image-list__item a:hover img,
.site-image-list__item a:focus-visible img {
  transform: scale(1.025);
}

.site-category-products {
  padding: 22px 0 34px;
  background: var(--vk-bg-soft, #f8fafc);
}

.site-category-products__head {
  margin-bottom: 16px;
}

.site-category-products__head p {
  margin: 0 0 5px;
  color: var(--vk-text-muted, #64748b);
  font-size: 14px;
}

.site-category-products__head h2 {
  margin: 0;
  color: var(--vk-text-main, #0f172a);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
}

.site-category-products__layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.site-category-products__sidebar {
  position: relative;
  z-index: 12;
  min-width: 0;
  color: var(--vk-text-body, #1f2937);
}

.site-category-products__sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 14px;
  border-bottom: 1px solid var(--vk-border, #e5e7eb);
  color: var(--vk-text-main, #0f172a);
  font-size: 15px;
}

.site-category-products__cat-list {
  display: grid;
  gap: 2px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.site-category-products__cat-item {
  position: relative;
}

.site-category-products__cat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.site-category-products__cat-link,
.site-category-products__child-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  border-radius: 10px;
  color: var(--vk-text-body, #1f2937);
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease, transform .15s ease;
}

.site-category-products__cat-link {
  padding: 7px 8px;
}

.site-category-products__cat-link i {
  color: var(--vk-text-light, #94a3b8);
  font-style: normal;
  font-size: 18px;
  transition: color .15s ease, transform .15s ease;
}

.site-category-products__cat-link:hover,
.site-category-products__cat-link:focus-visible,
.site-category-products__child-link:hover,
.site-category-products__child-link:focus-visible {
  color: var(--vk-buy-hover, #f97316);
  background: rgba(255, 159, 28, .08);
}

.site-category-products__cat-item.is-active > .site-category-products__cat-row .site-category-products__cat-link,
.site-category-products__child-link.is-active {
  color: var(--vk-buy-hover, #f97316);
  font-weight: 800;
}

.site-category-products__cat-item.is-parent-active > .site-category-products__cat-row .site-category-products__cat-link {
  color: var(--vk-text-main, #0f172a);
  font-weight: 800;
  background: rgba(255, 159, 28, .06);
}

.site-category-products__cat-item.is-parent-active > .site-category-products__cat-row .site-category-products__cat-link i,
.site-category-products__cat-item.is-active > .site-category-products__cat-row .site-category-products__cat-link i {
  color: var(--vk-buy, #ff9f1c);
}

.site-category-products__toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--vk-border, #e5e7eb);
  border-radius: 10px;
  background: #fff;
  color: var(--vk-text-muted, #64748b);
  font-weight: 800;
}

.site-category-products__submenu {
  position: static;
  display: grid;
  width: auto;
  min-width: 0;
  max-height: 0;
  margin: 0 0 0 12px;
  padding: 0;
  overflow: hidden;
  border-left: 1px dashed var(--vk-border, #e5e7eb);
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: max-height .16s ease, margin .16s ease, opacity .16s ease, transform .16s ease;
}

.site-category-products__cat-item.is-open > .site-category-products__submenu {
  max-height: 520px;
  margin-top: 3px;
  margin-bottom: 7px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-category-products__cat-item.is-open > .site-category-products__cat-row .site-category-products__cat-link i {
  transform: rotate(90deg);
}

.site-category-products__child-link {
  padding: 6px 8px 6px 12px;
  justify-content: flex-start;
  font-size: 13.5px;
}

.site-category-products__content {
  min-width: 0;
  transition: opacity .16s ease;
}

.site-category-products.is-loading .site-category-products__content {
  opacity: .55;
}

.site-category-products__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 0;
  background: #fff;
}

.site-category-products__sorts {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.site-category-products__sorts span {
  color: var(--vk-text-muted, #64748b);
  font-size: 14px;
}

.site-category-products__sorts button,
.site-category-products__sorts select,
.site-category-products__pager-mini button,
.site-category-products__pager button {
  min-height: 38px;
  border: 1px solid var(--vk-border, #e5e7eb);
  border-radius: 4px;
  background: #fff;
  color: var(--vk-text-body, #1f2937);
  font: inherit;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.site-category-products__sorts button {
  padding: 0 18px;
}

.site-category-products__sorts select {
  min-width: 150px;
  padding: 0 12px;
}

.site-category-products__sorts button.is-active,
.site-category-products__sorts button:hover,
.site-category-products__sorts button:focus-visible {
  border-color: var(--vk-buy-hover, #f97316);
  background: var(--vk-buy-hover, #f97316);
  color: #fff;
}

.site-category-products__pager-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-category-products__pager-mini span {
  color: var(--vk-text-body, #1f2937);
  font-size: 14px;
}

.site-category-products__pager-mini button,
.site-category-products__pager button {
  display: inline-grid;
  min-width: 38px;
  padding: 0 11px;
  place-items: center;
  color: var(--vk-text-muted, #64748b);
  font-size: 20px;
}

.site-category-products__pager-mini button:disabled,
.site-category-products__pager button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.site-category-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.site-category-products__card {
  min-width: 0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.site-category-products__card .site-product-card__image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff8ec;
}

.site-category-products__card .site-product-card__image > a,
.site-category-products__card .site-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-category-products__card .site-product-card__image img {
  object-fit: cover;
}

.site-category-products__image-actions {
  position: absolute;
  inset: 8px 8px auto auto;
  z-index: 3;
  display: grid;
  gap: 8px;
}

.site-category-products__icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(229, 231, 235, .92);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--vk-text-muted, #64748b);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .12);
  font: inherit;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: transform .16s ease, color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.site-category-products__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-category-products__icon span {
  display: none;
}

.site-category-products__icon:hover,
.site-category-products__icon:focus-visible,
.site-category-products__icon.is-active {
  transform: translateY(-1px);
  color: #fff;
  background: var(--vk-love, #ef4444);
  box-shadow: 0 12px 28px rgba(239, 68, 68, .25);
}

.site-category-products__icon--cart {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  color: #fff;
  background: rgba(31, 41, 55, .76);
}

.site-category-products__icon--cart:hover,
.site-category-products__icon--cart:focus-visible {
  background: var(--vk-buy-hover, #f97316);
}

.site-category-products__card .site-product-card__body {
  padding: 9px 10px 11px;
}

.site-category-products__card .site-product-card__body p {
  display: none;
}

.site-category-products__card .site-product-card__body h3 {
  display: -webkit-box;
  min-height: 38px;
  margin: 0 0 6px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-category-products__card .site-product-card__price {
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}

.site-category-products__card .site-product-card__price strong {
  color: var(--vk-love, #ef4444);
  font-size: 15px;
  margin-top: 0;
}

.site-category-products__card .site-product-card__price span {
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--vk-love, #ef4444);
  background: var(--vk-love-soft, #fee2e2);
  font-size: 11px;
  line-height: 1.1;
}

.site-category-products__card .site-product-card__actions {
  display: none;
}

.site-product-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vk-text-muted, #64748b);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
}

.site-product-card__meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px 5px;
  border: 1px solid #ffd77a;
  border-radius: 4px;
  color: var(--vk-text-main, #0f172a);
  background: #fff8ec;
}

.site-category-products__pager {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.site-category-products__pager button {
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
}

.site-category-products__pager button.is-active {
  border-color: var(--vk-buy-hover, #f97316);
  background: var(--vk-buy-hover, #f97316);
  color: #fff;
}

.site-category-products__empty {
  display: grid;
  gap: 6px;
  min-height: 220px;
  place-content: center;
  border: 1px dashed var(--vk-border, #e5e7eb);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.site-category-products__empty strong {
  color: var(--vk-text-main, #0f172a);
}

.site-category-products__empty span {
  color: var(--vk-text-muted, #64748b);
  font-size: 14px;
}

.site-quick-buy,
.site-quick-buy__backdrop {
  position: fixed;
  inset: 0;
}

.site-quick-buy {
  z-index: 10060;
  visibility: hidden;
  pointer-events: none;
}

.site-quick-buy[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

.site-quick-buy__backdrop {
  border: 0;
  background: rgba(15, 23, 42, .46);
  opacity: 0;
  transition: opacity .2s ease;
}

.site-quick-buy[aria-hidden="false"] .site-quick-buy__backdrop {
  opacity: 1;
}

.site-quick-buy__panel {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 28px));
  max-height: min(86vh, 760px);
  margin: min(7vh, 56px) auto 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, .24);
  transform: translateY(16px);
  transition: transform .2s ease;
}

.site-quick-buy[aria-hidden="false"] .site-quick-buy__panel {
  transform: translateY(0);
}

.site-quick-buy__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--vk-border, #e5e7eb);
}

.site-quick-buy__head strong {
  color: var(--vk-text-main, #0f172a);
  font-size: 18px;
}

.site-quick-buy__head button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--vk-border, #e5e7eb);
  border-radius: 10px;
  background: #fff;
  color: var(--vk-text-main, #0f172a);
  font-size: 24px;
  cursor: pointer;
}

.site-quick-buy__body {
  max-height: calc(min(86vh, 760px) - 72px);
  overflow-y: auto;
}

.site-quick-buy__grid {
  display: grid;
  grid-template-columns: minmax(240px, .86fr) minmax(0, 1.14fr);
  gap: 18px;
  padding: 18px;
}

.site-quick-buy__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: var(--vk-bg-warm, #fff8ec);
  object-fit: cover;
}

.site-quick-buy__main > p {
  margin: 0 0 4px;
  color: var(--vk-text-muted, #64748b);
  font-size: 13px;
}

.site-quick-buy__main h2 {
  margin: 0 0 14px;
  color: var(--vk-text-main, #0f172a);
  font-size: 20px;
  line-height: 1.35;
}

.site-quick-buy__options {
  display: grid;
  gap: 9px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
}

.site-quick-buy__option {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 9px;
  border: 1px solid var(--vk-border, #e5e7eb);
  border-radius: 10px;
  background: #fff;
  color: var(--vk-text-body, #1f2937);
  text-align: left;
  cursor: pointer;
}

.site-quick-buy__option.is-selected,
.site-quick-buy__option.is-picked,
.site-quick-buy__option:hover,
.site-quick-buy__option:focus-visible {
  border-color: var(--vk-buy-hover, #f97316);
  background: #fff8ec;
}

.site-quick-buy__option.is-picked {
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, .2);
}

.site-quick-buy__option img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--vk-bg-warm, #fff8ec);
  object-fit: cover;
}

.site-quick-buy__option span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-quick-buy__option strong {
  overflow: hidden;
  color: var(--vk-text-main, #0f172a);
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-quick-buy__option small {
  color: var(--vk-text-muted, #64748b);
  font-size: 12px;
}

.site-quick-buy__option-price {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 76px;
}

.site-quick-buy__option-price b {
  color: var(--vk-love, #ef4444);
  font-size: 14px;
  white-space: nowrap;
}

.site-quick-buy__option-price em,
.site-quick-buy__summary em {
  justify-self: end;
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--vk-love, #ef4444);
  background: var(--vk-love-soft, #fee2e2);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}

.site-quick-buy__option-qty {
  display: grid;
  grid-template-columns: 32px 42px 32px;
  overflow: hidden;
  border: 1px solid var(--vk-border, #e5e7eb);
  border-radius: 9px;
  background: #fff;
}

.site-quick-buy__option-qty button,
.site-quick-buy__option-qty input {
  width: auto;
  height: 34px;
  border: 0;
  background: #fff;
  color: var(--vk-text-main, #0f172a);
  font: inherit;
  font-weight: 800;
  text-align: center;
}

.site-quick-buy__option-qty button {
  cursor: pointer;
}

.site-quick-buy__option-qty button:hover,
.site-quick-buy__option-qty button:focus-visible {
  color: #fff;
  background: var(--vk-buy-hover, #f97316);
}

.site-quick-buy__option-qty input {
  border-inline: 1px solid var(--vk-border, #e5e7eb);
  -moz-appearance: textfield;
}

.site-quick-buy__option-qty input::-webkit-outer-spin-button,
.site-quick-buy__option-qty input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.site-quick-buy__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 13px;
  padding: 11px 12px;
  border-radius: 10px;
  background: var(--vk-bg-soft, #f8fafc);
}

.site-quick-buy__summary span {
  color: var(--vk-text-muted, #64748b);
}

.site-quick-buy__summary strong {
  color: var(--vk-love, #ef4444);
  font-size: 18px;
}

.site-quick-buy__qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: var(--vk-text-main, #0f172a);
  font-weight: 800;
}

.site-quick-buy__qty input {
  width: 84px;
  height: 38px;
  border: 1px solid var(--vk-border, #e5e7eb);
  border-radius: 8px;
  text-align: center;
  font: inherit;
}

.site-quick-buy__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.site-quick-buy__actions button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.site-quick-buy__loading,
.site-quick-buy__empty {
  display: grid;
  min-height: 180px;
  place-content: center;
  gap: 8px;
  padding: 24px;
  color: var(--vk-text-muted, #64748b);
  text-align: center;
}

.site-quick-buy__empty strong {
  color: var(--vk-text-main, #0f172a);
}

.site-quick-buy__detail {
  color: var(--vk-buy-hover, #f97316);
  font-weight: 800;
}

.site-quick-buy-open {
  overflow: hidden !important;
}

.site-picked-product-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 6);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  scroll-snap-align: start;
  transition: transform .2s ease, box-shadow .2s ease;
}

.site-picked-product-card__wish {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 4;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(229, 231, 235, .92);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: #64748b;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.site-picked-product-card__wish span {
  display: none;
}

.site-picked-product-card__wish:hover,
.site-picked-product-card__wish:focus-visible {
  color: #ef4444;
  transform: scale(1.06);
}

.site-picked-product-card__wish.is-active {
  border-color: #fca5a5;
  background: #fee2e2;
  color: #ef4444;
}

.site-picked-product-card__quick {
  position: absolute;
  right: 7px;
  top: 43px;
  z-index: 4;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(229, 231, 235, .92);
  border-radius: 999px;
  background: rgba(15, 23, 42, .72);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .14);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.site-picked-product-card__quick svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.site-picked-product-card__quick:hover,
.site-picked-product-card__quick:focus-visible {
  background: var(--vk-buy-hover, #f97316);
  transform: scale(1.06);
}

.site-picked-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .10);
}

.site-picked-product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f8fafc;
}

.site-picked-product-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .28s ease;
}

.site-picked-product-card:hover .site-picked-product-card__image img {
  transform: scale(1.04);
}

.site-picked-product-card__image span {
  position: absolute;
  left: 6px;
  bottom: 7px;
  z-index: 2;
  padding: 2px 5px;
  border-radius: 3px;
  background: #ef4427;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.site-picked-product-card__image b {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 2;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, .55);
  color: #fff;
  font-size: 10px;
}

.site-picked-product-card__body {
  padding: 7px 8px 9px;
}

.site-picked-product-card__body h3 {
  display: -webkit-box;
  min-height: 34px;
  margin: 0;
  overflow: hidden;
  color: #1f2937;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-picked-product-card__body h3 a {
  color: inherit;
}

.site-picked-product-card__price {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
}

.site-picked-product-card__price strong {
  color: #ef4427;
  font-size: 14px;
  font-weight: 700;
}

.site-picked-product-card__price em {
  padding: 2px 4px;
  border-radius: 3px;
  background: #fee2e2;
  color: #ef4427;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.site-picked-product-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  overflow: hidden;
  color: #64748b;
  font-size: 11px;
}

.site-picked-product-card__meta span {
  flex: 0 0 auto;
  padding: 2px 4px;
  border-radius: 3px;
  background: #fff7ed;
  color: #a16207;
  font-size: 10px;
  font-weight: 800;
}

.site-picked-product-card__meta small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-picked-product-card__actions {
  display: none;
}

.site-layered-banner,
.site-image-cta {
  overflow: hidden;
  border-radius: calc(var(--site-radius) + 12px);
  color: var(--site-white);
  background:
    linear-gradient(135deg, rgba(0, 87, 200, .94), rgba(230, 57, 31, .78)),
    radial-gradient(circle at 90% 10%, rgba(255, 176, 32, .45), transparent 16rem);
  box-shadow: var(--site-shadow);
}

.site-layered-banner {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 28px;
  padding: clamp(28px, 5vw, 56px);
  align-items: center;
}

.site-layered-banner .site-section__head,
.site-layered-banner .site-richtext,
.site-image-cta .site-richtext {
  color: var(--site-white);
}

.site-layered-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-layered-images article {
  min-height: 180px;
  transform: rotate(-2deg);
}

.site-layered-images article:nth-child(even) {
  transform: translateY(28px) rotate(2deg);
}

.site-image-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-product-spotlight {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, .8fr));
  gap: 22px;
}

.site-product-spotlight .site-product-card:first-child {
  grid-row: span 2;
}

.site-product-spotlight .site-product-card:first-child .site-product-card__image img {
  aspect-ratio: 1 / 1.22;
}

.site-product-grid--featured .site-product-card:first-child {
  grid-column: span 2;
}

.site-product-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.site-product-picks .site-product-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: stretch;
}

.site-product-picks .site-product-card__image img {
  height: 100%;
  aspect-ratio: auto;
}

.site-product-ad-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, .8fr));
  gap: 20px;
  padding: clamp(18px, 3vw, 30px);
  border-radius: calc(var(--site-radius) + 10px);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 191, 34, .22), transparent 18rem),
    linear-gradient(135deg, rgba(7, 31, 131, .08), rgba(213, 9, 47, .08));
}

.site-product-ad-showcase .site-product-card:first-child {
  grid-row: span 2;
}

.site-product-ad-showcase .site-product-card:first-child .site-product-card__image img {
  aspect-ratio: 1 / 1.18;
}

.site-news-grid,
.site-news-magazine,
.site-news-timeline,
.site-trust-grid,
.site-faq-list {
  display: grid;
  gap: 18px;
}

.site-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-news-card {
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-white);
  box-shadow: 0 14px 38px rgba(7, 23, 51, .08);
}

.site-news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.site-news-card div {
  padding: 16px;
}

.site-news-card p {
  margin: 0 0 8px;
  color: var(--site-warm);
  font-size: .82rem;
  font-weight: var(--site-weight-bold);
}

.site-news-card span {
  color: var(--site-muted);
  font-size: .9rem;
}

.site-news-magazine {
  grid-template-columns: 1.15fr .85fr;
}

.site-news-magazine .site-news-card:first-child {
  grid-row: span 4;
}

.site-news-magazine .site-news-card:not(:first-child) {
  display: grid;
  grid-template-columns: 140px 1fr;
}

.site-news-magazine .site-news-card:not(:first-child) img {
  height: 100%;
  aspect-ratio: auto;
}

.site-news-timeline {
  max-width: 880px;
  margin-inline: auto;
}

.site-news-timeline .site-news-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: stretch;
}

.site-news-feature-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  max-width: 980px;
  margin-inline: auto;
}

.site-news-feature-list .site-news-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: stretch;
}

.site-news-feature-list .site-news-card img {
  height: 100%;
  aspect-ratio: auto;
}

.site-latest-product-showcase {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 191, 34, .2), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(238, 247, 255, .82));
}

.site-latest-product-showcase__head,
.site-latest-news-board__head {
  max-width: 760px;
  margin-bottom: 26px;
}

.site-latest-product-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, .75fr));
  gap: 18px;
}

.site-latest-product-card {
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: calc(var(--site-radius) + 8px);
  background: var(--site-white);
  box-shadow: 0 18px 46px rgba(7, 23, 51, .1);
}

.site-latest-product-card.is-main {
  grid-row: span 2;
}

.site-latest-product-card img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
}

.site-latest-product-card.is-main img {
  aspect-ratio: 1 / 1.08;
}

.site-latest-product-card div {
  padding: 17px;
}

.site-latest-product-card span,
.site-latest-news-item span {
  color: var(--site-brand-2);
  font-size: .78rem;
  font-weight: var(--site-weight-bold);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.site-latest-product-card p,
.site-latest-news-item p {
  color: var(--site-muted);
}

.site-latest-product-card strong {
  color: var(--site-brand-2);
  font-size: 1.08rem;
}

.site-latest-news-board {
  background: #fff;
}

.site-latest-news-board__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .76fr);
  gap: 18px;
}

.site-latest-news-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid var(--site-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(7, 23, 51, .07);
}

.site-latest-news-item.is-lead {
  grid-row: span 5;
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
}

.site-latest-news-item img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-radius: 18px;
}

.site-latest-news-item.is-lead img {
  min-height: 360px;
  border-radius: 0;
}

.site-latest-news-item div {
  padding: 10px;
}

.site-latest-news-item.is-lead div {
  padding: 22px;
}

.site-contact-split,
.site-contact-floating,
.site-contact-minimal {
  background-size: cover;
  background-position: center;
}

.site-contact-split {
  color: var(--site-white);
  background:
    linear-gradient(135deg, rgba(7, 31, 131, .95), rgba(213, 9, 47, .78)),
    radial-gradient(circle at 92% 18%, rgba(255, 191, 34, .35), transparent 18rem);
}

.site-contact-split .site-eyebrow,
.site-contact-split .site-richtext {
  color: rgba(255, 255, 255, .86);
}

.site-contact-split__grid,
.site-contact-floating__panel,
.site-contact-minimal__wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.site-contact-floating__panel {
  padding: clamp(22px, 5vw, 54px);
  border: 1px solid rgba(7, 31, 131, .1);
  border-radius: calc(var(--site-radius) + 14px);
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 191, 34, .22), transparent 18rem),
    rgba(255, 255, 255, .88);
  box-shadow: var(--site-shadow);
}

.site-contact-minimal {
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(238, 247, 255, .86));
}

.site-contact-minimal__wrap {
  align-items: start;
  padding-block: 8px;
}

.site-contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.site-contact-badges span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #073d8c;
  background: #eef6ff;
  font-size: .82rem;
  font-weight: var(--site-weight-strong);
}

.site-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: calc(var(--site-radius) + 8px);
}

.site-contact-form--glass {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .18);
}

.site-contact-form--card,
.site-contact-form--inline {
  border: 1px solid var(--site-line);
  background: var(--site-white);
  box-shadow: 0 18px 42px rgba(7, 23, 51, .1);
}

.site-contact-form label {
  display: grid;
  gap: 6px;
  color: inherit;
  font-weight: var(--site-weight-strong);
}

.site-contact-form .is-full,
.site-contact-form button,
.site-contact-form p {
  grid-column: 1 / -1;
}

.site-contact-form input,
.site-contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(7, 31, 131, .15);
  border-radius: 15px;
  color: var(--site-ink);
  background: rgba(255, 255, 255, .94);
  font: inherit;
}

.site-contact-form textarea {
  min-height: 96px;
  resize: vertical;
}

.site-contact-form p {
  min-height: 20px;
  margin: 0;
  color: var(--site-muted);
  font-weight: var(--site-weight-strong);
}

.site-contact-form.is-success p {
  color: #067a46;
}

.site-contact-form.is-error p {
  color: #c22b18;
}

.site-product-orbit,
.site-product-deal-stack,
.site-news-masonry,
.site-news-digest {
  display: grid;
  gap: 18px;
}

.site-product-orbit {
  grid-template-columns: 1.15fr repeat(2, minmax(0, .75fr));
  align-items: stretch;
}

.site-product-orbit .site-product-card {
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 196, 31, .2), transparent 28%),
    #fff;
}

.site-product-orbit .site-product-card:first-child {
  grid-row: span 2;
  background: linear-gradient(145deg, #fff6d9, #fff);
}

.site-product-orbit .site-product-card:first-child .site-product-card__image {
  min-height: 320px;
}

.site-product-deal-stack {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.site-product-deal-stack .site-product-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  border-radius: 24px;
  background: #fff;
}

.site-product-deal-stack .site-product-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, .72fr) 1fr;
  background: linear-gradient(135deg, var(--site-blue), #0f46d5);
  color: #fff;
}

.site-product-deal-stack .site-product-card:first-child h3 a,
.site-product-deal-stack .site-product-card:first-child p,
.site-product-deal-stack .site-product-card:first-child strong {
  color: #fff;
}

.site-product-deal-stack .site-product-card__image {
  min-height: 170px;
}

.site-news-masonry {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-news-masonry .site-news-card {
  min-height: 100%;
  border-radius: 28px;
  background: #fff;
}

.site-news-masonry .site-news-card:first-child,
.site-news-masonry .site-news-card:nth-child(4) {
  grid-column: span 2;
}

.site-news-masonry .site-news-card:first-child img {
  aspect-ratio: 16 / 7;
}

.site-news-digest {
  grid-template-columns: 1.05fr .95fr;
  counter-reset: newsDigest;
}

.site-news-digest .site-news-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
}

.site-news-digest .site-news-card::before {
  counter-increment: newsDigest;
  content: counter(newsDigest, decimal-leading-zero);
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(0, 37, 132, .16);
  font-size: 1.45rem;
  font-weight: var(--site-weight-bold);
}

.site-news-digest .site-news-card:first-child {
  grid-row: span 4;
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--site-blue);
}

.site-news-digest .site-news-card:first-child div {
  padding: 22px;
}

.site-news-digest .site-news-card:first-child h3 a,
.site-news-digest .site-news-card:first-child p,
.site-news-digest .site-news-card:first-child span {
  color: #fff;
}

.site-news-digest .site-news-card:first-child img {
  aspect-ratio: 16 / 10;
}

.site-contact-coupon {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 196, 31, .22), transparent 28%),
    linear-gradient(135deg, #fff7df, #fff);
}

.site-contact-coupon__ticket {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 2px dashed rgba(215, 13, 45, .24);
  border-radius: 34px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--site-shadow);
}

.site-contact-form--coupon {
  border: 1px solid rgba(215, 13, 45, .14);
  background: linear-gradient(180deg, #fff, #fff4ed);
}

.site-contact-studio {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.site-contact-studio__grid {
  display: grid;
  grid-template-columns: .95fr .72fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.site-contact-studio .site-section__head h2,
.site-contact-studio .site-section__head p,
.site-contact-studio .site-richtext {
  color: #fff;
}

.site-contact-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 196, 31, .2);
  color: var(--site-red);
  font-weight: var(--site-weight-bold);
}

.site-contact-studio .site-contact-kicker {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.site-contact-form--studio {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(18px);
}

.site-contact-form--studio input,
.site-contact-form--studio textarea {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .94);
}

.site-image-cta {
  min-height: 360px;
  padding: clamp(34px, 7vw, 82px);
  background-size: cover;
  background-position: center;
}

.site-image-cta h2 {
  max-width: 760px;
  color: var(--site-white);
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.site-trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-category-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-category-showcase a {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 18px;
  border-radius: var(--site-radius);
  color: var(--site-white);
  background: linear-gradient(135deg, var(--color-navy), var(--color-primary));
  box-shadow: var(--site-shadow);
}

.site-category-showcase img {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: 62%;
  max-height: 150px;
  object-fit: contain;
  opacity: .78;
}

.site-category-showcase span {
  position: relative;
  z-index: 1;
  font-weight: var(--site-weight-bold);
}

.site-combo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-faq-list {
  grid-template-columns: 1fr;
}

.site-faq-card {
  padding: 20px 22px;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  background: var(--site-white);
}

.site-feature-card,
.site-product-card,
.site-dev-state {
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--vk-bg-main);
  box-shadow: var(--vk-shadow-card);
}

.site-feature-card {
  padding: 20px;
}

.site-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.site-feature-card a {
  color: var(--site-brand);
  font-weight: var(--site-weight-bold);
}

.site-product-card__image {
  position: relative;
  display: block;
  background: var(--site-soft);
}

.site-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--site-white);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  font-size: .7rem;
  font-weight: var(--site-weight-bold);
}

.site-product-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .32s ease;
}

.site-product-card:hover img {
  transform: scale(1.045);
}

.site-product-card:hover {
  box-shadow: var(--vk-shadow-hover);
}

.site-product-card__body {
  padding: 15px;
}

.site-product-card__body p {
  margin: 0 0 6px;
  color: var(--site-muted);
  font-size: .84rem;
}

.site-product-card__body strong,
.site-product-detail__price {
  display: inline-block;
  margin-top: 12px;
  color: var(--vk-buy);
  font-size: 1.02rem;
}

.site-product-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-product-card__price span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--color-accent-hover);
  background: #fff1ec;
  font-size: .82rem;
  font-weight: var(--site-weight-bold);
}

.site-product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  margin-top: 16px;
}

.site-mini-btn,
.site-wish-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 14px;
  color: var(--site-brand);
  background: rgba(0, 87, 200, .08);
  font: inherit;
  font-size: .88rem;
  font-weight: var(--site-weight-bold);
  cursor: pointer;
}

.site-mini-btn--warm {
  color: var(--site-white);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
}

.site-wish-btn {
  width: 42px;
  color: var(--vk-text-muted);
  background: var(--vk-bg-main);
  border: 1px solid var(--vk-border);
  font-size: 1.15rem;
}

.site-wish-btn.is-active {
  color: var(--vk-love);
  background: var(--vk-love-soft);
  border-color: var(--vk-love-border);
}

.site-commit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.site-commit-grid article {
  padding: 26px;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  background: var(--site-white);
  box-shadow: 0 14px 38px rgba(7, 23, 51, .08);
}

.site-commit-grid strong {
  color: var(--site-warm);
  font-size: 2.4rem;
  line-height: 1;
}

.site-promo,
.site-cta {
  display: grid;
  gap: 20px;
  padding: clamp(30px, 6vw, 62px);
  border-radius: calc(var(--site-radius) + 10px);
  color: var(--site-white);
  background:
    linear-gradient(135deg, rgba(0, 87, 200, .95), rgba(0, 167, 111, .86)),
    radial-gradient(circle at 95% 10%, rgba(255, 176, 32, .4), transparent 16rem);
  box-shadow: var(--site-shadow);
}

.site-cta {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.site-product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 44px;
  align-items: start;
}

.site-product-hero {
  padding-block: clamp(34px, 6vw, 70px);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 191, 34, .22), transparent 20rem),
    radial-gradient(circle at 88% 10%, rgba(7, 31, 131, .12), transparent 22rem),
    linear-gradient(180deg, #fff 0%, #eef7ff 100%);
}

.site-product-detail__media,
.site-product-detail__summary {
  border: 1px solid var(--site-line);
  border-radius: calc(var(--site-radius) + 8px);
  background: var(--site-white);
  box-shadow: var(--site-shadow);
}

.site-product-detail__media {
  position: sticky;
  top: 132px;
  overflow: hidden;
}

.site-product-detail__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.site-import-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
  padding: 14px;
}

.site-import-gallery a,
.site-import-gallery button {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  color: var(--site-blue);
  background: #fff;
  font-size: .78rem;
  font-weight: var(--site-weight-bold);
  overflow: hidden;
  cursor: pointer;
}

.site-import-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  aspect-ratio: 1;
  object-fit: cover;
}

.site-product-detail__summary {
  padding: clamp(24px, 4vw, 42px);
}

.site-product-detail__summary h1 {
  margin-bottom: 14px;
}

.site-product-detail__summary > p:not(.site-eyebrow) {
  color: var(--site-muted);
  font-size: .98rem;
}

.site-product-detail__price {
  display: inline-flex;
  margin-top: 12px;
  color: var(--site-brand-2);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -.04em;
}

.site-product-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.site-product-perks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--color-primary-hover);
  background: #eef6ff;
  font-size: .82rem;
  font-weight: var(--site-weight-strong);
}

.site-product-perks span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--site-warm);
}

.site-options {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.site-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  background: var(--site-soft);
  cursor: pointer;
}

.site-option img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
}

.site-option.is-selected {
  border-color: var(--site-brand);
  background: rgba(0, 87, 200, .1);
  box-shadow: 0 0 0 4px rgba(0, 87, 200, .08);
}

.site-import-attributes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.site-import-attributes h2 {
  margin: 0 0 6px;
  color: var(--site-blue);
  font-size: 1.35rem;
}

.site-import-attributes div {
  padding: 16px;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  background: #fff;
}

.site-import-attributes span {
  display: block;
  color: var(--site-muted);
  font-size: .8rem;
}

.site-import-attributes strong {
  display: block;
  margin-top: 4px;
  color: var(--site-ink);
}

.site-import-attributes p {
  margin: 6px 0 0;
  color: var(--site-muted);
  line-height: 1.55;
}

.site-buybar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-top: 22px;
}

.site-buybar label {
  display: grid;
  gap: 6px;
  color: var(--site-muted);
  font-weight: 700;
}

.site-qty {
  width: 98px;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  color: var(--site-ink);
  font: inherit;
}

.site-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.site-cart-panel,
.site-cart-summary {
  border: 1px solid var(--site-line);
  border-radius: calc(var(--site-radius) + 6px);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--site-shadow);
}

.site-cart-panel,
.site-cart-summary {
  padding: 22px;
}

.site-cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 120px auto;
  gap: 16px;
  align-items: center;
  padding-block: 16px;
  border-bottom: 1px solid var(--site-line);
}

.site-cart-item:last-child {
  border-bottom: 0;
}

.site-cart-item img {
  width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  object-fit: cover;
  background: var(--site-soft);
}

.site-cart-item p {
  margin: 4px 0;
  color: var(--site-muted);
}

.site-cart-item input {
  width: 88px;
  min-height: 42px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  padding: 6px 10px;
}

.site-cart-item button,
.site-cart-summary button {
  border: 0;
  color: var(--color-accent-hover);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.site-cart-empty {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 24px;
  color: var(--site-muted);
}

.site-cart-empty[hidden] {
  display: none;
}

.site-cart-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.site-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 14px;
  border-block: 1px solid var(--site-line);
}

.site-checkout-form {
  display: grid;
  gap: 18px;
}

.site-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.site-field {
  display: grid;
  gap: 7px;
  color: var(--site-muted);
  font-weight: 750;
}

.site-field--full {
  grid-column: 1 / -1;
}

.site-field input,
.site-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--site-line);
  border-radius: 15px;
  color: var(--site-ink);
  background: var(--site-white);
  font: inherit;
}

.site-field textarea {
  min-height: 94px;
  resize: vertical;
}

.site-radio-list {
  display: grid;
  gap: 10px;
}

.site-radio-list label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  background: var(--site-soft);
}

.site-checkout-list {
  display: grid;
  gap: 12px;
}

.site-checkout-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--site-line);
}

.site-checkout-item img {
  width: 64px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
}

.site-checkout-item span,
.site-checkout-item small {
  display: block;
  color: var(--site-muted);
}

.site-checkout-status {
  color: var(--site-brand);
  font-weight: 800;
}

.site-article-cover {
  display: block;
  width: 100%;
  max-height: 520px;
  margin-bottom: 24px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--site-shadow);
}

.site-article-hero {
  padding-block: clamp(34px, 6vw, 76px);
  color: var(--site-white);
  background:
    linear-gradient(135deg, rgba(7, 31, 131, .96), rgba(213, 9, 47, .86)),
    radial-gradient(circle at 85% 20%, rgba(255, 191, 34, .38), transparent 22rem);
}

.site-article-hero .site-eyebrow {
  color: #ffdf7d;
}

.site-article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
}

.site-article-hero h1 {
  max-width: 840px;
}

.site-article-hero p:not(.site-eyebrow) {
  color: rgba(255, 255, 255, .78);
}

.site-article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, .18);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}

.site-section--article .site-richtext {
  color: #29364c;
  font-size: .98rem;
}

.site-section--article .site-richtext h2,
.site-section--article .site-richtext h3 {
  margin-top: 1.4em;
  margin-bottom: .55em;
  color: var(--site-ink);
}

.site-section--article .site-richtext p,
.site-section--article .site-richtext ul,
.site-section--article .site-richtext ol {
  margin-top: 0;
  margin-bottom: 1em;
}

.site-section--article .site-richtext img {
  height: auto;
  margin: 20px auto;
  border-radius: 22px;
}

.site-dev-state {
  display: grid;
  gap: 6px;
  padding: 22px;
  color: var(--site-muted);
}

.site-dev-state strong {
  color: var(--site-ink);
  font-size: 1.06rem;
}

.site-empty-state {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px dashed rgba(0, 37, 132, .22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 210, 48, .14), rgba(255, 255, 255, .92)),
    #fff;
  color: var(--site-muted);
  text-align: center;
}

.site-empty-state strong {
  color: var(--site-blue);
  font-size: 1.02rem;
}

.site-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.site-pagination a,
.site-pagination span {
  display: inline-grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  padding-inline: 14px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  background: var(--site-white);
  color: var(--site-blue);
  font-size: .88rem;
  font-weight: var(--site-weight-bold);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 37, 132, .06);
}

.site-pagination a:hover,
.site-pagination span {
  border-color: var(--site-red);
  background: var(--site-red);
  color: var(--site-white);
}

.site-footer {
  position: relative;
  padding-block: clamp(44px, 6vw, 76px);
  color: #d8e4f8;
  background:
    radial-gradient(circle at 9% 8%, rgba(255, 159, 28, .18), transparent 24rem),
    radial-gradient(circle at 92% 10%, rgba(50, 123, 255, .18), transparent 22rem),
    linear-gradient(135deg, #071326 0%, #0b1930 54%, #06101f 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .65), transparent 80%);
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(290px, 1.05fr) repeat(4, minmax(170px, .72fr));
  gap: 18px;
  align-items: start;
}

.site-footer h2,
.site-footer h3 {
  color: var(--site-white);
}

.site-footer h2 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(1.45rem, 2.45vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.site-footer h3 {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 12px;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb11f, #ff6a00);
}

.site-footer p {
  margin: 14px 0 0;
  color: #c8d6eb;
  font-size: .9rem;
  line-height: 1.62;
}

.site-footer a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
  color: #d8e4f8;
  font-size: .93rem;
  line-height: 1.45;
  transition: color .18s ease, transform .18s ease;
}

.site-footer a::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: .52em;
  border-radius: 999px;
  background: rgba(255, 177, 31, .72);
  box-shadow: 0 0 0 4px rgba(255, 177, 31, .08);
}

.site-footer a:hover {
  color: #fff3bf;
  transform: translateX(3px);
}

.site-footer__brand,
.site-footer__menu-block,
.site-footer__contact,
.site-footer__grid > div:not(.site-footer__brand):not(.site-footer__menu-block) {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
  backdrop-filter: blur(12px);
}

.site-footer__brand {
  padding: clamp(22px, 3vw, 30px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 177, 31, .18), transparent 34%),
    rgba(255, 255, 255, .065);
}

.site-footer__menu-block,
.site-footer__contact,
.site-footer__grid > div:not(.site-footer__brand):not(.site-footer__menu-block) {
  padding: 22px;
  min-height: 0;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.site-footer__badges a {
  display: inline-flex;
  margin-top: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff7e8;
  background: rgba(255, 122, 26, .22);
  font-size: .86rem;
  font-weight: var(--site-weight-bold);
}

.site-footer__badges a::before {
  display: none;
}

.site-footer__menu-block {
  min-width: 0;
}

.site-footer__menu-block:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 177, 31, .12), rgba(255, 255, 255, .045));
}

.site-footer__menu-block:nth-child(3) {
  background: linear-gradient(180deg, rgba(61, 128, 255, .12), rgba(255, 255, 255, .045));
}

.site-footer__menu-block:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 105, 135, .13), rgba(255, 255, 255, .045));
}

.site-footer__contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));
}

.site-footer__contact-line {
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: #eef5ff;
}

.site-footer__contact-line::before,
.site-footer__socials a::before {
  display: none;
}

.site-footer__contact-line strong {
  color: #fff;
  font-size: .94rem;
  line-height: 1.35;
}

.site-footer__contact-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  color: #071326;
  background: #fff3bf;
  font-size: 1rem;
}

.site-footer__social-title {
  margin-top: 20px;
  color: #fff;
  font-weight: var(--site-weight-bold);
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.site-footer__socials a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-top: 0;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: var(--site-weight-bold);
  line-height: 1;
  transform: none;
}

.site-footer__socials a:hover {
  transform: translateY(-2px);
}

.site-footer__socials .is-facebook {
  background: #1877f2;
}

.site-footer__socials .is-youtube {
  background: #ff0000;
}

.site-footer__socials .is-tiktok {
  background: linear-gradient(135deg, #111, #25f4ee 58%, #fe2c55);
}

.site-footer__socials .is-zalo {
  background: #0068ff;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
}

.site-footer__bottom p {
  margin: 0;
  color: #aebed5;
  font-size: .84rem;
}

.site-footer-install {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #071326;
  background: linear-gradient(135deg, #fff3bf, #ffb11f);
  font: inherit;
  font-size: .86rem;
  font-weight: var(--site-weight-bold);
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(255, 177, 31, .18);
}

.site-footer-install small {
  display: inline-grid;
  min-width: 34px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #071326;
  font-size: .7rem;
}

@media (max-width: 920px) {
  .site-picked-product-card {
    flex-basis: calc((100% - 36px) / 4);
  }

  .site-nav-toggle {
    display: block;
  }

  .site-topbar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-search {
    order: 3;
    flex-basis: 100%;
    max-width: none;
    min-height: 46px;
  }

  .site-header-main__inner {
    flex-wrap: wrap;
    padding-block: 12px;
    min-height: auto;
  }

  .site-logo {
    max-width: 230px;
  }

  .site-logo img {
    width: 66px;
    height: 48px;
  }

  .site-header-actions {
    margin-left: auto;
    gap: 6px;
  }

  .site-action-link {
    min-height: 40px;
    padding: 8px;
  }

  .site-action-link span {
    display: none;
  }

  .site-language {
    display: none;
  }

  .site-menu-bar {
    position: absolute;
    inset: 100% 12px auto;
    display: none;
    max-height: min(72vh, 620px);
    overflow: auto;
    border: 1px solid rgba(0, 37, 132, .08);
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 26px 70px rgba(7, 23, 51, .18);
  }

  .site-menu-bar__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    min-height: auto;
    padding: 16px;
    overflow: initial;
  }

  .site-menu-bar a,
  .site-menu-link {
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    border-radius: 15px;
    color: var(--vk-navy);
    background: #f6f9ff;
    box-shadow: none;
    transform: none;
  }

  .site-menu-item {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .site-submenu {
    position: static;
    display: grid;
    gap: 7px;
    min-width: 0;
    margin-left: 0;
    padding: 8px;
    border: 1px solid rgba(0, 37, 132, .07);
    border-radius: 16px;
    background: linear-gradient(180deg, #fffaf0, #fff);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-submenu::before {
    display: none;
  }

  .site-submenu .site-menu-link {
    color: var(--vk-navy);
    background: rgba(255, 255, 255, .88);
  }

  .site-submenu .site-submenu {
    padding-left: 14px;
    border-style: dashed;
  }

  .site-submenu .site-menu-link:hover {
    color: var(--vk-buy-hover);
    background: var(--vk-yellow-soft);
  }

  .site-nav__icon {
    justify-content: flex-start;
  }

  .site-menu-bar.is-open {
    display: block;
  }

  .site-card-grid,
  .site-card-grid--compact,
  .site-product-grid,
  .site-product-picks,
  .site-product-ad-showcase,
  .site-latest-product-showcase__grid,
  .site-product-orbit,
  .site-product-deal-stack,
  .site-product-spotlight,
  .site-news-grid,
  .site-news-magazine,
  .site-news-timeline,
  .site-news-feature-list,
  .site-latest-news-board__grid,
  .site-news-masonry,
  .site-news-digest,
  .site-contact-split__grid,
  .site-contact-floating__panel,
  .site-contact-minimal__wrap,
  .site-contact-coupon__ticket,
  .site-contact-studio__grid,
  .site-image-mosaic,
  .site-image-duo,
  .site-image-stack,
  .site-layered-images,
  .site-landing-split,
  .site-layered-banner,
  .site-trust-band,
  .site-trust-grid,
  .site-category-showcase,
  .site-combo-grid,
  .site-product-detail__grid,
  .site-article-hero__grid,
  .site-feature-ribbon-wrap,
  .site-cart-layout,
  .site-commit-grid,
  .site-cta {
    grid-template-columns: 1fr;
  }

  .site-category-products__layout {
    grid-template-columns: 1fr;
  }

  .site-category-products__sidebar {
    padding: 12px;
    border: 1px solid var(--vk-border, #e5e7eb);
    border-radius: 16px;
    background: #fff;
  }

  .site-category-products__cat-link i {
    display: none;
  }

  .site-category-products__toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-category-products__submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 4px 0 8px 10px;
    border-style: dashed;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-category-products__cat-item.is-open > .site-category-products__submenu {
    display: grid;
  }

  .site-category-products__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-category-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-quick-buy__grid {
    grid-template-columns: 1fr;
  }

  .site-quick-buy__media img {
    max-height: 360px;
    object-fit: contain;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .site-feature-ribbon-copy {
    position: static;
  }

  .site-feature-ribbon-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .site-feature-ribbon-card::before {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .site-product-detail__media {
    position: static;
  }

  .site-image-mosaic article:first-child,
  .site-product-spotlight .site-product-card:first-child,
  .site-product-orbit .site-product-card:first-child,
  .site-product-deal-stack .site-product-card:first-child,
  .site-news-masonry .site-news-card:first-child,
  .site-news-masonry .site-news-card:nth-child(4),
  .site-news-digest .site-news-card:first-child,
  .site-product-grid--featured .site-product-card:first-child {
    grid-row: auto;
    grid-column: auto;
  }

  .site-product-deal-stack .site-product-card,
  .site-product-deal-stack .site-product-card:first-child,
  .site-news-digest .site-news-card {
    grid-template-columns: 1fr;
  }

  .site-image-stack article:nth-child(2),
  .site-layered-images article:nth-child(even),
  .site-layered-images article {
    transform: none;
  }

  .site-news-magazine .site-news-card:not(:first-child),
  .site-news-timeline .site-news-card,
  .site-news-feature-list .site-news-card,
  .site-product-picks .site-product-card,
  .site-latest-news-item {
    grid-template-columns: 1fr;
  }

  .site-latest-product-card.is-main {
    grid-row: auto;
  }

  .site-contact-form {
    grid-template-columns: 1fr;
  }

  .site-cart-item {
    grid-template-columns: 82px 1fr;
  }

  .site-form-grid {
    grid-template-columns: 1fr;
  }

  .site-voucher-modal__list {
    grid-template-columns: 1fr;
  }

  .site-product-picker__prev {
    left: 4px;
  }

  .site-product-picker__next {
    right: 4px;
  }

  .site-motion-banner {
    padding: 12px 0;
  }

  .site-motion-banner__head {
    display: block;
  }

  .site-motion-banner__viewport {
    aspect-ratio: 5 / 2;
  }

  .site-motion-banner__prev {
    left: 8px;
  }

  .site-motion-banner__next {
    right: 8px;
  }

  .site-motion-banner__nav {
    width: 36px;
    height: 36px;
  }

  .site-motion-banner__dots {
    right: 12px;
    bottom: 10px;
  }

  .site-image-list {
    padding: 12px 0;
  }

  .site-image-list__head {
    display: block;
  }

  .site-image-list__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-picked-product-card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .site-hero__grid {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .site-topbar {
    font-size: .76rem;
  }

  .site-topbar__item::before {
    width: 20px;
    height: 20px;
    font-size: .68rem;
  }

  .site-header-main__inner {
    gap: 10px;
  }

  .site-category-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-category-products__sorts button {
    flex: 1 1 calc(50% - 8px);
    padding: 0 10px;
  }

  .site-category-products__sorts select {
    flex: 1 1 100%;
    min-width: 0;
  }

  .site-category-products__pager {
    gap: 7px;
  }

  .site-category-products__icon {
    width: 31px;
    height: 31px;
  }

  .site-quick-buy__panel {
    width: min(100vw - 16px, 540px);
    max-height: 92vh;
    margin-top: 4vh;
    border-radius: 14px;
  }

  .site-quick-buy__grid {
    padding: 12px;
  }

  .site-quick-buy__main h2 {
    font-size: 17px;
  }

  .site-quick-buy__option {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }

  .site-quick-buy__option img {
    width: 48px;
    height: 48px;
  }

  .site-quick-buy__option-price {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-items: start;
    min-width: 0;
  }

  .site-quick-buy__option-qty {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
  }

  .site-quick-buy__actions {
    grid-template-columns: 1fr;
  }

  .site-logo {
    max-width: 86px;
  }

  .site-search input {
    padding-inline: 10px;
    font-size: .84rem;
  }

  .site-search button {
    padding-inline: 14px;
  }

  .site-section {
    padding-block: 44px;
  }

  .site-voucher-strip {
    padding-block: 14px;
  }

  .site-voucher-strip > .site-container {
    padding: 14px 52px 14px 14px;
  }

  .site-voucher-strip__rail {
    gap: 10px;
    padding-bottom: 3px;
  }

  .site-voucher-strip__nav {
    width: 40px;
    height: 40px;
    font-size: 36px;
  }

  .site-voucher-strip__prev {
    left: 8px;
  }

  .site-voucher-strip__next {
    right: 8px;
  }

  .site-voucher-card {
    flex-basis: min(306px, calc(100vw - 84px));
  }

  .site-voucher-card::before {
    right: 64px;
  }

  .site-product-picker__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-product-picker__rail {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .site-picked-product-card {
    flex-basis: min(164px, 48vw);
  }

  .site-toast {
    right: 16px;
    left: 16px;
    bottom: 18px;
    max-width: none;
    text-align: center;
  }

  .site-footer {
    padding-block: 36px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer__brand,
  .site-footer__menu-block,
  .site-footer__grid > div:not(.site-footer__brand):not(.site-footer__menu-block) {
    border-radius: 22px;
  }

  .site-footer h2 {
    font-size: 1.7rem;
  }

  .site-footer__contact {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer-install {
    justify-content: center;
    width: 100%;
  }
}

/* Authoritative V-Kid35 cart drawer and customer footer. */
html.site-cart-drawer-open,
body.site-cart-drawer-open,
html.site-wishlist-drawer-open,
body.site-wishlist-drawer-open {
  overflow: hidden !important;
}

body .site-cart-drawer,
body .site-wishlist-drawer {
  position: fixed;
  inset: 0;
  z-index: 10020;
  visibility: hidden;
  pointer-events: none;
}

body .site-cart-drawer[aria-hidden="false"],
body .site-wishlist-drawer[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

body .site-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, .55);
  opacity: 0;
  transition: opacity 250ms ease;
  cursor: pointer;
}

body .site-cart-drawer[aria-hidden="false"] .site-cart-drawer__backdrop {
  opacity: 1;
}

body .site-cart-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(440px, 100vw);
  max-width: 100vw;
  height: 100vh;
  padding: 0;
  border-left: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: -24px 0 60px rgba(20, 32, 51, .16);
  transform: translateX(100%);
  transition: transform 250ms ease;
}

body .site-cart-drawer[aria-hidden="false"] .site-cart-drawer__panel {
  transform: translateX(0);
}

body .site-wishlist-drawer .site-cart-drawer__backdrop {
  opacity: 0;
}

body .site-wishlist-drawer[aria-hidden="false"] .site-cart-drawer__backdrop {
  opacity: 1;
}

body .site-wishlist-drawer .site-cart-drawer__panel {
  transform: translateX(100%);
}

body .site-wishlist-drawer[aria-hidden="false"] .site-cart-drawer__panel {
  transform: translateX(0);
}

body .site-cart-drawer__head {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 18px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

body .site-cart-drawer__title {
  color: #142033;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

body .site-cart-drawer__subtitle {
  margin-top: 4px;
  color: #667085;
  font-size: 13px;
  font-weight: 500;
}

body .site-cart-drawer__close,
body .site-cart-drawer__head button {
  display: inline-grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f7f8fa;
  color: #142033;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

body .site-cart-drawer__close:hover,
body .site-cart-drawer__head button:hover {
  background: #fcf6ec;
}

body .site-cart-drawer__body {
  min-height: 0;
  overflow-y: auto;
  padding: 20px 28px;
  background: #fff;
}

body .site-cart-drawer__empty {
  display: grid;
  min-height: 100%;
  place-content: center;
  justify-items: center;
  gap: 10px;
  margin: 0;
  padding: 28px 10px;
  border: 0;
  background: transparent;
  color: #667085;
  text-align: center;
}

body .site-cart-drawer__empty[hidden] {
  display: none;
}

body .site-cart-drawer__empty-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: #fff8ec;
  color: #ff8a00;
  font-size: 28px;
}

body .site-cart-drawer__empty strong {
  color: #142033;
  font-size: 16px;
  font-weight: 800;
}

body .site-cart-drawer__empty .site-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f7f8fa;
  color: #142033;
  font-weight: 800;
}

body .site-cart-drawer__list {
  min-height: 0;
  overflow: visible;
  padding: 0;
}

body .site-cart-drawer__list .site-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 34px 16px 0;
  border-bottom: 1px solid #f1f5f9;
  background: transparent;
  box-shadow: none;
}

body .site-cart-drawer__list .site-cart-item img {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 14px;
  background: #f7f8fa;
  object-fit: contain;
}

body .site-cart-item__main {
  min-width: 0;
}

body .site-cart-drawer__list .site-cart-item h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #142033;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body .site-cart-drawer__list .site-cart-item h3 a {
  color: inherit;
  text-decoration: none;
}

body .site-cart-drawer__list .site-cart-item p {
  margin: 4px 0 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.35;
}

body .site-cart-drawer__list .site-cart-item strong {
  display: block;
  margin-top: 6px;
  color: #ff8a00;
  font-size: 15px;
  font-weight: 800;
}

body .site-cart-item__controls {
  display: inline-flex;
  width: max-content;
  height: 40px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

body .site-cart-item__controls button,
body .site-cart-item__controls input {
  display: grid;
  width: 38px;
  height: 38px;
  min-height: 0;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #ff8a00;
  font-size: 15px;
  font-weight: 800;
  line-height: 38px;
  text-align: center;
}

body .site-cart-item__controls input {
  width: 46px;
  border-right: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
  color: #142033;
  appearance: textfield;
}

body .site-cart-item__controls input::-webkit-outer-spin-button,
body .site-cart-item__controls input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

body .site-cart-drawer__list .site-cart-item .site-cart-item__remove {
  position: absolute;
  top: 14px;
  right: 0;
  margin: 0;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: #d92d20;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

body .site-cart-drawer__foot {
  display: block;
  padding: 18px 28px 20px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

body .site-cart-drawer__foot[hidden] {
  display: none;
}

body .site-cart-drawer__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: #142033;
  font-size: 15px;
}

body .site-cart-drawer__subtotal strong {
  color: #ff8a00;
  font-size: 23px;
  font-weight: 900;
  white-space: nowrap;
}

body .site-cart-drawer__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

body .site-cart-drawer__actions .site-btn {
  display: inline-flex;
  height: 48px;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

body .site-cart-drawer__actions .site-btn--ghost {
  border: 1px solid #e5e7eb;
  background: #f7f8fa;
  color: #142033;
}

body .site-cart-drawer__actions .site-btn--checkout {
  border: 1px solid #ff8a00;
  background: #ff8a00;
  color: #fff;
}

body .site-cart-drawer__actions .site-btn--checkout:hover {
  background: #e97800;
}

body .site-cart-drawer__actions .site-btn.is-disabled {
  opacity: .45;
  pointer-events: none;
  cursor: not-allowed;
}

body .site-wishlist-drawer__list {
  display: grid;
  gap: 12px;
}

body .site-wishlist-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

body .site-wishlist-item__image img {
  display: block;
  width: 82px;
  height: 82px;
  border-radius: 14px;
  background: #fff8ec;
  object-fit: cover;
}

body .site-wishlist-item__main {
  min-width: 0;
}

body .site-wishlist-item h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #142033;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body .site-wishlist-item h3 a {
  color: inherit;
  text-decoration: none;
}

body .site-wishlist-item p {
  margin: 5px 0 10px;
  color: #667085;
  font-size: 12px;
}

body .site-wishlist-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body .site-wishlist-item__actions a,
body .site-wishlist-item__actions button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #142033;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

body .site-wishlist-item__actions a {
  border-color: #ff9f1c;
  background: #ff9f1c;
  color: #fff;
}

body .site-wishlist-item__actions button {
  color: #ef4444;
}

body .site-footer {
  margin-top: 42px;
  padding: 48px 0 0;
  background: #142033;
  color: #c8d0dc;
}

body .site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 34px;
}

body .site-footer__logo {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: #fcf6ec;
  object-fit: contain;
}

body .site-footer h2,
body .site-footer h3,
body .site-footer__brand strong {
  color: #fff;
}

body .site-footer h3 {
  margin-bottom: 12px;
  font-size: 15px;
}

body .site-footer__brand strong {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
}

body .site-footer p,
body .site-footer a {
  color: #c8d0dc;
}

body .site-footer a {
  min-height: 36px;
  text-decoration: none;
}

body .site-footer a:hover {
  color: #ffd12a;
}

body .site-footer__bottom {
  margin-top: 34px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 900px) {
  body .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  body .site-cart-drawer__panel {
    width: 100%;
    max-width: 100%;
  }

  body .site-cart-drawer__head {
    padding: 20px 18px 16px;
  }

  body .site-cart-drawer__body {
    padding: 16px 18px;
  }

  body .site-cart-drawer__foot {
    padding: 16px 18px 18px;
  }

  body .site-cart-drawer__list .site-cart-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding-right: 32px;
  }

  body .site-cart-drawer__list .site-cart-item img {
    width: 68px;
    height: 68px;
    border-radius: 12px;
  }

  body .site-cart-drawer__subtotal strong {
    font-size: 21px;
  }

  body .site-footer {
    padding-top: 36px;
  }

  body .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body .site-footer__menu-block a,
  body .site-footer__contact a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 390px) {
  body .site-cart-drawer__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .site-cart-drawer__backdrop,
  body .site-cart-drawer__panel {
    transition: none;
  }
}

.site-notfound {
  min-height: 52vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 210, 48, .22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 37, 132, .16), transparent 32%),
    linear-gradient(180deg, #fff8ee 0%, #eef8ff 100%);
}

.site-notfound-card {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(0, 37, 132, .1);
  border-radius: 32px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--site-shadow);
  text-align: center;
}

.site-notfound-card__eyebrow {
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  border-radius: 28px;
  background: var(--site-red);
  color: var(--site-white);
  font-size: 1.15rem;
  font-weight: var(--site-weight-bold);
  box-shadow: 0 18px 34px rgba(215, 13, 45, .24);
}

.site-notfound-card h1 {
  margin: 0;
  color: var(--site-blue);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: .98;
}

.site-notfound-card p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--site-muted);
  font-size: .96rem;
}

.site-notfound-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 18px;
  margin-top: 28px;
  color: var(--site-blue);
  font-weight: var(--site-weight-bold);
}

/* Product detail keeps the familiar marketplace reading order: media, buy box,
   shop information, then specifications and description. */
.site-product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 14px 4px;
  color: var(--site-muted);
  font-size: .82rem;
}

.site-product-breadcrumb a {
  color: var(--site-blue);
}

.site-product-breadcrumb strong {
  max-width: 48ch;
  overflow: hidden;
  color: var(--site-ink);
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-product-hero--shop {
  padding-block: 16px 28px;
  background: #f5f5f5;
}

.site-product-hero--shop .site-product-detail__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 0;
  background: var(--site-white);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.site-product-hero--shop .site-product-detail__media,
.site-product-hero--shop .site-product-detail__summary {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-product-hero--shop .site-product-detail__media {
  position: static;
  padding: 24px;
  border-right: 1px solid #f0f0f0;
}

.site-product-main-image {
  display: grid;
  place-items: center;
  min-height: 440px;
  background: #fff;
}

.site-product-main-image img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.site-product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
}

.site-product-thumbs button {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.site-product-thumbs button.is-active {
  border-color: var(--site-red);
  box-shadow: 0 0 0 1px var(--site-red);
}

.site-product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-product-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--site-muted);
  font-size: .85rem;
}

.site-product-share a,
.site-product-share button {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--site-white);
  background: #1877f2;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-product-share a:nth-of-type(2) {
  background: #087bea;
}

.site-product-share button {
  width: auto;
  margin-left: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--site-red);
  background: #fff5f5;
  font-size: 1rem;
}

.site-product-hero--shop .site-product-detail__summary {
  padding: 30px 32px;
}

.site-product-hero--shop .site-product-detail__summary h1 {
  margin: 6px 0 12px;
  color: #222;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  line-height: 1.38;
}

.site-product-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #ee4d2d;
  font-size: .84rem;
}

.site-product-rating__divider {
  color: #ddd;
}

.site-product-pricebox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px -32px 18px;
  padding: 16px 32px;
  background: #fff5f1;
}

.site-product-pricebox .site-product-detail__price {
  margin: 0;
  color: #ee4d2d;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
}

.site-product-discount {
  padding: 4px 7px;
  color: #ee4d2d;
  background: #ffe8e1;
  font-size: .76rem;
  font-weight: 700;
}

.site-product-lead {
  color: #555;
  font-size: .9rem;
  line-height: 1.65;
}

.site-product-voucher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  background: #fffaf5;
  font-size: .84rem;
}

.site-product-voucher span {
  padding: 4px 7px;
  color: #ee4d2d;
  background: #fff0eb;
  font-weight: 700;
}

.site-product-voucher p {
  margin: 0;
  color: #555;
}

.site-product-hero--shop .site-product-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.site-product-hero--shop .site-product-perks span {
  min-height: 0;
  padding: 3px 0;
  color: #555;
  background: transparent;
  font-size: .8rem;
  font-weight: 500;
}

.site-product-hero--shop .site-product-perks span::before {
  background: #ee4d2d;
}

.site-buybar--shop {
  align-items: center;
  margin-top: 28px;
}

.site-buybar--shop label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 500;
}

.site-buybar--shop .site-qty {
  width: 74px;
  min-height: 40px;
  border-radius: 2px;
}

.site-buybar--shop .site-btn {
  min-height: 42px;
  border-radius: 2px;
  font-size: .88rem;
}

.site-btn--add {
  color: #ee4d2d;
  border: 1px solid #ee4d2d;
  background: #fff5f1;
}

.site-btn--buy {
  color: #fff;
  background: #ee4d2d;
}

.site-product-shopbar {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.site-product-shopbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 18px;
}

.site-product-shopavatar {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: var(--site-red);
  background: #fff;
  font-size: 1.3rem;
  font-weight: 800;
}

.site-product-shopbar__inner strong {
  color: #222;
  font-size: .95rem;
}

.site-product-shopbar__inner p {
  margin: 4px 0 0;
  color: var(--site-muted);
  font-size: .8rem;
}

.site-product-shopbar__inner .site-btn {
  margin-left: auto;
  min-height: 36px;
  border-radius: 2px;
  font-size: .8rem;
}

.site-product-information {
  background: #f5f5f5;
}

.site-product-information__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: start;
}

.site-product-content-panel,
.site-product-side-panel,
.site-product-reviews > .site-container {
  padding: 24px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.site-product-content-panel h2,
.site-product-reviews h2 {
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
  color: #333;
  font-size: 1.02rem;
  font-weight: 700;
}

.site-product-content-panel h2:not(:first-child) {
  margin-top: 30px;
}

.site-product-specs {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.site-product-specs div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  font-size: .86rem;
}

.site-product-specs span {
  color: #888;
}

.site-product-specs strong {
  color: #555;
  font-weight: 500;
}

.site-product-side-panel {
  position: sticky;
  top: 118px;
}

.site-product-side-panel h3 {
  margin-top: 0;
  color: #333;
  font-size: 1rem;
}

.site-product-side-panel p {
  padding-block: 10px;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  font-size: .84rem;
  line-height: 1.55;
}

.site-product-side-panel .site-btn {
  width: 100%;
  margin-top: 12px;
  border-radius: 2px;
}

.site-product-reviews {
  padding-top: 0;
  background: #f5f5f5;
}

@media (max-width: 900px) {
  .site-product-hero--shop .site-product-detail__grid,
  .site-product-information__grid {
    grid-template-columns: 1fr;
  }

  .site-product-hero--shop .site-product-detail__media {
    border-right: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .site-product-side-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-product-hero--shop .site-product-detail__media,
  .site-product-hero--shop .site-product-detail__summary,
  .site-product-content-panel,
  .site-product-side-panel,
  .site-product-reviews > .site-container {
    padding: 16px;
  }

  .site-product-pricebox {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .site-product-main-image {
    min-height: 300px;
  }

  .site-product-hero--shop .site-product-perks {
    grid-template-columns: 1fr;
  }

  .site-buybar--shop {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-buybar--shop label {
    grid-column: 1 / -1;
  }

  .site-product-shopbar__inner {
    flex-wrap: wrap;
  }

  .site-product-shopbar__inner .site-btn {
    width: 100%;
    margin-left: 0;
  }

  .site-product-specs div {
    grid-template-columns: 110px minmax(0, 1fr);
  }
}

/* Runtime theme bindings shared by every customer-facing page. */
body {
  color: var(--vk-text-body);
  background-color: var(--vk-bg-main);
}

body .site-main {
  color: var(--vk-text-body);
  background-color: var(--vk-bg-main);
}

body .site-header-shell,
body .site-header-main {
  color: var(--vk-header-text);
  background: linear-gradient(180deg, var(--vk-header), var(--vk-bg-main));
}

body .site-logo,
body .site-header-actions,
body .site-action-link,
body .site-language,
body .site-menu-bar a,
body .site-menu-link {
  color: var(--vk-header-text);
}

body .site-menu-bar a:hover,
body .site-menu-item:hover > .site-menu-link {
  color: var(--vk-buy-hover);
}

body .site-topbar {
  color: var(--vk-footer-muted);
  background: var(--vk-footer);
}

body .site-menu-bar {
  border-color: var(--vk-border);
  background: linear-gradient(180deg, var(--vk-bg-warm), var(--vk-header));
}

body .site-search,
body .site-submenu,
body .site-cart-drawer__panel,
body .site-cart-drawer__foot,
body .site-wishlist-item,
body .site-product-card,
body .site-feature-card,
body .site-news-card,
body .site-commit-grid article,
body .site-product-detail__media,
body .site-product-detail__summary,
body .site-product-content-panel,
body .site-product-side-panel,
body .site-product-shopbar__inner,
body .site-cart-panel,
body .site-cart-summary,
body .site-checkout-form,
body .site-checkout-list,
body .site-empty-state,
body .site-dev-state {
  border-color: var(--vk-border);
  background-color: var(--vk-surface);
}

body .site-section--soft,
body .site-category-strip,
body .site-voucher-strip,
body .site-product-reviews,
body .site-cart-drawer__empty,
body .site-action-link,
body .site-language,
body .site-nav-toggle {
  border-color: var(--vk-border);
  background: var(--vk-bg-soft);
}

body .site-page-title,
body .site-product-pricebox,
body .site-product-card__image,
body .site-product-main-image,
body .site-product-shopavatar,
body .site-product-voucher {
  background: var(--vk-bg-warm);
}

body .site-search button,
body .site-btn:not(.site-btn--light):not(.site-btn--ghost),
body .site-mini-btn--warm,
body .site-cart-drawer__actions .site-btn--checkout,
body .site-wishlist-item__actions a {
  border-color: var(--vk-buy);
  color: var(--vk-buy-text);
  background: var(--vk-buy);
}

body .site-search button:hover,
body .site-btn:not(.site-btn--light):not(.site-btn--ghost):hover,
body .site-mini-btn--warm:hover,
body .site-cart-drawer__actions .site-btn--checkout:hover {
  border-color: var(--vk-buy-hover);
  color: var(--vk-buy-text);
  background: var(--vk-buy-hover);
}

body .site-btn--light {
  color: var(--vk-text-main);
  background: var(--vk-surface);
}

body .site-btn--ghost,
body .site-mini-btn,
body .site-cart-drawer__actions .site-btn--ghost {
  border-color: var(--vk-border);
  color: var(--color-primary);
  background: var(--vk-bg-soft);
}

body .site-product-card h3 a,
body .site-feature-card h3 a,
body .site-news-card h3 a,
body .site-product-detail__summary h1,
body .site-product-content-panel h2,
body .site-product-side-panel h3,
body .site-cart-drawer__title,
body .site-wishlist-item h3 a {
  color: var(--vk-text-main);
}

body .site-product-card p,
body .site-feature-card p,
body .site-news-card p,
body .site-product-detail__summary > p,
body .site-product-side-panel p,
body .site-cart-drawer__subtitle,
body .site-wishlist-item p,
body .site-product-specs span {
  color: var(--vk-text-muted);
}

body .site-product-card__price strong,
body .site-product-detail__price,
body .site-product-price,
body .site-cart-drawer__subtotal strong {
  color: var(--vk-buy);
}

body .site-footer {
  color: var(--vk-footer-muted);
  background: var(--vk-footer);
}

body .site-footer h2,
body .site-footer h3,
body .site-footer__brand strong {
  color: var(--vk-footer-text);
}

body .site-footer p,
body .site-footer a,
body .site-footer__bottom,
body .site-footer-install small {
  color: var(--vk-footer-muted);
}

body .site-footer a:hover,
body .site-footer a:focus-visible {
  color: var(--vk-buy);
}

.vkid-product-page {
  --cream: var(--vk-bg-warm);
  --navy: var(--vk-text-main);
  --orange: var(--vk-buy);
  --orange2: var(--vk-buy-hover);
  --line: var(--vk-border);
  --muted: var(--vk-text-muted);
  --red: #ef4444;
  padding-bottom: 42px;
  background: var(--vk-bg-soft);
  color: var(--vk-text-body);
  font-family: "Be Vietnam Pro", sans-serif;
}

.vkid-product-page * {
  box-sizing: border-box;
}

.vkid-product-page button,
.vkid-product-page input {
  font: inherit;
}

.vkid-wrap {
  width: min(1200px, calc(100% - 32px));
  margin: auto;
}

.vkid-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.vkid-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}

.vkid-breadcrumb strong {
  max-width: 55ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vkid-top {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--vk-surface);
  box-shadow: 0 14px 36px rgba(20, 32, 51, .08);
}

.vkid-gallery {
  position: relative;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.vkid-gallery-badge {
  position: absolute;
  z-index: 1;
  top: 38px;
  left: 38px;
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--vk-buy-text);
  font-size: 12px;
  font-weight: 700;
}

.vkid-main-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: var(--cream);
  cursor: zoom-in;
}

.vkid-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vkid-thumbs {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 15px 0 2px;
}

.vkid-thumb {
  position: relative;
  display: grid;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  place-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--vk-surface);
  cursor: pointer;
}

.vkid-thumb.is-active {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.vkid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vkid-gallery-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.vkid-share,
.vkid-favorite {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--vk-surface);
  color: var(--navy);
  cursor: pointer;
}

.vkid-buybox {
  padding: 30px 32px;
}

.vkid-source {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.vkid-buybox h1 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
}

.vkid-rating {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #f59e0b;
  font-size: 13px;
}

.vkid-rating span:not(:first-child) {
  color: var(--muted);
}

.vkid-pricebox {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px -32px;
  padding: 17px 32px;
  background: var(--cream);
}

.vkid-price {
  color: var(--orange);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
}

.vkid-old-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 14px;
}

.vkid-discount {
  padding: 4px 7px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 12px;
  font-weight: 700;
}

.vkid-lead {
  color: var(--vk-text-body);
  font-size: 14px;
  line-height: 1.65;
}

.vkid-voucher,
.vkid-shipping,
.vkid-trust {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 55%, transparent);
  font-size: 13px;
}

.vkid-voucher > strong,
.vkid-shipping > strong,
.vkid-trust > strong {
  color: var(--muted);
  font-weight: 600;
}

.vkid-voucher code {
  margin-right: 8px;
  padding: 4px 7px;
  background: #fff1dd;
  color: #c2410c;
  font-family: inherit;
  font-weight: 700;
}

.vkid-variants {
  display: grid;
  gap: 9px;
  margin: 20px 0;
}

.vkid-variants-title {
  margin: 0 0 2px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.vkid-variant-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vkid-variant {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 118px;
  min-height: 46px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--vk-surface);
  color: var(--vk-text-body);
  cursor: pointer;
}

.vkid-variant img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 4px;
}

.vkid-variant__text {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.vkid-variant__text strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
}

.vkid-variant__text small {
  color: #94a3b8;
  font-size: 11px;
  text-decoration: line-through;
}

.vkid-variant__text b {
  color: var(--orange);
  font-size: 12px;
}

.vkid-variant__text em {
  width: fit-content;
  padding: 2px 5px;
  border-radius: 6px;
  background: #fee2e2;
  color: #ef4444;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.vkid-variant.is-selected {
  border-color: var(--orange);
  color: #c2410c;
  background: var(--cream);
  box-shadow: 0 0 0 1px var(--orange);
}

.vkid-stock {
  min-height: 20px;
  color: #16a34a;
  font-size: 13px;
}

.vkid-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.vkid-qty {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.vkid-qty button {
  width: 38px;
  height: 42px;
  border: 0;
  background: var(--vk-surface);
  color: var(--navy);
  cursor: pointer;
}

.vkid-qty input {
  width: 52px;
  height: 42px;
  border: 0;
  border-inline: 1px solid var(--line);
  outline: 0;
  text-align: center;
}

.vkid-actions,
.vkid-sticky-buy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.vkid-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.vkid-btn-add {
  border: 1px solid var(--orange);
  background: var(--vk-surface);
  color: var(--orange);
}

.vkid-btn-buy {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--vk-buy-text);
}

.vkid-btn-buy:hover {
  background: var(--orange2);
}

.vkid-message {
  min-height: 20px;
  margin: 10px 0 0;
  color: #dc2626;
  font-size: 13px;
}

.vkid-shop,
.vkid-tabs {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--vk-surface);
}

.vkid-shop {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px;
}

.vkid-shop-logo {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
}

.vkid-shop-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vkid-shop h2 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}

.vkid-shop p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 13px;
}

.vkid-shop-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vkid-shop-actions a {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--navy);
  font-size: 12px;
  text-decoration: none;
}

.vkid-shop-actions a:first-child {
  border-color: var(--orange);
  color: #c2410c;
  background: var(--cream);
}

.vkid-shop-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--line) 55%, transparent);
}

.vkid-shop-stats div {
  display: grid;
  gap: 3px;
  font-size: 12px;
}

.vkid-shop-stats strong {
  color: var(--orange);
  font-size: 14px;
}

.vkid-shop-stats span {
  color: var(--muted);
}

.vkid-tab-list {
  display: flex;
  overflow: auto;
  border-bottom: 1px solid var(--line);
}

.vkid-tab {
  flex: 1;
  min-width: 140px;
  min-height: 52px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: var(--vk-surface);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.vkid-tab.is-active {
  border-bottom-color: var(--orange);
  color: var(--navy);
}

.vkid-tab-panel {
  display: none;
  padding: 28px;
}

.vkid-tab-panel.is-active {
  display: block;
}

.vkid-tab-panel h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 19px;
}

.vkid-richtext {
  color: var(--vk-text-body);
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.vkid-richtext img {
  max-width: 100%;
  height: auto;
}

.vkid-specs {
  display: grid;
  gap: 10px;
}

.vkid-spec {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 55%, transparent);
  font-size: 14px;
}

.vkid-spec span {
  color: var(--muted);
}

.vkid-spec strong {
  color: var(--vk-text-body);
  font-weight: 500;
}

.vkid-review-empty,
.vkid-policy {
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
}

.vkid-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10001;
  max-width: 320px;
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 39, 71, .25);
  font-size: 13px;
}

.vkid-toast[hidden],
.vkid-lightbox[hidden] {
  display: none;
}

.vkid-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 39, 71, .78);
}

.vkid-lightbox-card {
  position: relative;
  width: min(900px, 100%);
  max-height: 90vh;
  padding: 20px;
  border-radius: 16px;
  background: var(--vk-surface);
}

.vkid-lightbox-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 28px;
  cursor: pointer;
}

.vkid-lightbox img {
  display: block;
  width: 100%;
  height: min(75vh, 700px);
  object-fit: contain;
}

.vkid-sticky-buy {
  display: none;
}

@media (max-width: 1000px) {
  .vkid-top {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  }
}

@media (max-width: 760px) {
  .vkid-product-page {
    padding-bottom: 70px;
  }

  .vkid-wrap {
    width: calc(100% - 20px);
  }

  .vkid-top {
    grid-template-columns: 1fr;
  }

  .vkid-gallery {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vkid-gallery,
  .vkid-buybox {
    padding: 18px;
  }

  .vkid-pricebox {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .vkid-shop {
    grid-template-columns: auto 1fr;
  }

  .vkid-shop-actions {
    grid-column: 1 / -1;
  }

  .vkid-tab-panel {
    padding: 18px;
  }

  .vkid-sticky-buy {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9990;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    margin: 0;
    padding: 9px 10px;
    border-top: 1px solid var(--line);
    background: var(--vk-surface);
    box-shadow: 0 -6px 20px rgba(15, 39, 71, .12);
  }

  .vkid-actions {
    grid-template-columns: 1fr 1.2fr;
  }

  .vkid-spec {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 430px) {
  .vkid-gallery-badge {
    top: 28px;
    left: 28px;
  }

  .vkid-buybox h1 {
    font-size: 22px;
  }

  .vkid-price {
    font-size: 30px;
  }

  .vkid-variant {
    width: 100%;
  }

  .vkid-actions {
    grid-template-columns: 1fr;
  }

  .vkid-shop-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .vkid-voucher,
  .vkid-shipping,
  .vkid-trust {
    grid-template-columns: 92px 1fr;
  }

  .vkid-spec {
    grid-template-columns: 105px 1fr;
  }
}
