: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;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  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%);
}

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;
  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;
  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);
}

.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(2.5rem, 4.4vw, 4.8rem);
  line-height: 1.01;
  letter-spacing: -0.03em;
}

.hero__subtitle,
.product-description {
  margin: 1rem 0 0;
  max-width: 720px;
  font-size: 1.06rem;
  line-height: 1.7;
  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__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);
}

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

.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;
}

.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-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 .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;
}

.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;
}

.catalog-shell {
  position: relative;
}

@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;
  }

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

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

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

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

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

  .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;
  }

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