:root {
  --bg: #f2e3cc;
  --bg-accent: #e8ceb1;
  --surface: rgba(255, 248, 239, 0.92);
  --surface-strong: #fffaf4;
  --line: #d9b793;
  --text: #25170f;
  --muted: #705241;
  --accent: #cb4b12;
  --accent-dark: #8f2f0d;
  --accent-soft: #fce5d1;
  --accent-ink: #1d4736;
  --shadow: 0 22px 50px rgba(77, 43, 21, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 246, 231, 0.9), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(203, 75, 18, 0.12), transparent 19%),
    linear-gradient(180deg, #efe0c6 0%, #ead4b2 42%, #f3e5d1 100%);
}

html.is-preloading,
html.is-preloading body {
  overflow: hidden;
}

html.is-preloading body > *:not(.site-preloader) {
  visibility: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 248, 236, 0.94), transparent 20%),
    radial-gradient(circle at 84% 16%, rgba(203, 75, 18, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(247, 234, 212, 0.98), rgba(239, 220, 191, 0.98));
  opacity: 0;
  transition: opacity 0.32s ease;
}

.site-preloader.is-visible {
  opacity: 1;
}

.site-preloader.is-leaving {
  opacity: 0;
}

.site-preloader__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.site-preloader__caption {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(177, 109, 59, 0.26);
  background: rgba(255, 252, 248, 0.78);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-preloader__scene {
  position: relative;
  width: min(66vw, 320px);
  height: min(52vw, 220px);
  display: grid;
  place-items: center;
  overflow: visible;
}

.site-preloader__burger-wrap {
  position: relative;
  width: min(58vw, 250px);
  height: 150px;
}

.site-preloader__burger {
  position: relative;
  display: grid;
  gap: 0.32rem;
  width: 100%;
  filter: drop-shadow(0 18px 26px rgba(90, 43, 18, 0.16));
  animation: preloader-burger-bob 3s ease-in-out infinite;
  transform-origin: 50% 55%;
}

.site-preloader__dust-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-preloader__bun,
.site-preloader__lettuce,
.site-preloader__cheese,
.site-preloader__patty {
  display: block;
  border-radius: 999px;
}

.site-preloader__bun--top {
  height: 62px;
  border-radius: 999px 999px 34px 34px;
  background:
    radial-gradient(circle at 24% 44%, rgba(255, 248, 230, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 46% 36%, rgba(255, 248, 230, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 66% 42%, rgba(255, 248, 230, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 80% 32%, rgba(255, 248, 230, 0.9) 0 3px, transparent 4px),
    linear-gradient(180deg, #ffc96e 0%, #ef9f35 100%);
  animation: preloader-layer-top 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 1 both;
}

.site-preloader__lettuce {
  height: 10px;
  background: linear-gradient(90deg, #74b84c 0%, #95d05a 45%, #6ba640 100%);
  clip-path: polygon(0 45%, 8% 0, 16% 55%, 24% 12%, 32% 65%, 40% 8%, 48% 60%, 56% 14%, 64% 68%, 72% 18%, 80% 58%, 88% 6%, 100% 46%, 100% 100%, 0 100%);
  animation: preloader-layer-lettuce 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 1 both;
}

.site-preloader__cheese {
  width: 78%;
  justify-self: center;
  height: 18px;
  background: linear-gradient(180deg, #ffd66a, #f5b22d);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
  animation: preloader-layer-cheese 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 1 both;
}

.site-preloader__patty {
  height: 28px;
  background: linear-gradient(180deg, #6d3214, #49200d);
  animation: preloader-layer-patty 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 1 both;
}

.site-preloader__bun--bottom {
  height: 30px;
  background: linear-gradient(180deg, #f4b35a, #df8f28);
  animation: preloader-layer-bottom 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) 1 both;
}

.site-preloader__text {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.site-preloader__dust {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe1a6, #ecac4c 72%, #d78929 100%);
  opacity: 0;
  transform: scale(0.3);
  filter: blur(0.6px);
  box-shadow: 0 0 18px rgba(255, 196, 96, 0.28);
}

.site-preloader__dust--1 {
  top: 8px;
  right: 28px;
  width: 11px;
  height: 11px;
  animation: preloader-dust-1 3s ease-out infinite;
}

.site-preloader__dust--2 {
  top: 28px;
  right: 10px;
  width: 9px;
  height: 9px;
  animation: preloader-dust-2 3s ease-out infinite;
}

.site-preloader__dust--3 {
  top: 56px;
  right: 22px;
  width: 8px;
  height: 8px;
  animation: preloader-dust-3 3s ease-out infinite;
}

.site-preloader__dust--4 {
  top: 92px;
  right: 18px;
  width: 12px;
  height: 12px;
  animation: preloader-dust-4 3s ease-out infinite;
}

.site-preloader__dust--5 {
  top: 18px;
  right: 56px;
  width: 7px;
  height: 7px;
  animation: preloader-dust-5 3s ease-out infinite;
}

.site-preloader__dust--6 {
  top: 108px;
  right: 52px;
  width: 6px;
  height: 6px;
  animation: preloader-dust-6 3s ease-out infinite;
}

.site-preloader__dust--7 {
  top: 46px;
  right: 58px;
  width: 14px;
  height: 14px;
  animation: preloader-dust-7 3s ease-out infinite;
}

.site-preloader__dust--8 {
  top: 76px;
  right: 4px;
  width: 10px;
  height: 10px;
  animation: preloader-dust-8 3s ease-out infinite;
}

@keyframes preloader-burger-bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  78% {
    transform: translateY(-5px) scale(1.01);
  }
  90% {
    transform: translateY(0) scale(1);
  }
}

@keyframes preloader-layer-top {
  0% {
    opacity: 0;
    transform: translate3d(0, -84px, 0) scale(0.92) rotate(-6deg);
    filter: blur(6px);
  }
  56% {
    opacity: 0;
    transform: translate3d(0, -84px, 0) scale(0.92) rotate(-6deg);
    filter: blur(6px);
  }
  74% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes preloader-layer-lettuce {
  0% {
    opacity: 0;
    transform: translate3d(-96px, -8px, 0) scale(0.88) rotate(-8deg);
    filter: blur(6px);
  }
  48% {
    opacity: 0;
    transform: translate3d(-96px, -8px, 0) scale(0.88) rotate(-8deg);
    filter: blur(6px);
  }
  68% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes preloader-layer-cheese {
  0% {
    opacity: 0;
    transform: translate3d(102px, -10px, 0) scale(0.86) rotate(10deg);
    filter: blur(6px);
  }
  40% {
    opacity: 0;
    transform: translate3d(102px, -10px, 0) scale(0.86) rotate(10deg);
    filter: blur(6px);
  }
  62% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes preloader-layer-patty {
  0% {
    opacity: 0;
    transform: translate3d(0, 96px, 0) scale(0.82) rotate(4deg);
    filter: blur(6px);
  }
  32% {
    opacity: 0;
    transform: translate3d(0, 96px, 0) scale(0.82) rotate(4deg);
    filter: blur(6px);
  }
  56% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes preloader-layer-bottom {
  0% {
    opacity: 0;
    transform: translate3d(0, 122px, 0) scale(0.8) rotate(-3deg);
    filter: blur(6px);
  }
  24% {
    opacity: 0;
    transform: translate3d(0, 122px, 0) scale(0.8) rotate(-3deg);
    filter: blur(6px);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes preloader-dust-cloud {
  0%,
  48%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
  72% {
    opacity: 0.18;
    transform: scale(1.08);
  }
  86% {
    opacity: 0;
    transform: scale(1.24);
  }
}

@keyframes preloader-dust-1 {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  22% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  44% {
    opacity: 0.9;
    transform: translate(-38px, 26px) scale(1.1);
  }
  70% {
    opacity: 0;
    transform: translate(-12px, 6px) scale(0.22);
  }
}

@keyframes preloader-dust-2 {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  30% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  50% {
    opacity: 0.86;
    transform: translate(44px, -22px) scale(1.06);
  }
  72% {
    opacity: 0;
    transform: translate(10px, -4px) scale(0.22);
  }
}

@keyframes preloader-dust-3 {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  36% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  54% {
    opacity: 0.82;
    transform: translate(-26px, -12px) scale(1.08);
  }
  72% {
    opacity: 0;
    transform: translate(-8px, -2px) scale(0.2);
  }
}

@keyframes preloader-dust-4 {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  42% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  58% {
    opacity: 0.78;
    transform: translate(34px, 16px) scale(1.14);
  }
  74% {
    opacity: 0;
    transform: translate(8px, 4px) scale(0.18);
  }
}

@keyframes preloader-dust-5 {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  48% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  60% {
    opacity: 0.72;
    transform: translate(-18px, 20px) scale(0.98);
  }
  76% {
    opacity: 0;
    transform: translate(-4px, 6px) scale(0.16);
  }
}

@keyframes preloader-dust-6 {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  54% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  64% {
    opacity: 0.68;
    transform: translate(20px, -14px) scale(0.94);
  }
  78% {
    opacity: 0;
    transform: translate(4px, -2px) scale(0.14);
  }
}

@keyframes preloader-dust-7 {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  58% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  68% {
    opacity: 0.62;
    transform: translate(-12px, -18px) scale(0.96);
  }
  80% {
    opacity: 0;
    transform: translate(-2px, -4px) scale(0.12);
  }
}

@keyframes preloader-dust-8 {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  60% {
    opacity: 0;
    transform: translate(0, 0) scale(0.2);
  }
  70% {
    opacity: 0.58;
    transform: translate(14px, 18px) scale(0.92);
  }
  82% {
    opacity: 0;
    transform: translate(2px, 4px) scale(0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader__burger,
  .site-preloader__bun,
  .site-preloader__lettuce,
  .site-preloader__cheese,
  .site-preloader__patty,
  .site-preloader__dust {
    animation: none;
  }
}

a {
  color: inherit;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 245, 229, 0.9), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(203, 75, 18, 0.17), transparent 18%),
    linear-gradient(135deg, #e6b77f 0%, #d97a37 44%, #b5431a 100%);
  border-bottom: 1px solid rgba(86, 34, 16, 0.16);
}

.hero--brand-alt {
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 247, 235, 0.88), transparent 22%),
    radial-gradient(circle at 90% 18%, rgba(150, 23, 28, 0.2), transparent 18%),
    linear-gradient(135deg, #d8a56d 0%, #8f2f2e 48%, #5d1919 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -4% -54px auto;
  width: 320px;
  height: 220px;
  border-radius: 48px;
  transform: rotate(-10deg);
  background:
    linear-gradient(180deg, rgba(255, 233, 204, 0.36), rgba(255, 244, 231, 0.04)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 243, 227, 0.2) 0,
      rgba(255, 243, 227, 0.2) 10px,
      rgba(255, 243, 227, 0.06) 10px,
      rgba(255, 243, 227, 0.06) 20px
    );
  border: 1px solid rgba(255, 227, 195, 0.3);
}

.hero--compact .hero__content {
  padding-bottom: 2.8rem;
}

.hero--compact {
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 249, 239, 0.92), transparent 22%),
    radial-gradient(circle at 90% 18%, rgba(203, 75, 18, 0.08), transparent 18%),
    linear-gradient(180deg, #f5ead8 0%, #eed9bd 54%, #ead0ad 100%);
}

.hero--compact .top-nav__brand {
  color: var(--text);
  text-shadow: none;
}

.hero--compact .top-nav__links a {
  color: var(--text);
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(191, 136, 95, 0.28);
  box-shadow: 0 10px 24px rgba(93, 44, 20, 0.06);
}

.hero--compact .top-nav__links a:hover {
  background: rgba(255, 251, 245, 0.92);
  box-shadow: 0 14px 28px rgba(93, 44, 20, 0.1);
}

.hero--compact .hero__eyebrow {
  color: var(--accent-dark);
  background: rgba(255, 248, 239, 0.82);
  border: 1px solid rgba(191, 136, 95, 0.24);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 13, 6, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.12), transparent 34%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 0 4rem;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.top-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 100%;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff7ec;
  text-shadow: 0 1px 0 rgba(60, 19, 7, 0.2);
}

.brand-mark {
  width: 40px;
  height: 30px;
  display: grid;
  gap: 3px;
}

.brand-mark__bun,
.brand-mark__lettuce,
.brand-mark__patty {
  display: block;
  border-radius: 999px;
}

.brand-mark__bun--top {
  height: 11px;
  background: linear-gradient(180deg, #ffcb79, #eea845);
}

.brand-mark__lettuce {
  height: 4px;
  background: linear-gradient(90deg, #62a63d, #8ac84f);
}

.brand-mark__patty {
  height: 7px;
  background: linear-gradient(180deg, #6f3517, #51210c);
}

.brand-mark__bun--bottom {
  height: 8px;
  background: linear-gradient(180deg, #f4b256, #df9430);
}

.top-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.top-nav__links a {
  text-decoration: none;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 243, 227, 0.18);
  border: 1px solid rgba(255, 228, 199, 0.24);
  color: #fff8f1;
  font-weight: 600;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  backdrop-filter: blur(10px);
}

.top-nav__links a:hover {
  transform: translateY(-1px);
  background: rgba(255, 248, 238, 0.28);
  box-shadow: 0 18px 30px rgba(70, 24, 10, 0.18);
}

.hero__eyebrow,
.product-category {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin: 1.6rem 0 0;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 245, 232, 0.16);
  border: 1px solid rgba(255, 235, 210, 0.26);
  color: #fff4e8;
  font-weight: 700;
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.hero h1,
.product-page h1,
.info-page h1 {
  margin: 0.95rem 0 0;
  max-width: 820px;
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3.1vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__subtitle,
.product-description {
  margin: 1rem 0 0;
  max-width: 720px;
  font-size: 1.06rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  color: var(--muted);
}

.hero:not(.hero--compact) h1,
.hero:not(.hero--compact) .hero__subtitle {
  color: #fff9f1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  gap: 1.4rem;
  align-items: end;
  margin-top: 1rem;
}

.hero__main {
  display: grid;
  align-content: start;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero__ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero__ticker span {
  padding: 0.52rem 0.86rem;
  border-radius: 999px;
  background: rgba(255, 241, 224, 0.16);
  border: 1px solid rgba(255, 228, 199, 0.22);
  color: #fff6eb;
  font-weight: 700;
  font-size: 0.84rem;
}

.hero__panel {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(55, 19, 8, 0.26), rgba(28, 11, 6, 0.22)),
    rgba(255, 248, 238, 0.08);
  border: 1px solid rgba(255, 224, 194, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 44px rgba(56, 18, 8, 0.18);
}

.hero__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero__panel-card {
  display: grid;
  gap: 0.48rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 248, 238, 0.9);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(45, 18, 7, 0.12);
}

.hero__panel-card--highlight {
  background:
    linear-gradient(135deg, rgba(255, 244, 229, 0.98), rgba(255, 226, 189, 0.98));
}

.hero__panel-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero__panel-card strong {
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: 1.4rem;
  line-height: 1.02;
}

.hero__panel-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

main.container {
  padding-top: 1.8rem;
  padding-bottom: 2.8rem;
}

.controls {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(220px, 0.9fr);
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding: 1rem;
  border: 1px solid rgba(126, 74, 38, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.72), rgba(247, 232, 209, 0.9));
  box-shadow: var(--shadow);
}

.control {
  display: grid;
  gap: 0.55rem;
}

.control label {
  font-weight: 700;
}

.control input,
.control select {
  width: 100%;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.94);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-header h2,
.section-header h3 {
  margin: 0;
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.02;
}

.section-link {
  text-decoration: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 248, 242, 0.96);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.categories-section,
.menu-section,
.related-section,
.product-composition,
.nutrition-card,
.calculator-panel,
.calculator-summary,
.info-hero-card,
.info-link-card,
.card,
.empty {
  margin-bottom: 1.4rem;
}

.category-nav__list,
.info-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.info-links-grid--services {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.menu-groups {
  display: grid;
  gap: 2rem;
}

.category-nav__link,
.info-link-card {
  text-decoration: none;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.category-nav__link {
  position: relative;
  overflow: hidden;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 249, 241, 0.96), rgba(249, 233, 210, 0.96));
}

.category-nav__link::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #cb4b12, #f1b06d);
}

.info-link-card {
  display: grid;
  gap: 0.4rem;
}

.info-link-card--service {
  position: relative;
  min-height: 152px;
  height: 100%;
  align-content: end;
  padding: 1.1rem 1.15rem 1.2rem;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 248, 239, 0.98), rgba(246, 225, 196, 0.98));
}

.info-link-card--service::after {
  content: "";
  position: absolute;
  inset: auto -24px -18px auto;
  width: 100px;
  height: 100px;
  border-radius: 28px;
  transform: rotate(18deg);
  background: linear-gradient(180deg, rgba(203, 75, 18, 0.12), rgba(203, 75, 18, 0.02));
}

.info-link-card strong {
  font-size: 1rem;
}

.info-link-card span {
  color: var(--muted);
  line-height: 1.55;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.menu-section {
  margin-bottom: 0;
  padding: 1.15rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.78), rgba(244, 227, 203, 0.9));
  border: 1px solid rgba(126, 74, 38, 0.12);
  box-shadow: var(--shadow);
}

.menu-section .section-header {
  align-items: flex-start;
  margin-bottom: 1rem;
}

.menu-section .section-header h3 {
  max-width: 72%;
  line-height: 1.1;
}

.menu-section .badge {
  margin-top: 0.1rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(250, 239, 223, 0.98));
  box-shadow: 0 18px 34px rgba(80, 44, 22, 0.09);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #cf8a55;
  box-shadow: 0 24px 40px rgba(80, 44, 22, 0.14);
}

.card > img,
.card .card__image,
.product-hero-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.65), transparent 34%),
    linear-gradient(180deg, #f6dcc2, #efd0a9);
}

.card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.05rem;
}

.card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.card__top h3,
.card__top h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.price,
.product-price {
  white-space: nowrap;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.15rem;
  font-family: "Archivo Black", "Manrope", sans-serif;
}

.card__top .price {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.42rem 0.68rem 0.38rem;
  border-radius: 14px;
  border: 1px solid rgba(219, 154, 89, 0.62);
  background: linear-gradient(180deg, rgba(255, 247, 233, 0.98), rgba(248, 224, 193, 0.98));
  box-shadow:
    0 10px 18px rgba(182, 111, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 1.02rem;
  line-height: 1;
}

.product-hero-card__intro {
  display: grid;
  gap: 0.72rem;
  justify-items: start;
}

.product-hero-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

.product-hero-card__heading h1 {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.product-hero-card__heading .product-price {
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  padding: 0.58rem 0.95rem 0.52rem;
  border-radius: 18px;
  border: 1px solid rgba(219, 154, 89, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 247, 233, 0.98), rgba(248, 224, 193, 0.98));
  box-shadow:
    0 14px 24px rgba(182, 111, 47, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font-size: 1.24rem;
  line-height: 1;
  color: #a84416;
}

.product-hero-card__heading .product-price::before {
  content: "Цена";
  display: block;
  margin-bottom: 0.08rem;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c26b2a;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.card__facts,
.meta,
.product-labels,
.allergen-list,
.variant-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card__facts span,
.meta span,
.variant-links__item {
  padding: 0.38rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(252, 229, 209, 0.9);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.variant-links {
  display: grid;
  gap: 0.45rem;
}

.variant-links__label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
}

.variant-links__list {
  align-items: flex-start;
}

.variant-links__item {
  text-decoration: none;
  background: rgba(255, 247, 238, 0.98);
}

.card__actions,
.summary-actions,
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.card__button,
.hero__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.card__button--primary,
.hero__link,
button.card__button {
  background: linear-gradient(180deg, #d65318, #af3911);
  color: #fff;
  box-shadow: 0 14px 28px rgba(143, 47, 13, 0.22);
}

.card__button--ghost,
.hero__link--ghost {
  background: rgba(255, 248, 241, 0.94);
  color: var(--accent-dark);
  border-color: rgba(228, 191, 158, 0.86);
}

.delivery-cta {
  display: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  
  gap: 0.28rem;
  align-content: center;
  padding: 1.12rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 188, 109, 0.42);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 209, 145, 0.2), transparent 24%),
    radial-gradient(circle at 90% 22%, rgba(255, 142, 70, 0.18), transparent 30%),
    linear-gradient(135deg, #5f2312 0%, #7c2c14 34%, #b74116 68%, #de5e18 100%);
  color: #fff8f0;
  text-decoration: none;
  box-shadow:
    0 18px 36px rgba(98, 31, 11, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(45, 13, 7, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
  animation: deliveryPulse 2.6s ease-in-out infinite;
}

.delivery-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 34%, transparent 58%),
    linear-gradient(180deg, rgba(255, 196, 132, 0.1), transparent 44%);
  background-size: 220% 100%, 100% 100%;
  animation: deliveryShine 3.2s linear infinite;
}

.delivery-cta::after {
  content: "→";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffddae, #ffb45e);
  border: 1px solid rgba(255, 228, 191, 0.76);
  color: #6b250e;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow:
    0 10px 20px rgba(57, 16, 6, 0.22),
    inset 0 1px 0 rgba(255, 245, 230, 0.62);
}

.delivery-cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 24px 40px rgba(98, 31, 11, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(45, 13, 7, 0.18);
  filter: saturate(1.08);
  border-color: rgba(255, 202, 129, 0.66);
}

.delivery-cta__eyebrow,
.delivery-cta__note {
  font-size: 0.8rem;
  line-height: 1.2;
}

.delivery-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem 0.56rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffdca4, #ffb85c);
  color: #6e270e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 232, 197, 0.32);
  box-shadow: 0 6px 14px rgba(47, 14, 6, 0.12);
}

.delivery-cta strong {
  max-width: calc(100% - 2.75rem);
  font-size: 1.18rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: #fffaf3;
  text-shadow: 0 1px 0 rgba(52, 14, 6, 0.22);
}

.delivery-cta__note {
  max-width: calc(100% - 2.75rem);
  color: rgba(255, 234, 210, 0.92);
  font-weight: 500;
}

.delivery-cta--restaurant {
  margin-top: 0.2rem;
}

.delivery-cta--card {
  margin-top: 0.1rem;
  padding: 0.92rem 1rem;
}

.delivery-cta--card strong {
  font-size: 1.02rem;
}

@keyframes deliveryPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

@keyframes deliveryShine {
  0% {
    background-position: 180% 0, 0 0;
  }
  100% {
    background-position: -40% 0, 0 0;
  }
}

.hero:not(.hero--compact) .hero__link--ghost {
  color: #fff6ea;
  background: rgba(255, 244, 228, 0.12);
  border-color: rgba(255, 226, 196, 0.26);
}

.product-rating {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(217, 183, 147, 0.9);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.55), transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 234, 215, 0.96));
  box-shadow: 0 16px 28px rgba(80, 44, 22, 0.07);
}

.product-rating__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.product-rating .product-category {
  margin-top: 0;
  color: rgba(143, 47, 13, 0.72);
  background: rgba(255, 248, 239, 0.9);
  border: 1px solid rgba(228, 191, 158, 0.72);
}

.product-rating__head h2 {
  margin: 0.1rem 0 0;
  font-size: 1.28rem;
  line-height: 1.08;
}

.product-rating__summary {
  min-width: 140px;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(217, 183, 147, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(251, 241, 228, 0.98));
  text-align: center;
}

.product-rating__summary strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--accent);
}

.product-rating__summary span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-rating__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-rating__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 58px;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(226, 186, 149, 0.84);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(251, 241, 229, 0.94));
  color: var(--accent-dark);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.product-rating__button:hover {
  transform: translateY(-1px);
  border-color: #cf8a55;
  box-shadow: 0 12px 24px rgba(93, 44, 20, 0.09);
}

.product-rating__button strong {
  min-width: 1.8rem;
  text-align: right;
  font-size: 1rem;
}

.product-rating__button--active {
  background: linear-gradient(180deg, #d65318, #af3911);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(143, 47, 13, 0.22);
}

.product-rating__button--negative.product-rating__button--active {
  background: linear-gradient(180deg, #9c3d1f, #7c2610);
}

.product-rating__button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.product-rating__note,
.product-rating__error {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.product-rating__error {
  color: #9d3514;
}

.empty {
  padding: 1.3rem;
  border-radius: 22px;
  border: 1px dashed var(--line);
  background: rgba(255, 250, 245, 0.8);
  line-height: 1.6;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--muted);
}

.breadcrumbs a {
  text-decoration: none;
}

.product-layout,
.simple-page,
.info-layout {
  display: grid;
  gap: 1.25rem;
}

.product-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 247, 233, 0.86), transparent 20%),
    linear-gradient(180deg, #f4e8d5 0%, #f1e0c4 42%, #f7eddc 100%);
}

.product-hero-card,
.info-hero-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 1.1rem;
  padding: 1.15rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-hero-card__content,
.info-stats {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  min-width: 0;
}

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

.info-stats div,
.nutrition-grid div,
.summary-grid div,
.faq-item {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.info-stats span,
.nutrition-grid span,
.summary-grid span,
.faq-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.info-stats strong,
.nutrition-grid strong,
.summary-grid strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.nutrition-card,
.product-composition,
.calculator-panel,
.calculator-summary {
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nutrition-card h2,
.product-composition h2,
.related-section h2,
.calculator-panel h2,
.calculator-summary h2 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
}

.nutrition-grid,
.summary-grid,
.info-grid,
.composition-list,
.faq-list {
  display: grid;
  gap: 0.8rem;
}

.nutrition-grid,
.summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.info-grid,
.composition-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-page .product-layout {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 1.8rem;
  padding-bottom: 2.8rem;
}

.product-page .product-hero-card {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.3rem;
  padding: 1.35rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 235, 216, 0.96));
}

.product-page .product-hero-card__content {
  display: contents;
}

.product-page .product-hero-card > .product-hero-card__image {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.product-page .product-hero-card__content > .product-category,
.product-page .product-hero-card__content > .product-hero-card__intro {
  grid-column: 2;
  min-width: 0;
}

.product-page .product-hero-card__content > .tp-vk-adaptive-wrap,
.product-page .product-hero-card__content > .product-rating,
.product-page .product-hero-card__content > .nutrition-card,
.product-page .product-hero-card__content > .product-composition,
.product-page .product-hero-card__content > .product-meta {
  grid-column: 1 / -1;
  min-width: 0;
}

.product-page .product-hero-card > .product-category,
.product-page .product-hero-card__content > .product-category {
  margin: 0;
  color: #8f2f0d;
  background: rgba(255, 248, 239, 0.94);
  border: 1px solid rgba(228, 191, 158, 0.72);
}

.product-page .product-hero-card__intro {
  gap: 0.5rem;
  align-content: start;
}

.product-page .product-hero-card__heading {
  align-items: flex-start;
}

.product-page .product-hero-card__heading h1 {
  margin: 0;
  max-width: none;
}

.product-page .product-hero-card__intro .product-description {
  margin: 0;
  max-width: none;
  font-size: 1.08rem;
  line-height: 1.65;
}

.product-page .product-composition,
.product-page .nutrition-card,
.product-page .related-section {
  padding: 1.35rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(249, 238, 223, 0.98));
}

.product-page .product-composition h2,
.product-page .nutrition-card h2,
.product-page .related-section h2 {
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: 1.55rem;
  line-height: 1.02;
}

.product-page .composition-list {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 0.95rem;
}

.product-page .product-hero-card__image {
  min-width: 0;
}

.product-page .product-hero-card__image img {
  max-width: 100%;
}

.product-page .composition-item {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.98);
}

.product-page .composition-item h3 {
  font-size: 1.05rem;
  line-height: 1.16;
}

.product-page .composition-item p {
  font-size: 0.98rem;
  line-height: 1.58;
}

.product-page .breadcrumbs {
  margin-bottom: 0.2rem;
}

.tp-vk-adaptive-wrap {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0 1rem;
}

.product-hero-card__content .tp-vk-adaptive-wrap {
  margin: 0.2rem 0 0.35rem;
  padding: 0;
}

.tp-vk-adaptive-wrap .mrg-tag {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.partner-promo-slot {
  margin: 1rem 0 1.35rem;
}

.partner-promo-slot--catalog,
.partner-promo-slot--category,
.partner-promo-slot--info,
.partner-promo-slot--calculator {
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

.partner-promo-slot--product {
  margin: 0.25rem 0 0.75rem;
}

.partner-promo-slot--calculator {
  max-width: 980px;
}

.partner-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(210px, 0.82fr);
  gap: 1rem;
  align-items: center;
  padding: 1.15rem;
  border-radius: 30px;
  border: 1px solid rgba(205, 89, 20, 0.26);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 226, 159, 0.42), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 133, 53, 0.34), transparent 28%),
    linear-gradient(135deg, #5d1f0f 0%, #8f2b12 30%, #d94e19 68%, #ff8a2a 100%);
  box-shadow: 0 22px 44px rgba(125, 46, 10, 0.22);
  text-decoration: none;
  color: #fff8f0;
  overflow: hidden;
}

.partner-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.2) 36%, transparent 60%),
    radial-gradient(circle at 75% 34%, rgba(255, 214, 122, 0.16), transparent 20%);
  background-size: 210% 100%;
  pointer-events: none;
  animation: partnerPromoShine 4.2s linear infinite;
}

.partner-promo__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.88rem;
}

.partner-promo__eyebrow {
  display: none;
  align-items: center;
  justify-self: start;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 238, 210, 0.94);
  border: 1px solid rgba(255, 214, 156, 0.6);
  color: #a34208;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partner-promo__title {
  margin: 0;
  font-size: clamp(1.52rem, 2.8vw, 2.5rem);
  line-height: 1.02;
  color: #fffaf3;
  max-width: 13ch;
}

.partner-promo__text {
  display: none;
}

.partner-promo__chips {
  display: none;
}

.partner-promo__chips span {
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 247, 238, 0.98);
  border: 1px solid rgba(230, 191, 151, 0.88);
  color: #7f4f30;
  font-size: 0.82rem;
  font-weight: 700;
}

.partner-promo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 54px;
  padding: 0.9rem 1.24rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff3d5, #ffd172);
  color: #863108;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(76, 21, 2, 0.22);
}

.partner-promo__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.partner-promo__phone {
  position: relative;
  width: min(100%, 290px);
  min-height: 198px;
  padding: 1rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.92), transparent 22%),
    linear-gradient(155deg, #fff5e6 0%, #ffe0af 48%, #ffbe69 100%);
  border: 1px solid rgba(255, 224, 184, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 20px 34px rgba(79, 29, 5, 0.18);
}

.partner-promo__burst {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 148px;
  padding: 1rem;
  border-radius: 36px;
  background: radial-gradient(circle at 30% 30%, #fff3c7, #ffcf62 48%, #ff9b28 100%);
  color: #7a320a;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow:
    0 20px 32px rgba(184, 103, 24, 0.28),
    inset 0 2px 0 rgba(255, 255, 255, 0.55);
}

.partner-promo__mini {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: rgba(124, 39, 10, 0.9);
  color: #fff5e6;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(88, 27, 8, 0.16);
}

.partner-promo__mini--top {
  top: 0.9rem;
  left: 0.9rem;
}

.partner-promo__mini--bottom {
  right: 0.9rem;
  bottom: 0.9rem;
}

.partner-promo__legal {
  display: none;
}

.partner-promo-slot--product .partner-promo {
  grid-template-columns: minmax(0, 1.18fr) minmax(170px, 0.82fr);
  padding: 1rem;
}

.partner-promo-slot--product .partner-promo__phone {
  min-height: 172px;
}

.partner-promo-slot--product .partner-promo__title {
  font-size: clamp(1.28rem, 1.9vw, 1.8rem);
}

.partner-promo-slot--product .partner-promo__text {
  font-size: 0.95rem;
}

.partner-promo:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 28px 50px rgba(125, 46, 10, 0.28);
}

@keyframes partnerPromoShine {
  0% { background-position: 200% 0; }
  100% { background-position: -60% 0; }
}

.rtb-banner-slot {
  margin: 1rem 0 1.35rem;
}

.rtb-banner-slot__inner {
  overflow: hidden;
  padding: 0.95rem;
  border-radius: 26px;
  border: 1px solid rgba(219, 154, 89, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 236, 218, 0.96));
  box-shadow: 0 18px 34px rgba(80, 44, 22, 0.08);
}

.rtb-banner-slot--catalog,
.rtb-banner-slot--category,
.rtb-banner-slot--info,
.rtb-banner-slot--calculator {
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

.rtb-banner-slot--calculator {
  max-width: 980px;
}

.rtb-banner-slot--calculator .rtb-banner-slot__inner {
  padding: 0.8rem;
}

.rtb-banner-slot--calculator .rtb-banner-slot__target {
  min-height: 90px;
}

/* removed duplicated generic block start */
.rtb-banner-slot--product {
  margin: 0.15rem 0 0.55rem;
}

.rtb-banner-slot__target {
  max-width: 100%;
  min-height: 110px;
}

.rtb-banner-slot--product .rtb-banner-slot__inner {
  padding: 0.7rem;
}

.rtb-banner-slot--product .rtb-banner-slot__target {
  min-height: 56px;
}

.rtb-banner-slot.is-empty {
  margin: 0;
}

.rtb-banner-slot.is-empty .rtb-banner-slot__inner {
  display: none;
}

.composition-item {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.composition-item h3,
.faq-item strong {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.composition-item p,
.faq-item p,
.source-list {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.source-list {
  padding-left: 1.1rem;
}

.info-page .hero {
  border-bottom: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.48), transparent 24%),
    radial-gradient(circle at 92% 22%, rgba(222, 90, 11, 0.14), transparent 18%),
    linear-gradient(135deg, #efe0ca 0%, #f5e9d6 48%, #ecdbc1 100%);
}

.info-page .hero__content {
  padding-bottom: 3.4rem;
}

.info-page .hero__subtitle {
  max-width: 780px;
  font-size: 1.08rem;
}

.info-page .info-layout,
.info-page .simple-page {
  padding-top: 2rem;
  padding-bottom: 2.8rem;
}

.info-page .info-hero-card,
.info-page .product-composition,
.info-page .info-link-card {
  backdrop-filter: blur(10px);
}

.info-page .product-category {
  color: var(--accent-dark);
  background: rgba(255, 248, 239, 0.92);
  border: 1px solid rgba(191, 136, 95, 0.28);
  box-shadow: 0 8px 20px rgba(93, 44, 20, 0.05);
}

.info-page .info-hero-card,
.info-page .product-composition {
  position: relative;
  overflow: hidden;
}

.info-page .info-hero-card {
  border-radius: 30px 30px 22px 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 246, 236, 0.94)),
    var(--surface);
}

.info-page .info-hero-card::after,
.info-page .product-composition::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 90, 11, 0.08), transparent 68%);
  pointer-events: none;
}

.info-page .product-composition {
  border-radius: 24px 24px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(255, 247, 237, 0.96)),
    var(--surface);
}

.info-page .info-link-card,
.info-page .category-nav__link {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.info-page .info-link-card:hover,
.info-page .category-nav__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(104, 61, 28, 0.11);
  border-color: #dfb48f;
}

.info-page .info-link-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 1.1rem 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(250, 238, 223, 0.94)),
    var(--surface);
}

.info-page .info-link-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #e56a11, #f0b170);
}

.info-page .product-composition h2 {
  position: relative;
  padding-bottom: 0.7rem;
  max-width: 18ch;
  line-height: 1.08;
}

.info-page .product-composition h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #de5a0b, #f2c28d);
}

.info-page .source-list {
  display: grid;
  gap: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.info-page .source-list li {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.info-page .source-list a {
  text-decoration: none;
  color: var(--accent-dark);
  font-weight: 700;
}

.info-page .breadcrumbs {
  margin-bottom: 0.3rem;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.92rem;
}

.info-page .breadcrumbs a,
.info-page .breadcrumbs span:last-child {
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.75);
  border: 1px solid rgba(214, 166, 126, 0.32);
}

.info-page .breadcrumbs span {
  color: #b78a66;
}

.info-page .composition-item,
.info-page .faq-item,
.info-page .vacancy-meta div,
.info-page .info-stats div {
  position: relative;
  overflow: hidden;
}

.info-page .composition-item::before,
.info-page .faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(222, 90, 11, 0.85), rgba(240, 177, 112, 0.22));
}

.info-page .composition-item {
  padding-left: 1.1rem;
}

.info-page .faq-item {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(251, 240, 227, 0.96)),
    var(--surface-strong);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 1rem;
}

.calculator-list,
.calculator-cart {
  display: grid;
  gap: 0.85rem;
}

.calc-card,
.cart-row {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.calc-card {
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: start;
}

.calc-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  align-self: start;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(248, 232, 214, 0.95)),
    var(--surface);
  border: 1px solid rgba(219, 173, 134, 0.35);
  padding: 0.6rem;
}

.calc-card__top,
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.calc-card__body,
.cart-row__main {
  display: grid;
  gap: 0.5rem;
}

.calc-card__body .card__button {
  width: auto;
  min-width: 132px;
  justify-self: start;
}

.calc-card__body p {
  margin: 0;
}

.cart-row__meta {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid var(--line);
}

.qty-box button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 800;
  cursor: pointer;
}

.faq-list {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-item strong {
  display: block;
}

.vacancy-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.vacancy-meta div {
  padding: 0.95rem;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.vacancy-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.vacancy-meta strong {
  display: block;
  margin-top: 0.25rem;
}

.career-offers {
  display: grid;
  gap: 1.1rem;
  padding: 1.4rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 201, 109, 0.24), transparent 18%),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(135deg, rgba(255, 233, 195, 0.98), rgba(255, 196, 121, 0.98) 48%, rgba(245, 152, 58, 0.98) 100%);
  border: 1px solid rgba(214, 125, 57, 0.34);
  box-shadow: 0 28px 46px rgba(168, 87, 21, 0.14);
}

.career-offers__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.career-offers__header .product-description {
  max-width: 760px;
  color: rgba(76, 43, 19, 0.86);
}

.career-offers__note {
  flex: none;
  padding: 0.7rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.78);
  border: 1px solid rgba(162, 88, 23, 0.22);
  color: #7b3912;
  font-weight: 800;
  white-space: nowrap;
}

.career-offers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.career-offer-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(255, 245, 228, 0.92));
  border: 1px solid rgba(170, 92, 28, 0.22);
  box-shadow: 0 18px 30px rgba(112, 58, 22, 0.08);
}

.career-offer-card__badge {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 239, 205, 0.9);
  border: 1px solid rgba(214, 125, 57, 0.28);
  color: #8a3f12;
  font-size: 0.82rem;
  font-weight: 800;
}

.career-offer-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.15;
}

.career-offer-card p {
  margin: 0;
  color: rgba(76, 43, 19, 0.82);
  line-height: 1.55;
}

.career-offer-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  display: grid;
  gap: 0.4rem;
}

.career-offer-card__list li::marker {
  color: var(--accent);
}

.career-offer-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 50px;
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #c94a12, #ef7f1f 54%, #ff9e32 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 16px 28px rgba(203, 75, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.career-offer-card__link:hover {
  transform: translateY(-2px);
  filter: saturate(1.06) brightness(1.02);
  box-shadow:
    0 22px 32px rgba(203, 75, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.career-offer-card__link:active {
  transform: translateY(0);
  box-shadow:
    0 10px 18px rgba(203, 75, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.catalog-shell {
  position: relative;
}

.stickermania-page {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 241, 221, 0.92), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(255, 122, 39, 0.18), transparent 18%),
    linear-gradient(180deg, #f6ebd7 0%, #f3dfc1 42%, #f8eddc 100%);
}

.stickermania-hero {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.42), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(203, 75, 18, 0.22), transparent 18%),
    linear-gradient(135deg, #f6c36f 0%, #f29f3b 38%, #d95514 100%);
}

.stickermania-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1.25rem;
  align-items: center;
}

.stickermania-hero__main {
  display: grid;
  gap: 1rem;
}

.stickermania-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.stickermania-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.stickermania-ribbon span {
  padding: 0.52rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.78);
  border: 1px solid rgba(255, 229, 198, 0.42);
  color: #75320d;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(105, 46, 13, 0.08);
}

.stickermania-poster {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.92), rgba(255, 238, 210, 0.92));
  border: 1px solid rgba(255, 226, 190, 0.44);
  box-shadow: 0 28px 50px rgba(109, 46, 15, 0.14);
  transform: rotate(-2deg);
}

.stickermania-poster__ticket {
  padding: 1rem 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(214, 125, 57, 0.55);
}

.stickermania-poster__ticket span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

.stickermania-poster__ticket strong {
  display: block;
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: 1.1rem;
  line-height: 1.06;
}

.stickermania-poster__ticket--accent {
  background: linear-gradient(135deg, rgba(255, 213, 120, 0.92), rgba(255, 240, 207, 0.94));
}

.stickermania-layout {
  gap: 1.4rem;
}

.stickermania-lead {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 228, 0.96));
}

.stickermania-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0.15rem 0;
}

.stickermania-band span {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(218, 153, 104, 0.34);
  background: rgba(255, 250, 244, 0.78);
  color: var(--accent-dark);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(112, 58, 22, 0.05);
}

.stickermania-section {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(250, 238, 221, 0.98));
}

.stickermania-products {
  display: grid;
  gap: 1.2rem;
}

.stickermania-products__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: 1rem;
  align-items: start;
}

.stickermania-products__note {
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 236, 195, 0.92), rgba(255, 251, 242, 0.96));
  border: 1px solid rgba(216, 150, 72, 0.26);
  box-shadow: 0 18px 34px rgba(112, 58, 22, 0.07);
}

.stickermania-products__note span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.stickermania-products__note strong {
  display: block;
  color: var(--text);
  line-height: 1.35;
}

.stickermania-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.restaurants-city-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.restaurants-city-card,
.restaurants-card,
.restaurants-hours-card {
  border: 1px solid rgba(200, 143, 82, 0.36);
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.92);
  box-shadow: 0 18px 40px rgba(89, 46, 18, 0.08);
}

.restaurants-city-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.restaurants-city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(89, 46, 18, 0.12);
  border-color: rgba(203, 75, 18, 0.45);
}

.restaurants-city-card strong,
.restaurants-card h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.restaurants-city-card p,
.restaurants-card p,
.restaurants-hours-card p {
  margin: 0;
  color: var(--muted);
}

.restaurants-city-card__stats,
.restaurants-card__meta,
.restaurants-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.restaurants-city-card__stats span,
.restaurants-card__meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(252, 229, 209, 0.8);
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.restaurants-list,
.restaurants-hours-list,
.restaurants-detail-grid {
  display: grid;
  gap: 1rem;
}

.restaurants-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
}

.restaurants-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.restaurants-card__head h3,
.restaurants-hours-card strong {
  margin: 0;
}

.restaurants-card__head a {
  color: var(--text);
  text-decoration: none;
}

.restaurants-card__head a:hover {
  color: var(--accent-dark);
}

.restaurants-card__address {
  font-size: 1rem;
  line-height: 1.5;
}

.restaurants-hours-list {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.restaurants-hours-card {
  padding: 1rem 1.05rem;
}

.restaurants-detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.restaurants-detail-grid > div {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 143, 82, 0.28);
  background: rgba(255, 251, 246, 0.85);
}

.restaurants-detail-grid span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.restaurants-detail-grid strong {
  font-size: 1rem;
  line-height: 1.45;
}

.stickermania-product-card {
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(255, 242, 224, 0.98));
  border: 1px solid rgba(214, 152, 92, 0.32);
  box-shadow: 0 22px 42px rgba(112, 58, 22, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stickermania-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 48px rgba(112, 58, 22, 0.14);
  border-color: rgba(214, 125, 57, 0.45);
}

.stickermania-product-card__image {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.86), transparent 38%),
    linear-gradient(180deg, rgba(255, 231, 197, 0.98), rgba(250, 221, 181, 0.98));
}

.stickermania-product-card__image img {
  width: 100%;
  max-width: 190px;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(114, 60, 19, 0.16));
}

.stickermania-product-card__body {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1rem 1.1rem;
}

.stickermania-product-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}

.stickermania-product-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.stickermania-product-card__body strong {
  color: var(--accent-dark);
  font-size: 0.95rem;
}

.not-found-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 246, 231, 0.94), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(203, 75, 18, 0.12), transparent 18%),
    linear-gradient(180deg, #f2e3cc 0%, #ecd6b4 42%, #f7ebdb 100%);
}

.not-found-hero {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.38), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(203, 75, 18, 0.2), transparent 18%),
    linear-gradient(135deg, #f6c36f 0%, #ee9a35 36%, #cf5416 100%);
}

.not-found-layout {
  display: grid;
  gap: 1.4rem;
  padding-bottom: 3.5rem;
}

.not-found-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.97), rgba(250, 239, 223, 0.98));
  border: 1px solid rgba(214, 152, 92, 0.28);
  box-shadow: 0 24px 48px rgba(87, 45, 20, 0.1);
}

.not-found-card__content {
  display: grid;
  gap: 0.95rem;
}

.not-found-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.not-found-snack {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding: 1.25rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.72), transparent 35%),
    linear-gradient(180deg, rgba(255, 236, 205, 0.96), rgba(250, 221, 181, 0.98));
  border: 1px solid rgba(214, 152, 92, 0.3);
  transform: rotate(-2deg);
}

.not-found-snack__tray {
  position: relative;
  width: 170px;
  display: grid;
  gap: 0.26rem;
  filter: drop-shadow(0 18px 22px rgba(114, 60, 19, 0.16));
}

.not-found-snack__bun,
.not-found-snack__lettuce,
.not-found-snack__patty {
  display: block;
  border-radius: 999px;
}

.not-found-snack__bun--top {
  height: 44px;
  border-radius: 999px 999px 26px 26px;
  background: linear-gradient(180deg, #ffc96e 0%, #ef9f35 100%);
}

.not-found-snack__lettuce {
  height: 10px;
  background: linear-gradient(90deg, #74b84c 0%, #95d05a 45%, #6ba640 100%);
  clip-path: polygon(0 45%, 8% 0, 16% 55%, 24% 12%, 32% 65%, 40% 8%, 48% 60%, 56% 14%, 64% 68%, 72% 18%, 80% 58%, 88% 6%, 100% 46%, 100% 100%, 0 100%);
}

.not-found-snack__patty {
  height: 22px;
  background: linear-gradient(180deg, #6d3214, #49200d);
}

.not-found-snack__bun--bottom {
  height: 24px;
  background: linear-gradient(180deg, #f4b35a, #df8f28);
}

.not-found-snack__bite {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f3d8b6;
  box-shadow:
    -14px 10px 0 #f3d8b6,
    -6px 24px 0 #f3d8b6;
}

.not-found-snack strong {
  font-family: "Archivo Black", "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.not-found-snack span:last-child {
  color: var(--muted);
  font-weight: 700;
}

.not-found-section {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(250, 238, 221, 0.98));
}

@media (max-width: 960px) {
  .top-nav,
  .calc-card__top,
  .cart-row,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-hero-card,
  .info-hero-card,
  .calculator-layout,
  .controls,
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .info-stats,
  .vacancy-meta {
    grid-template-columns: 1fr;
  }

  .hero__panel-grid,
  .info-links-grid--services {
    grid-template-columns: 1fr 1fr;
  }

  .info-link-card--service {
    grid-column: span 1 !important;
  }

  .top-nav__links {
    justify-content: flex-start;
    width: 100%;
  }

  .menu-section .section-header h3 {
    max-width: 100%;
  }

  .calc-card {
    grid-template-columns: 1fr;
  }

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

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

  .stickermania-hero__grid {
    grid-template-columns: 1fr;
  }

  .stickermania-poster {
    transform: none;
  }

  .stickermania-products__intro,
  .stickermania-products__grid {
    grid-template-columns: 1fr;
  }

  .career-offers__header {
    flex-direction: column;
  }

  .career-offers__grid {
    grid-template-columns: 1fr;
  }

  .not-found-card {
    grid-template-columns: 1fr;
  }

  .not-found-snack {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 12px, 1000px);
  }

  .top-nav__brand {
    font-size: 1.15rem;
  }

  .top-nav__links a {
    padding: 0.66rem 0.9rem;
    font-size: 0.96rem;
  }

  .hero__content {
    padding: 1.25rem 0 2.4rem;
  }

  .hero h1,
  .product-page h1,
  .info-page h1 {
    font-size: 1.55rem;
  }

  .product-page .product-layout {
    width: min(100% - 12px, 1000px);
    margin: 0 auto;
    padding-top: 0.5rem;
    padding-bottom: 1.6rem;
    padding-left: 0;
    padding-right: 0;
  }

  .product-page .product-hero-card,
  .product-page .product-composition,
  .product-page .nutrition-card,
  .product-page .related-section {
    padding: 0.8rem;
    border-radius: 18px;
  }

  .product-page .product-rating {
    margin-top: 0.2rem;
    padding: 1rem 0 0;
    border: 0;
    border-top: 1px solid rgba(217, 183, 147, 0.62);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-page .nutrition-card,
  .product-page .product-composition,
  .product-page .related-section {
    padding: 1rem 0 0;
    border: 0;
    border-top: 1px solid rgba(217, 183, 147, 0.62);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .product-page .product-hero-card {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .product-page .product-hero-card > .product-hero-card__image {
    grid-column: auto;
    grid-row: auto;
  }

  .product-page .product-hero-card__image,
  .product-page .product-hero-card__content {
    width: 100%;
    max-width: 100%;
  }

  .product-page .product-hero-card__image img {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .product-page .product-hero-card__image {
    margin-bottom: 0.05rem;
  }

  .rtb-banner-slot--product .rtb-banner-slot__target {
    min-height: 44px;
  }

  .product-page .product-hero-card__content,
  .product-page .product-hero-card__intro,
  .product-page .product-hero-card__heading,
  .product-page .composition-item,
  .nutrition-grid div {
    min-width: 0;
    max-width: 100%;
  }

  .product-page .product-rating__summary,
  .product-page .product-rating__button,
  .product-page .empty,
  .product-page .composition-item,
  .product-page .nutrition-grid div {
    border-radius: 18px;
    box-shadow: none;
  }

  .product-page .product-rating__head {
    gap: 0.8rem;
  }

  .product-page .product-rating__head h2,
  .product-page .nutrition-card h2,
  .product-page .product-composition h2,
  .product-page .related-section h2 {
    margin-bottom: 0.75rem;
  }

  .product-page h1 {
    display: block;
    width: 100%;
    font-size: 1.34rem;
    line-height: 1.06;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  .product-hero-card__heading {
    gap: 0.34rem;
  }

  .product-hero-card__heading .product-price {
    padding: 0.62rem 0.95rem 0.56rem;
    width: fit-content;
    font-size: 1.16rem;
  }

  .product-page .product-hero-card__intro .product-description {
    font-size: 0.98rem;
    line-height: 1.48;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .card__top .price {
    padding: 0.38rem 0.62rem 0.34rem;
    font-size: 0.94rem;
  }

  .delivery-cta {
    gap: 0.18rem;
    padding: 0.88rem 0.96rem;
    border-radius: 18px;
    border-color: rgba(214, 132, 61, 0.34);
    box-shadow:
      0 10px 18px rgba(98, 31, 11, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: none;
  }

  .delivery-cta::before {
    opacity: 0.55;
    animation-duration: 5.5s;
  }

  .delivery-cta::after {
    right: 0.75rem;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.96rem;
    box-shadow:
      0 6px 12px rgba(57, 16, 6, 0.16),
      inset 0 1px 0 rgba(255, 245, 230, 0.62);
  }

  .delivery-cta__eyebrow {
    padding: 0.14rem 0.46rem;
    font-size: 0.72rem;
  }

  .delivery-cta strong {
    max-width: calc(100% - 2.2rem);
    font-size: 0.9rem;
    line-height: 1.12;
  }

  .delivery-cta__note {
    max-width: calc(100% - 2.2rem);
    font-size: 0.74rem;
  }

  .rtb-banner-slot,
  .rtb-banner-slot__inner,
  .rtb-banner-slot__target {
    width: 100%;
    max-width: 100%;
  }

  .card__actions,
  .product-meta {
    flex-direction: column;
  }

  .card__button,
  .hero__link {
    width: 100%;
  }

  .menu-grid,
  .info-grid,
  .composition-list,
  .faq-list,
  .category-nav__list,
  .info-links-grid {
    grid-template-columns: 1fr;
  }

  .nutrition-grid,
  .summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-rating__head,
  .product-rating__actions {
    grid-template-columns: 1fr;
  }

  .hero__panel-grid,
  .info-links-grid--services {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(194, 129, 71, 0.2);
  background: rgba(255, 249, 240, 0.72);
}

.site-footer__inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.9rem 0 1rem;
}

.site-footer__nav {
  margin-bottom: 0.5rem;
}

.site-footer__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
  align-items: center;
}

.site-footer__disclaimer {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #866654;
}

.site-footer__inner a {
  color: #221911;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
}

.site-footer__line a:hover {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.protein-page .hero__eyebrow {
  background: rgba(255, 239, 215, 0.22);
}

.protein-hero-card {
  align-items: center;
}

.protein-section .badge {
  white-space: normal;
  text-align: right;
}

.protein-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.protein-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(217, 183, 147, 0.92);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 234, 215, 0.96));
}

.protein-card__top,
.protein-card__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.protein-card__rank,
.protein-card__metric {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 154, 89, 0.62);
  background: rgba(255, 247, 233, 0.98);
  color: #a34a19;
  font-weight: 800;
}

.protein-card__metric {
  color: #6f3f18;
}

.protein-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.12;
}

.protein-card h3 a {
  text-decoration: none;
  color: var(--text);
}

.protein-card__category {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.protein-bar {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(231, 205, 176, 0.58);
}

.protein-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f3a54d 0%, #cb4b12 100%);
}

.protein-card__facts span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid rgba(223, 187, 149, 0.72);
  color: #6d5141;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 720px) {
  .site-footer {
    margin-top: 2rem;
  }

  .site-footer__inner {
    width: min(100% - 1.25rem, 1180px);
    padding: 0.8rem 0 1rem;
  }

  .site-footer__disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .site-footer__line {
    gap: 0.45rem 1rem;
  }

  .site-footer__line a {
    font-size: 0.94rem;
  }
}

@media (max-width: 420px) {
  .product-page .product-layout {
    width: min(100% - 8px, 1000px);
  }

  .product-page .product-hero-card {
    padding: 0.72rem;
  }

  .product-page .product-rating,
  .product-page .nutrition-card,
  .product-page .product-composition,
  .product-page .related-section {
    padding-top: 0.9rem;
  }

  .product-page h1 {
    font-size: 1.22rem;
    line-height: 1.04;
  }

  .product-page .product-hero-card__intro .product-description {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .delivery-cta {
    padding: 0.82rem 0.9rem;
  }

  .delivery-cta strong {
    font-size: 0.86rem;
  }
}

@media (max-width: 980px) {
  .partner-promo {
    grid-template-columns: 1fr;
  }

  .partner-promo__visual {
    order: -1;
  }

  .partner-promo__phone {
    width: min(100%, 250px);
    min-height: 170px;
  }
}

@media (max-width: 640px) {
  .partner-promo-slot,
  .partner-promo-slot--catalog,
  .partner-promo-slot--category,
  .partner-promo-slot--info,
  .partner-promo-slot--calculator,
  .partner-promo-slot--product {
    margin-top: 0.9rem;
    margin-bottom: 1rem;
  }

  .partner-promo {
    padding: 0.95rem;
    border-radius: 24px;
    gap: 0.9rem;
  }

  .partner-promo__title {
    font-size: 1.25rem;
    max-width: none;
  }

  .partner-promo__text {
    font-size: 0.92rem;
  }

  .partner-promo__button {
    width: 100%;
  }

  .partner-promo__phone {
    width: 100%;
    min-height: 150px;
  }

  .partner-promo__burst {
    min-width: 118px;
    min-height: 118px;
    font-size: 1.55rem;
  }

  .partner-promo__mini {
    font-size: 0.65rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(180deg, #4a2614 0%, #32180d 100%);
  border-bottom: 1px solid rgba(255, 228, 199, 0.14);
  box-shadow: 0 10px 28px rgba(48, 18, 8, 0.18);
}

.site-header__inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff7ec;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.12rem;
  white-space: nowrap;
}

.site-header__toggle {
  display: none;
  border: 1px solid rgba(255, 228, 199, 0.28);
  background: rgba(255, 243, 227, 0.12);
  color: #fff8f1;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.site-header__brands,
.site-header__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-header__nav a {
  text-decoration: none;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  color: #fff8f1;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  background: rgba(255, 243, 227, 0.1);
}

.site-header__brands a {
  background: rgba(255, 243, 227, 0.16);
  border-color: rgba(255, 228, 199, 0.2);
}

.site-header__nav a:hover,
.site-header__nav a.is-active {
  background: #fff4e6;
  color: #3a1c10;
}

.hero .hero__content {
  padding-top: 1.4rem;
}

.brand-hub {
  margin: 0 0 1.4rem;
}

.brand-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.brand-hub__card {
  display: grid;
  gap: 0.35rem;
  padding: 1.05rem 1.15rem;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid rgba(194, 129, 71, 0.18);
  box-shadow: var(--shadow);
}

.brand-hub__card strong {
  font-size: 1.15rem;
}

.brand-hub__card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.brand-hub__card.is-current,
.brand-hub__card:hover {
  border-color: rgba(203, 75, 18, 0.45);
  transform: translateY(-1px);
}

.chain-switch {
  width: min(1180px, calc(100% - 2rem));
  margin: 1.6rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.chain-switch__label {
  font-weight: 800;
  margin-right: 0.3rem;
}

.chain-switch a {
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(194, 129, 71, 0.2);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}

.chain-switch a:hover {
  background: #fff4e6;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem 1.5rem;
  margin-bottom: 1rem;
}

.site-footer__label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #866654;
}

.site-footer__col nav {
  display: grid;
  gap: 0.35rem;
}

@media (max-width: 960px) {
  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.35rem);
    padding: 0.85rem;
    border-radius: 22px;
    background: #3a1c10;
    box-shadow: 0 18px 40px rgba(48, 18, 8, 0.28);
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    position: sticky;
  }

  .site-header.is-open .site-header__nav {
    display: flex;
  }

  .site-header__brands,
  .site-header__links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-header__nav a {
    width: 100%;
  }

  .brand-hub__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.promo-bar {
  background: linear-gradient(90deg, #0b1b3a 0%, #1a3a6b 50%, #2b5ea8 100%);
  border-bottom: 1px solid rgba(180, 214, 255, 0.18);
}

.promo-bar a {
  display: block;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.62rem 0;
  color: #eef6ff;
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
  text-decoration: none;
}

.promo-bar a:hover {
  color: #fff;
}

.promo-spotlight {
  margin: 0 0 1.4rem;
}

.promo-spotlight__card {
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem 1.25rem;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, #0b1b3a 0%, #1f4d8c 100%);
  border: 1px solid rgba(180, 214, 255, 0.22);
  box-shadow: 0 16px 36px rgba(11, 27, 58, 0.22);
}

.promo-spotlight__card .product-category,
.promo-spotlight__card span {
  color: rgba(238, 246, 255, 0.82);
}

.promo-spotlight__card strong {
  color: #fff;
  font-size: 1.28rem;
}

.genshin-page .stickermania-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(91, 160, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #071428 0%, #16386f 52%, #2b5ea8 100%);
}

.genshin-page .stickermania-hero .hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 40, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(7, 20, 40, 0.12), transparent 40%);
}

.genshin-page .stickermania-hero h1 {
  color: #f4f8ff;
  text-shadow: 0 2px 18px rgba(7, 20, 40, 0.35);
}

.genshin-page .stickermania-hero .hero__subtitle {
  color: #d7e7ff;
}

.genshin-page .stickermania-hero .hero__eyebrow {
  color: #0b1b3a;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(180, 214, 255, 0.45);
}

.genshin-page .stickermania-ribbon span {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(180, 214, 255, 0.32);
  color: #f4f8ff;
}

.genshin-page .stickermania-poster {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(232, 242, 255, 0.96));
  border-color: rgba(180, 214, 255, 0.38);
}

.genshin-page .stickermania-poster__ticket {
  background: #f4f8ff;
  color: #0b1b3a;
  border-color: rgba(43, 94, 168, 0.28);
}

.genshin-page .stickermania-poster__ticket span {
  color: #4a6a96;
}

.genshin-page .stickermania-poster__ticket strong {
  color: #0b1b3a;
}

.genshin-page .stickermania-poster__ticket--accent {
  background: linear-gradient(135deg, #1a3a6b, #2b5ea8);
  color: #fff;
}

.genshin-page .stickermania-poster__ticket--accent span {
  color: rgba(238, 246, 255, 0.82);
}

.genshin-page .stickermania-poster__ticket--accent strong {
  color: #fff;
}

.genshin-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.genshin-checklist article {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(194, 129, 71, 0.16);
}

.genshin-checklist h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.genshin-checklist p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.genshin-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
}

.genshin-subnav a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 94, 168, 0.2);
  background: rgba(244, 248, 255, 0.9);
  color: #16386f;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
}

.genshin-subnav a:hover,
.genshin-subnav a.is-active {
  background: #16386f;
  border-color: #16386f;
  color: #f4f8ff;
}

.genshin-ladder {
  display: grid;
  gap: 0.75rem;
}

.genshin-ladder article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(43, 94, 168, 0.16);
}

.genshin-ladder__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.4rem;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: #16386f;
  color: #f4f8ff;
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
}

.genshin-ladder h3,
.genshin-weeks h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}

.genshin-ladder p,
.genshin-weeks p {
  margin: 0;
  color: var(--muted);
}

.genshin-weeks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 0 0 1rem;
}

.genshin-weeks article {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(43, 94, 168, 0.16);
}

.genshin-source {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .genshin-weeks,
  .genshin-checklist {
    grid-template-columns: 1fr;
  }

  .genshin-ladder article {
    grid-template-columns: 1fr;
  }
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.3rem;
}

.journal-filters__btn {
  border: 1px solid rgba(191, 136, 95, 0.28);
  background: rgba(255, 251, 245, 0.86);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.journal-filters__btn:hover,
.journal-filters__btn.active {
  background: #fff4e6;
  border-color: rgba(203, 75, 18, 0.45);
  color: var(--accent-dark);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.journal-card {
  display: grid;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid rgba(194, 129, 71, 0.18);
  border-radius: 22px;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.journal-card:hover {
  border-color: rgba(203, 75, 18, 0.45);
  transform: translateY(-1px);
}

.journal-card__body {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem 1.2rem;
  align-content: start;
}

.journal-card__category {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.journal-card__title {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.3;
}

.journal-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.journal-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.journal-card__author-photo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.article-header {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.3rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  align-items: center;
}

.article-meta__category,
.article-meta__date {
  font-weight: 800;
  font-size: 0.86rem;
}

.article-meta__category {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.article-author__photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author__info {
  display: grid;
  gap: 0.15rem;
}

.article-author__name {
  font-weight: 800;
}

.article-author__role {
  color: var(--muted);
  font-size: 0.9rem;
}

.article-content {
  display: grid;
  gap: 0.95rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.article-content h2,
.article-content h3 {
  margin: 0.6rem 0 0;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin: 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface-strong);
}

.article-content th,
.article-content td {
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(194, 129, 71, 0.16);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  background: rgba(255, 244, 230, 0.9);
}

.article-back {
  display: inline-flex;
  margin-top: 1.6rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.editorial-intro,
.author-profile,
.author-credentials,
.author-topics,
.editorial-policy,
.values-section {
  margin: 0 0 1.5rem;
}

.editorial-intro p,
.author-profile__bio {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.team-card {
  display: grid;
  justify-items: start;
  gap: 0.45rem;
  padding: 1.15rem;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid rgba(194, 129, 71, 0.18);
  box-shadow: var(--shadow);
}

.team-card__photo,
.author-profile__photo {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  object-fit: cover;
}

.team-card__name,
.author-profile__info h2,
.author-profile__name {
  margin: 0.2rem 0 0;
}

.team-card__role,
.author-profile__role {
  color: var(--accent-dark);
  font-weight: 800;
}

.team-card__desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.team-card__link {
  font-weight: 800;
  color: var(--accent-dark);
}

.author-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
}

.author-profile__info h1 {
  display: none;
}

.credentials-list,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.credential-item,
.policy-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(194, 129, 71, 0.16);
}

.policy-card {
  grid-template-columns: 1fr;
}

.credential-item__icon {
  font-size: 1.3rem;
}

.policy-card__title {
  margin: 0;
  font-weight: 800;
}

.policy-card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.topic-badge {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.88rem;
}

.values-list {
  display: grid;
  gap: 0.8rem;
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(194, 129, 71, 0.16);
}

.value-item__num {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.value-item__content {
  display: grid;
  gap: 0.25rem;
}

.value-item__content p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .genshin-checklist {
    grid-template-columns: 1fr;
  }

  .promo-bar a {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .journal-grid,
  .team-grid,
  .credentials-list,
  .policy-grid,
  .author-profile {
    grid-template-columns: 1fr;
  }
}
