:root {
  --bg: #eef1f8;
  --surface: #f8faff;
  --surface-strong: #ffffff;
  --ink: #111a3a;
  --muted: #5e6684;
  --line: #cdd5eb;
  --blue: #285ed9;
  --blue-dark: #1a469f;
  --red: #e03953;
  --red-soft: #ffebef;
  --shadow-soft: 0 18px 40px rgba(30, 50, 94, 0.14);
  --shadow-chip: 0 6px 16px rgba(31, 58, 130, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --pointer-x: 22vw;
  --pointer-y: 18vh;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 8% 8%, #f9fbff 0, #eef2fb 38%, #e9edf7 100%);
  line-height: 1.35;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(480px circle at var(--pointer-x) var(--pointer-y), rgba(62, 118, 255, 0.16), rgba(62, 118, 255, 0) 58%),
    radial-gradient(360px circle at calc(var(--pointer-x) * 0.7) calc(var(--pointer-y) * 1.18), rgba(225, 64, 95, 0.12), rgba(225, 64, 95, 0) 62%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 120;
  background: rgba(210, 220, 245, 0.34);
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #e13a55 0, #7a49dc 40%, #2b67df 100%);
  box-shadow: 0 0 18px rgba(62, 109, 227, 0.4);
}

.page-bg-shape {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.45;
  pointer-events: none;
}

.page-bg-shape-a {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(40, 94, 217, 0.26) 0, rgba(40, 94, 217, 0) 70%);
  top: -80px;
  left: -80px;
}

.page-bg-shape-b {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(224, 57, 83, 0.24) 0, rgba(224, 57, 83, 0) 72%);
  right: -110px;
  top: 210px;
}

.topbar {
  width: min(1320px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(243, 246, 255, 0.9));
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 10px;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding-left: 8px;
}

.brand-lockup {
  display: grid;
  gap: 1px;
  font-family: Unbounded, Manrope, sans-serif;
  color: var(--ink);
  line-height: 0.84;
}

.brand-lockup__top,
.brand-lockup__bottom {
  display: block;
  letter-spacing: -0.05em;
}

.brand-lockup__top {
  font-size: clamp(1.95rem, 2.65vw, 3rem);
  font-weight: 800;
}

.brand-lockup__bottom {
  font-size: clamp(1.95rem, 2.65vw, 3rem);
  font-weight: 800;
}

.topnav {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.topnav a {
  text-decoration: none;
  color: #334070;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  transition: 160ms ease;
}

.topnav a:hover {
  border-color: #c6d0ea;
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.topnav a.active {
  color: #fff;
  border-color: #1d4cad;
  background: linear-gradient(180deg, #3a74f0, #295ed4);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.city-pill {
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #c9d3eb;
  background: linear-gradient(145deg, rgba(247, 249, 255, 0.94), rgba(234, 239, 250, 0.92));
  color: #1f2a4e;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: transform 150ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.city-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(44, 65, 115, 0.12);
  border-color: #b4c5ea;
}

.city-pill__icon {
  width: 18px;
  height: 18px;
  color: #d83b54;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.city-pill__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.city-modal-card {
  width: min(560px, 100%);
  padding: 22px;
  border-radius: 28px;
}

.city-modal-title {
  margin: 0 0 16px;
  text-align: center;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

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

.city-option {
  min-height: 62px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #cbd5ec;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.94));
  color: #2758c0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 4px;
  text-align: center;
  transition: transform 160ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.city-option:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: #9cb5ea;
  box-shadow: 0 12px 24px rgba(46, 76, 150, 0.12);
  background: linear-gradient(145deg, rgba(238, 245, 255, 0.98), rgba(248, 239, 244, 0.96));
}

.city-option.disabled,
.city-option:disabled {
  cursor: not-allowed;
  color: #7d889f;
  border-color: #d8e0f0;
  background: linear-gradient(145deg, rgba(241, 244, 250, 0.96), rgba(236, 240, 247, 0.94));
}

.city-option .city-name {
  font-weight: 800;
}

.city-option .city-note {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9aa4ba;
}

.site-layout {
  width: min(1320px, calc(100% - 32px));
  margin: 22px auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.page-column {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.category-hub {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(420px circle at 86% -6%, rgba(255, 146, 178, 0.24), transparent 62%),
    radial-gradient(460px circle at -10% 112%, rgba(89, 140, 255, 0.22), transparent 64%),
    linear-gradient(148deg, rgba(248, 251, 255, 0.98), rgba(238, 244, 255, 0.96));
  box-shadow: var(--shadow-soft);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.category-hub::before,
.category-hub::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.category-hub::before {
  width: 280px;
  height: 280px;
  top: -150px;
  right: -90px;
  background: radial-gradient(circle, rgba(223, 68, 102, 0.16), rgba(223, 68, 102, 0) 70%);
}

.category-hub::after {
  width: 340px;
  height: 340px;
  left: -140px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(55, 111, 232, 0.2), rgba(55, 111, 232, 0) 72%);
}

.category-hub__head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.category-hub__label {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3559ab;
  font-size: 0.72rem;
  font-weight: 700;
}

.category-hub__head h1 {
  margin: 0;
  max-width: 900px;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.36rem, 2.65vw, 2.12rem);
  line-height: 1.16;
}

.category-hub__head p {
  margin: 0;
  max-width: 780px;
  color: #556085;
  font-size: clamp(0.94rem, 1.35vw, 1.05rem);
  line-height: 1.48;
}

.category-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.category-showcase-card {
  --tone-solid: #2f66df;
  --tone-glow: rgba(47, 102, 223, 0.28);
  --tone-soft: rgba(47, 102, 223, 0.12);
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 228px;
  border-radius: 20px;
  border: 1px solid rgba(171, 188, 225, 0.9);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transform: translateY(0);
  box-shadow: 0 14px 30px rgba(36, 58, 118, 0.18);
  transition: transform 220ms ease, box-shadow 240ms ease, border-color 220ms ease;
}

.category-showcase-card::after {
  content: '';
  position: absolute;
  inset: auto auto 0 -32%;
  width: 62%;
  height: 190%;
  transform: rotate(16deg) translateX(-132%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.26),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  transition: transform 760ms ease;
}

.category-showcase-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 32px rgba(29, 49, 102, 0.24),
    0 0 0 1px var(--tone-soft);
  border-color: rgba(164, 185, 236, 1);
}

.category-showcase-card:hover::after {
  transform: rotate(16deg) translateX(260%);
}

.category-showcase-card.is-featured {
  grid-column: span 6;
  min-height: 262px;
}

.category-showcase-card.is-regular {
  grid-column: span 4;
}

.category-showcase-card__media {
  position: absolute;
  inset: 0;
}

.category-showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-showcase-card__collage {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: rgba(226, 234, 252, 0.9);
}

.category-showcase-card__collage-item {
  position: relative;
  overflow: hidden;
}

.category-showcase-card__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.category-showcase-card__fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(66, 109, 219, 0.86), rgba(39, 69, 161, 0.88));
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.category-showcase-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(175deg, rgba(16, 26, 57, 0.1), rgba(10, 18, 45, 0.76)),
    radial-gradient(circle at 76% 20%, var(--tone-glow), rgba(255, 255, 255, 0) 52%);
}

.category-showcase-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 8px;
  min-height: 100%;
  padding: 14px;
}

.category-showcase-card__kicker {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 251, 255, 0.88);
}

.category-showcase-card h3 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.02rem, 1.75vw, 1.28rem);
  line-height: 1.2;
}

.category-showcase-card p {
  margin: 0;
  color: rgba(241, 247, 255, 0.9);
  font-size: 0.84rem;
  line-height: 1.35;
}

.category-showcase-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 2px;
}

.category-showcase-card__cta {
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #f8fbff;
}

.category-showcase-card--rose {
  --tone-solid: #df4f76;
  --tone-glow: rgba(239, 108, 153, 0.34);
  --tone-soft: rgba(239, 108, 153, 0.16);
}

.category-showcase-card--blue {
  --tone-solid: #2f66df;
  --tone-glow: rgba(96, 148, 255, 0.34);
  --tone-soft: rgba(96, 148, 255, 0.16);
}

.category-showcase-card--amber {
  --tone-solid: #d38d1f;
  --tone-glow: rgba(255, 196, 84, 0.36);
  --tone-soft: rgba(255, 196, 84, 0.18);
}

.category-showcase-card--berry {
  --tone-solid: #c54669;
  --tone-glow: rgba(224, 98, 139, 0.34);
  --tone-soft: rgba(224, 98, 139, 0.16);
}

.category-showcase-card--mint {
  --tone-solid: #2c8d79;
  --tone-glow: rgba(78, 209, 178, 0.36);
  --tone-soft: rgba(78, 209, 178, 0.16);
}

.category-showcase-card--slate {
  --tone-solid: #506284;
  --tone-glow: rgba(159, 186, 255, 0.28);
  --tone-soft: rgba(159, 186, 255, 0.14);
}

.hero {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(248, 251, 255, 0.96), rgba(238, 243, 255, 0.94));
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr);
  padding: 30px;
}

.hero-label {
  margin: 0 0 8px;
  font-family: Unbounded, Manrope, sans-serif;
  letter-spacing: 0.05em;
  color: #2f447b;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.3rem);
  line-height: 1.2;
}

.heading-reveal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.26em;
}

.heading-reveal .heading-word {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(105%);
  filter: blur(6px);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), opacity 560ms ease, filter 460ms ease;
  transition-delay: calc(var(--word-index, 0) * 44ms);
}

.reveal-on-scroll.is-revealed .heading-reveal .heading-word,
.heading-reveal.is-visible .heading-word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero p {
  margin: 12px 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 700px;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel {
  border: 1px solid #cfd8ef;
  border-radius: 20px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(33, 75, 173, 0.98), rgba(25, 58, 138, 0.96));
  color: #f8fbff;
  box-shadow: 0 12px 30px rgba(23, 49, 113, 0.34);
}

.hero-panel h3 {
  margin: 0 0 14px;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 1rem;
}

.hero-panel p {
  color: #eef5ff;
  margin: 0 0 8px;
  font-size: 0.97rem;
}

.hero-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #d5e5ff;
}

.social-panel {
  display: grid;
  gap: 10px;
}

.social-panel h3 {
  margin-bottom: 8px;
}

.social-panel-copy {
  margin: 0;
  color: #eef5ff;
  font-size: 0.88rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.social-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(227, 236, 255, 0.18);
  transition: transform 160ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-card:hover {
  transform: translateY(-1px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
  border-color: rgba(245, 248, 255, 0.34);
  box-shadow: 0 14px 24px rgba(11, 28, 70, 0.2);
}

.social-card__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
}

.social-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-card__meta {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.social-card__meta strong {
  font-size: 0.82rem;
  line-height: 1.1;
}

.social-card__meta span {
  font-size: 0.78rem;
  color: rgba(239, 245, 255, 0.86);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card--telegram .social-card__icon {
  background: linear-gradient(135deg, rgba(84, 173, 255, 0.34), rgba(116, 209, 255, 0.22));
}

.social-card--tiktok .social-card__icon {
  background: linear-gradient(135deg, rgba(255, 84, 129, 0.3), rgba(64, 223, 255, 0.22));
}

.social-card--instagram .social-card__icon {
  background: linear-gradient(135deg, rgba(255, 145, 77, 0.3), rgba(226, 81, 152, 0.24));
}

.ticker {
  border: 1px solid #bcccf0;
  border-radius: 18px;
  background: linear-gradient(90deg, #ffe9ef 0, #f6eeff 45%, #e8f0ff 100%);
  overflow: hidden;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 42px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, #f0f3fb 0, rgba(240, 243, 251, 0) 100%);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, #f0f3fb 0, rgba(240, 243, 251, 0) 100%);
}

.ticker-track {
  display: inline-flex;
  gap: 26px;
  min-width: max-content;
  padding: 12px 10px;
  animation: tickerMove 24s linear infinite;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(0.75rem, 1.55vw, 1.18rem);
  font-weight: 700;
  color: #3f1f78;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.catalog,
.content-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(247, 250, 255, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.site-layout--simple {
  grid-template-columns: minmax(0, 1fr);
}

.page-column--wide {
  width: min(100%, 760px);
  margin: 0 auto;
}

.payment-result-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(360px circle at 92% -6%, rgba(255, 167, 192, 0.18), transparent 58%),
    linear-gradient(150deg, rgba(248, 251, 255, 0.98), rgba(239, 244, 255, 0.96));
}

.payment-result-card__eyebrow {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3559ab;
}

.payment-result-card h1 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.14;
}

.payment-result-card__message {
  margin: 0;
  max-width: 42rem;
  color: #4c587d;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.55;
}

.payment-result-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.payment-result-meta div {
  padding: 14px 16px;
  border: 1px solid rgba(182, 195, 227, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.payment-result-meta dt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a7598;
}

.payment-result-meta dd {
  margin: 8px 0 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  word-break: break-word;
}

.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-result-actions .action-button {
  width: auto;
  min-width: 220px;
}

.payment-result-card__footnote {
  margin: 0;
  color: #6b779a;
  font-size: 0.88rem;
  line-height: 1.55;
}

.section-head h2 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.lead-text {
  margin-top: 12px;
  color: #495375;
  font-size: 1.02rem;
}

.filters {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip {
  border: 2px solid #2b4f99;
  color: #25315d;
  background: transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 150ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-chip);
}

.filter-chip.active {
  background: linear-gradient(180deg, #2f6df2, #2458c8);
  color: #fff;
  border-color: #18439f;
  animation: chipActivate 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes chipActivate {
  0% {
    transform: translateY(1px) scale(0.97);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.filters-colors .filter-chip {
  border-width: 1.5px;
  border-color: #b9c5e2;
  color: #546087;
  font-size: 0.92rem;
  padding: 8px 14px;
}

.filters-colors {
  min-width: 0;
}

.filters-colors .filter-chip.active {
  border-color: #294ea0;
  color: #fefeff;
  background: linear-gradient(180deg, #4478ee, #2a57bd);
}

.catalog-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #5e6a8f;
  font-weight: 700;
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: #325ab6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.breadcrumbs a:hover {
  color: #22479a;
  border-color: #22479a;
}

.product-page {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(248, 251, 255, 0.96), rgba(238, 243, 255, 0.94));
  box-shadow: var(--shadow-soft);
  padding: 20px;
  display: grid;
  gap: 16px;
}

.product-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 18px;
  align-items: start;
}

.product-page-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ced8ee;
  background: #ebeff8;
  aspect-ratio: 1 / 1;
}

.product-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-page-info {
  display: grid;
  gap: 12px;
}

.product-page-category {
  margin: 0;
  color: #3f5eab;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.product-page-info h1 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  line-height: 1.2;
}

.product-page-description {
  margin: 0;
  color: #4f5a7e;
  line-height: 1.5;
}

.product-page-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.product-page-actions {
  display: grid;
  gap: 10px;
}

.product-page-qty {
  width: fit-content;
}

.product-page-dots .media-dot {
  border: 0;
  padding: 0;
  cursor: pointer;
}

.product-not-found {
  border: 1px solid #d1daef;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

.product-not-found h2 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 1.12rem;
}

.product-not-found p {
  margin: 10px 0 0;
  color: #5b678d;
}

.product-not-found .action-button {
  margin-top: 12px;
}

.catalog-grid--switching {
  opacity: 0.42;
  transform: translateY(8px);
  filter: blur(0.8px);
}

.catalog-grid--enter {
  animation: catalogReflowIn 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes catalogReflowIn {
  0% {
    opacity: 0.72;
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.product-card {
  border: 1px solid #ccd4ea;
  border-radius: 20px;
  background: var(--surface-strong);
  box-shadow: 0 10px 28px rgba(39, 58, 104, 0.1);
  overflow: hidden;
  transform: none;
  opacity: 1;
  transition: box-shadow 220ms ease, transform 220ms ease;
  cursor: pointer;
}

.product-card.in-view {
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(39, 58, 104, 0.16);
}

.editorial-block {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border: 1px solid #cad5ef;
  border-radius: 20px;
  padding: 18px 18px 16px;
  background: linear-gradient(140deg, rgba(241, 246, 255, 0.98), rgba(235, 241, 255, 0.96));
  box-shadow: 0 12px 26px rgba(33, 52, 103, 0.12);
}

.editorial-block::before {
  content: '';
  position: absolute;
  inset: auto -12% -70% auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 112, 237, 0.22), rgba(59, 112, 237, 0) 70%);
  pointer-events: none;
}

.editorial-block::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(228, 67, 95, 0.22), rgba(228, 67, 95, 0) 68%);
  pointer-events: none;
}

.editorial-block h3 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.editorial-kicker {
  font-family: Unbounded, Manrope, sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #31559d;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.editorial-subtitle {
  margin: 8px 0 0;
  font-weight: 700;
  color: #33416a;
}

.editorial-text {
  margin: 8px 0 0;
  color: #556184;
  max-width: 800px;
}

.editorial-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editorial-meta span {
  border: 1px solid #c3cfea;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.82rem;
  color: #41507c;
  background: rgba(255, 255, 255, 0.78);
}

.editorial-cta {
  margin-top: 14px;
  border: 1px solid #2b58bf;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  background: linear-gradient(180deg, #3771eb, #295ed4);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(35, 71, 149, 0.36);
}

.editorial-block.mood-red {
  background: linear-gradient(140deg, rgba(255, 242, 246, 0.98), rgba(245, 236, 255, 0.96));
}

.editorial-block.mood-red .editorial-kicker {
  color: #9d3152;
}

.editorial-block.mood-violet {
  background: linear-gradient(140deg, rgba(244, 239, 255, 0.98), rgba(236, 244, 255, 0.96));
}

.editorial-block.mood-violet .editorial-kicker {
  color: #5f3aa1;
}

.stagger-group.stagger-ready .stagger-item {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(6px);
  transition: opacity 520ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
  transition-delay: calc(var(--stagger-index, 0) * 70ms);
}

.stagger-group.stagger-ready.stagger-in .stagger-item {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.filters.stagger-group.stagger-ready .stagger-item {
  transition-delay: calc(var(--stagger-index, 0) * 45ms);
}

.product-media {
  position: relative;
  aspect-ratio: 1.04;
  overflow: hidden;
  background: #eff3fb;
  touch-action: pan-y;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(20, 30, 57, 0.58);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}

.media-prev {
  left: 10px;
}

.media-next {
  right: 10px;
}

.media-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 6px;
}

.media-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.media-dot.active {
  background: #fff;
}

.product-content {
  padding: 14px 14px 16px;
}

.product-title {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.2;
}

.product-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 140ms ease, color 140ms ease;
}

.product-link:hover {
  color: #203f85;
  border-bottom-color: rgba(32, 63, 133, 0.4);
}

.product-badge {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 2px solid #76acef;
  background: linear-gradient(180deg, #e7f4ff, #d8ebff);
  color: #135da5;
  font-size: 0.83rem;
  font-weight: 800;
}

.product-bottom {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  font-weight: 800;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #eef2f8;
  padding: 6px 10px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #253568;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.qty-control strong {
  min-width: 14px;
  text-align: center;
}

.empty-catalog {
  color: #66708d;
  margin: 14px 0 0;
}

.section-actions {
  margin-top: 14px;
}

.action-button.compact {
  min-height: 48px;
  padding: 10px 18px;
  font-size: 0.95rem;
}

.about-preview {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card,
.contact-tile {
  border: 1px solid #ccd6f0;
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.about-card h3,
.contact-tile h3 {
  margin: 0;
  font-size: 1.05rem;
}

.about-card p,
.contact-tile p {
  margin: 8px 0 0;
  color: #586082;
}

.about-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #4f5879;
}

.about-list li + li {
  margin-top: 8px;
}

.faq-item {
  border: 1px solid #ccd6f0;
  border-radius: 14px;
  background: #fff;
  padding: 10px 12px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #25315d;
}

.faq-item p {
  margin: 10px 0 0;
  color: #4f5879;
}

.contact-grid {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-tile a {
  color: #2557bf;
}

.site-legal {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 28px;
  border: 1px solid #d6ddef;
  border-radius: 12px;
  background: rgba(246, 249, 255, 0.9);
  box-shadow: none;
  padding: 14px 18px;
}

.site-legal--extended {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 18px;
}

.site-legal__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px 20px;
}

.site-legal__inner--extended {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 650px);
  align-items: start;
  gap: 12px;
}

.site-legal__main {
  display: grid;
  gap: 10px;
  border: 1px solid #d6ddef;
  border-radius: 18px;
  background: rgba(246, 249, 255, 0.93);
  padding: 16px 18px;
  box-shadow: 0 8px 22px rgba(28, 50, 105, 0.08);
}

.site-legal__brand {
  min-width: 0;
}

.site-legal__title {
  margin: 0;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0;
  font-weight: 800;
  color: #1f2e58;
}

.site-legal__meta {
  margin: 5px 0 0;
  color: #5d6787;
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.4;
}

.site-legal__meta a {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}

.site-legal__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 0;
}

.site-legal__links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  border: none;
  border-radius: 0;
  min-height: auto;
  padding: 0;
  background: transparent;
  color: #2a4f9f;
  font-weight: 700;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 140ms ease, text-decoration-color 140ms ease;
}

.site-legal__links a:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
  color: #1f3d82;
  text-decoration-color: #1f3d82;
}

.site-legal__links a + a::before {
  content: '·';
  color: #93a1c4;
  margin-right: 12px;
}

.site-legal--extended .site-legal__links a {
  text-decoration: none;
  border: 1px solid #c3d1f0;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 14px;
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
  color: #2a4f9f;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 140ms ease, border-color 140ms ease, transform 160ms ease, box-shadow 180ms ease;
}

.site-legal--extended .site-legal__links a:hover {
  transform: translateY(-1px);
  border-color: #9fb7eb;
  box-shadow: 0 10px 18px rgba(54, 89, 169, 0.14);
  color: #1f3d82;
}

.site-legal--extended .site-legal__links a + a::before {
  content: '';
  margin: 0;
}

.site-legal__social {
  border: 1px solid #c5d3f7;
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(33, 75, 173, 0.98), rgba(25, 58, 138, 0.96));
  box-shadow: 0 10px 24px rgba(23, 49, 113, 0.24);
  color: #f7fbff;
}

.site-legal__social-head {
  margin-bottom: 8px;
}

.site-legal__social h3 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 0.9rem;
  color: #f7fbff;
}

.site-legal__social-head p {
  margin: 5px 0 0;
  color: rgba(236, 244, 255, 0.88);
  font-size: 0.76rem;
  line-height: 1.35;
}

.site-legal__social .social-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.site-legal__social .social-card {
  border-radius: 12px;
  padding: 8px 9px;
}

.site-legal__social .social-card__icon {
  width: 30px;
  height: 30px;
}

.site-legal__social .social-card__icon svg {
  width: 16px;
  height: 16px;
}

.site-legal__social .social-card__meta strong {
  font-size: 0.78rem;
}

.site-legal__social .social-card__meta span {
  font-size: 0.74rem;
}

.site-legal__micro-note {
  margin: 8px 1px 0;
  color: rgba(218, 230, 255, 0.76);
  font-size: 0.62rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.page-legal-note {
  width: min(1320px, calc(100% - 32px));
  margin: -10px auto 24px;
  color: #6b7595;
  font-size: 0.78rem;
  line-height: 1.35;
}

.legal-layout {
  width: min(1040px, calc(100% - 32px));
  margin: 24px auto 36px;
}

.legal-doc {
  border: 1px solid #c9d4ef;
  border-radius: 28px;
  background: rgba(248, 251, 255, 0.97);
  box-shadow: 0 16px 34px rgba(31, 49, 97, 0.14);
  padding: 28px;
}

.legal-doc__label {
  margin: 0 0 10px;
  font-family: Unbounded, Manrope, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f4b93;
  font-size: 0.74rem;
  font-weight: 700;
}

.legal-doc__subtitle {
  margin: 0 0 14px;
  color: #49567d;
  font-weight: 700;
}

.legal-doc h1 {
  margin: 0 0 16px;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.24;
}

.legal-doc h2 {
  margin: 24px 0 10px;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(1rem, 1.95vw, 1.26rem);
  line-height: 1.3;
}

.legal-doc p {
  margin: 10px 0 0;
  color: #404a6d;
  line-height: 1.55;
}

.legal-doc ol,
.legal-doc ul {
  margin: 10px 0 0;
  color: #404a6d;
  line-height: 1.52;
  padding-left: 21px;
}

.legal-doc li + li {
  margin-top: 8px;
}

.legal-doc a {
  color: #2855bb;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cart-panel {
  align-self: start;
  position: sticky;
  top: 100px;
  border: 1px solid #cad3ea;
  border-radius: 24px;
  background: rgba(252, 253, 255, 0.97);
  box-shadow: 0 14px 35px rgba(33, 49, 96, 0.16);
  padding: 16px;
}

.cart-panel--highlight {
  animation: cartPulse 880ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cartPulse {
  0% {
    box-shadow: 0 0 0 rgba(37, 92, 214, 0), 0 14px 35px rgba(33, 49, 96, 0.16);
  }
  35% {
    box-shadow: 0 0 0 7px rgba(37, 92, 214, 0.12), 0 18px 38px rgba(33, 49, 96, 0.24);
  }
  100% {
    box-shadow: 0 0 0 rgba(37, 92, 214, 0), 0 14px 35px rgba(33, 49, 96, 0.16);
  }
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-head h2 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 1.08rem;
}

.cart-head span,
#cartBadgeTop,
#floatingCartBadge {
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
}

.cart-items {
  margin-top: 12px;
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
}

.cart-empty {
  margin: 8px 0;
  color: #667091;
}

.cart-item {
  padding: 10px;
  border: 1px solid #dde3f3;
  border-radius: 14px;
  background: #fff;
}

.cart-item + .cart-item {
  margin-top: 8px;
}

.cart-item-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.cart-item-meta {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.cart-summary {
  margin-top: 14px;
  border-top: 1px dashed #c8d1ea;
  padding-top: 12px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.95rem;
  color: #4b5576;
}

.summary-line + .summary-line {
  margin-top: 7px;
}

.summary-line strong {
  color: #1b2548;
}

.promo-summary-line strong {
  color: #2e5ac4;
}

.summary-total {
  margin-top: 10px;
  font-size: 1.08rem;
  color: #16203f;
}

.summary-total strong {
  font-size: 1.28rem;
  color: var(--red);
}

.promo-box {
  margin-top: 12px;
  border: 1px solid #d3dcf3;
  border-radius: 14px;
  background: #f9fbff;
  padding: 10px;
}

.promo-box--checkout {
  margin-top: 14px;
}

.promo-box__label {
  display: block;
  margin: 0 0 8px;
  color: #576289;
  font-size: 0.86rem;
  font-weight: 700;
}

.promo-box__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-box__row input {
  min-width: 0;
  flex: 1;
  border: 1px solid #c3cee8;
  border-radius: 12px;
  background: #fff;
  color: #18244b;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.promo-box__row input:disabled {
  background: #edf1fb;
  color: #7b86ab;
  cursor: not-allowed;
}

.promo-box__row .action-button.compact {
  min-height: 42px;
  padding: 0 14px;
  flex: 0 0 auto;
}

.promo-box__meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.promo-box__status {
  margin: 0;
  color: #5b668b;
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 700;
}

.promo-box__status.is-success {
  color: #1f8f62;
}

.promo-box__status.is-warning {
  color: #b06a06;
}

.promo-box__reset {
  border: none;
  background: transparent;
  color: #2c4f97;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.promo-box__reset:hover {
  color: #1e3a78;
}

.brand-button,
.action-button {
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 170ms ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.brand-button:hover,
.action-button:hover {
  transform: translateY(-1px);
}

.brand-button:active,
.action-button:active {
  transform: translateY(0);
}

.brand-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(180deg, #2f6df2, #295cca);
  box-shadow: 0 6px 0 rgba(33, 69, 147, 0.35);
}

.brand-button::after,
.action-primary::after {
  content: '';
  position: absolute;
  top: -160%;
  left: -38%;
  width: 28%;
  height: 360%;
  transform: rotate(18deg) translateX(-320%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  pointer-events: none;
  transition: transform 820ms ease;
}

.brand-button:hover::after,
.action-primary:hover::after {
  transform: rotate(18deg) translateX(520%);
}

.action-button {
  min-height: 56px;
  padding: 12px 24px;
  font-size: 1.08rem;
}

.action-primary {
  color: #fff;
  background: linear-gradient(180deg, #3a74f0, #295ed4);
  box-shadow: 0 8px 0 rgba(30, 63, 141, 0.4);
  border-color: #2f61cf;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-secondary {
  color: #1d3168;
  background: linear-gradient(180deg, #f4f7ff, #e7ecf8);
  box-shadow: 0 8px 0 rgba(121, 141, 189, 0.46);
  border-color: #b4c0de;
}

.full-width {
  width: 100%;
}

.action-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.floating-cart {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 40;
  border: 1px solid #284ea7;
  border-radius: 999px;
  background: linear-gradient(180deg, #3a74f0, #295ed4);
  color: #fff;
  box-shadow: 0 8px 22px rgba(33, 68, 147, 0.45);
  height: 56px;
  min-width: 168px;
  padding: 0 18px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(9, 15, 33, 0.45);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal-card {
  width: min(760px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid #ced7ef;
  background: #f9fbff;
  box-shadow: 0 24px 46px rgba(25, 42, 85, 0.32);
  padding: 18px;
}

.product-modal-card {
  width: min(720px, 100%);
  max-height: min(92vh, 900px);
  display: grid;
  gap: 12px;
}

.product-modal-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ced8ee;
  background: #ebeff8;
  aspect-ratio: 1 / 1;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-modal-body {
  display: grid;
  gap: 12px;
}

.product-modal-description {
  margin: 0;
  color: #4f5a7e;
  line-height: 1.5;
}

.product-modal-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-modal-qty {
  flex-shrink: 0;
}

.product-modal-dots .media-dot {
  border: 0;
  padding: 0;
  cursor: pointer;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-head h3 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 1.18rem;
}

.icon-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #cad4ef;
  background: #fff;
  color: #222f5e;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.checkout-progress {
  margin-top: 12px;
  border-radius: 999px;
  background: #e6ebf8;
  height: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 33.333%;
  background: linear-gradient(90deg, #e03855, #3b71ec);
  transition: width 180ms ease;
}

.checkout-step {
  margin-top: 14px;
  border: 1px solid #cdd7ef;
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.checkout-step h4 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.checkout-step label {
  display: block;
  color: #5c6688;
  font-size: 0.92rem;
  font-weight: 700;
}

.checkout-step label + label {
  margin-top: 10px;
}

.checkout-step input:not([type='checkbox']),
.checkout-step select,
.checkout-step textarea {
  margin-top: 6px;
  width: 100%;
  border: 1px solid #c2cde7;
  border-radius: 14px;
  background: #f8faff;
  color: #18244b;
  padding: 12px 14px;
  font: inherit;
}

.checkout-step textarea {
  min-height: 86px;
  resize: vertical;
}

.checkout-recipient {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #d3ddf4;
}

.checkout-recipient__title {
  margin: 0 0 8px;
  color: #25335f;
  font-size: 0.96rem;
  font-weight: 800;
}

.checkout-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f3c68;
  font-size: 0.96rem;
}

.checkout-checkbox-row input[type='checkbox'] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #376adf;
  flex: 0 0 auto;
}

.checkout-checkbox-row span {
  color: #2f3c68;
  font-weight: 700;
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.delivery-nearest-button {
  grid-column: 1 / -1;
  justify-content: center;
}

.delivery-nearest-hint {
  grid-column: 1 / -1;
  margin: -2px 0 2px;
  color: #5b668b;
  font-size: 0.86rem;
  font-weight: 700;
}

.checkout-review {
  display: grid;
  gap: 10px;
}

.review-card {
  border: 1px solid #ccd7f1;
  border-radius: 14px;
  background: #fbfcff;
  padding: 10px 12px;
}

.review-card h5 {
  margin: 0 0 8px;
  font-size: 0.96rem;
}

.review-card p {
  margin: 5px 0 0;
  color: #4d5778;
}

.checkout-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: rgba(11, 21, 46, 0.95);
  border: 1px solid #2f4f98;
  color: #fff;
  border-radius: 14px;
  padding: 11px 16px;
  z-index: 90;
  font-weight: 700;
}

.js-ui .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
  transition: opacity 520ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.js-ui .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .heading-reveal .heading-word,
  .stagger-group.stagger-ready .stagger-item,
  .product-card,
  .action-button,
  .brand-button,
  .reveal-on-scroll {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .brand-button::after,
  .action-primary::after {
    display: none;
  }
}

@media (max-width: 1140px) {
  .topnav {
    display: none;
  }

  .topbar-actions {
    margin-left: auto;
  }

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

  .category-showcase-card.is-featured {
    grid-column: span 12;
    min-height: 248px;
  }

  .category-showcase-card.is-regular {
    grid-column: span 6;
    min-height: 224px;
  }

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

  .hero {
    grid-template-columns: 1fr;
  }

  .product-page-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .floating-cart {
    display: none;
  }

  .about-preview,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-legal__inner,
  .site-legal__inner--extended {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-legal__links {
    padding-top: 2px;
  }

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

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

@media (max-width: 860px) {
  .topbar {
    width: calc(100% - 14px);
    margin-top: 8px;
    padding: 8px 10px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 22px;
    top: 6px;
  }

  .brand {
    min-width: 0;
    padding-left: 2px;
  }

  .brand-lockup {
    display: flex;
    align-items: baseline;
    gap: 0.24em;
    line-height: 1;
  }

  .brand-lockup__top,
  .brand-lockup__bottom {
    font-size: clamp(1.04rem, 4.8vw, 1.34rem);
    letter-spacing: -0.035em;
  }

  .topbar-actions {
    flex: 1 1 auto;
    margin-left: 0;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .city-pill {
    min-height: 38px;
    max-width: 48vw;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 0.84rem;
    justify-content: flex-start;
    gap: 6px;
    white-space: nowrap;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  }

  #selectedCityLabel {
    display: inline-block;
    min-width: 0;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  .city-pill__icon {
    width: 14px;
    height: 14px;
  }

  .brand-button {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 0.9rem;
    gap: 6px;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 4px 0 rgba(33, 69, 147, 0.3);
  }

  .brand-button::after {
    display: none;
  }

  #cartBadgeTop {
    min-width: 22px;
    height: 22px;
    font-size: 0.74rem;
  }

  .city-modal-card {
    padding: 18px 16px;
    border-radius: 24px;
  }

  .product-modal-card {
    padding: 14px;
    border-radius: 20px;
    gap: 10px;
  }

  .product-modal-description {
    font-size: 0.92rem;
  }

  .site-layout {
    width: calc(100% - 18px);
    margin-top: 14px;
    gap: 14px;
  }

  .site-legal,
  .legal-layout {
    width: calc(100% - 18px);
  }

  .category-hub {
    border-radius: 18px;
    padding: 14px;
    gap: 12px;
  }

  .category-hub__head {
    gap: 8px;
  }

  .category-hub__head h1 {
    font-size: clamp(1.06rem, 5vw, 1.3rem);
    line-height: 1.2;
  }

  .category-hub__head p {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .category-showcase-card,
  .category-showcase-card.is-featured,
  .category-showcase-card.is-regular {
    min-width: 0;
    min-height: 196px;
    border-radius: 16px;
  }

  .category-showcase-card:first-child,
  .category-showcase-card.is-featured:first-child {
    grid-column: 1 / -1;
    min-height: 228px;
  }

  .category-showcase-card.is-featured:not(:first-child),
  .category-showcase-card.is-regular {
    grid-column: span 1;
  }

  .category-showcase-card__content {
    padding: 12px;
    gap: 6px;
  }

  .category-showcase-card__kicker {
    font-size: 0.65rem;
  }

  .category-showcase-card h3 {
    font-size: 1rem;
  }

  .category-showcase-card p {
    font-size: 0.8rem;
  }

  .page-legal-note {
    width: calc(100% - 18px);
    margin-top: -6px;
    margin-bottom: 18px;
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .site-legal {
    border-radius: 10px;
    padding: 14px;
  }

  .site-legal--extended {
    padding: 0;
  }

  .site-legal__title {
    font-size: 1rem;
  }

  .site-legal__links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .site-legal__links a {
    width: auto;
    justify-content: flex-start;
  }

  .site-legal__links a + a::before {
    content: '';
    margin: 0;
  }

  .site-legal--extended .site-legal__links a {
    width: 100%;
    min-height: 40px;
    justify-content: center;
  }

  .site-legal__inner--extended .site-legal__social {
    order: -1;
  }

  .site-legal__inner--extended .site-legal__main {
    order: 1;
  }

  .site-legal__social {
    width: 100%;
    border-radius: 14px;
    padding: 11px;
  }

  .site-legal__social .social-links {
    grid-template-columns: 1fr;
  }

  .site-legal__micro-note {
    font-size: 0.58rem;
    line-height: 1.3;
  }

  .promo-box__row {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-box__row .action-button.compact {
    width: 100%;
    justify-content: center;
  }

  .promo-box__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-layout {
    margin-top: 14px;
  }

  .legal-doc {
    border-radius: 18px;
    padding: 16px 14px;
  }

  .catalog,
  .product-page,
  .category-hub,
  .hero,
  .content-card,
  .cart-panel {
    border-radius: 18px;
    padding: 14px;
  }

  .breadcrumbs {
    font-size: 0.84rem;
    gap: 6px;
  }

  .product-page-media {
    border-radius: 16px;
  }

  .product-page-actions .action-button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .social-panel-copy {
    -webkit-line-clamp: initial;
    display: block;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 10px 12px;
    border-radius: 13px;
  }

  .action-button {
    min-height: 52px;
    width: 100%;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .filters-colors {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .filters-colors::-webkit-scrollbar {
    display: none;
  }

  .filters-colors .filter-chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .product-card {
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(39, 58, 104, 0.1);
  }

  .product-media {
    aspect-ratio: 1 / 1;
  }

  .media-nav {
    display: none;
  }

  .media-dots {
    bottom: 8px;
    gap: 5px;
  }

  .media-dot {
    width: 6px;
    height: 6px;
  }

  .product-content {
    padding: 10px 10px 11px;
  }

  .product-title {
    font-size: 0.95rem;
    line-height: 1.22;
    min-height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-badge {
    margin-top: 8px;
    min-height: 24px;
    padding: 4px 8px;
    border-width: 1px;
    font-size: 0.74rem;
  }

  .product-bottom {
    margin-top: 8px;
    align-items: center;
    gap: 6px;
  }

  .product-price {
    font-size: 1.03rem;
  }

  .qty-control {
    gap: 6px;
    padding: 3px 7px;
  }

  .qty-control button {
    width: 22px;
    height: 22px;
    font-size: 1.2rem;
  }

  .qty-control strong {
    min-width: 12px;
    font-size: 0.88rem;
  }

  .editorial-block {
    grid-column: 1;
  }

  .checkout-row {
    grid-template-columns: 1fr;
  }

  .checkout-actions {
    flex-direction: column-reverse;
  }

  .checkout-actions .action-button {
    width: 100%;
  }

  .payment-result-meta {
    grid-template-columns: 1fr;
  }

  .payment-result-actions {
    flex-direction: column;
  }

  .payment-result-actions .action-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .topbar {
    width: calc(100% - 10px);
    padding: 7px 8px;
    gap: 8px;
    border-radius: 18px;
  }

  .brand-lockup__top,
  .brand-lockup__bottom {
    font-size: clamp(0.96rem, 4.9vw, 1.12rem);
  }

  .topbar-actions {
    gap: 6px;
  }

  .city-pill,
  .brand-button {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  #selectedCityLabel {
    max-width: none;
    font-size: 0.78rem;
  }

  #cartBadgeTop {
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .catalog-grid {
    gap: 8px;
  }

  .category-showcase-grid {
    gap: 8px;
  }

  .category-showcase-card,
  .category-showcase-card.is-featured,
  .category-showcase-card.is-regular {
    min-height: 174px;
  }

  .category-showcase-card:first-child,
  .category-showcase-card.is-featured:first-child {
    min-height: 212px;
  }

  .category-showcase-card__content {
    padding: 10px;
    gap: 5px;
  }

  .category-showcase-card h3 {
    font-size: 0.92rem;
  }

  .category-showcase-card p,
  .category-showcase-card__cta {
    font-size: 0.74rem;
  }

  .product-content {
    padding: 9px 8px 10px;
  }

  .product-title {
    font-size: 0.88rem;
  }

  .product-badge {
    font-size: 0.7rem;
    padding: 3px 7px;
  }

  .product-price {
    font-size: 0.96rem;
  }

  .qty-control {
    padding: 2px 6px;
    gap: 5px;
  }

  .qty-control button {
    width: 20px;
    height: 20px;
    font-size: 1.08rem;
  }

  .qty-control strong {
    font-size: 0.84rem;
  }
}
