:root {
  --seo-brand: #4a1e12;
  --seo-brand-dark: #351208;
  --seo-accent: #e65c2e;
  --seo-cream: #fdf9ec;
  --seo-gold: #e8d98b;
  --seo-text: #172033;
  --seo-muted: #64748b;
  --seo-card: #ffffff;
  --seo-line: #e7e2da;
  --seo-success: #15803d;
  --seo-danger: #b91c1c;
  --seo-shell: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f5f1;
  color: var(--seo-text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.seo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(74, 30, 18, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.seo-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.seo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.seo-brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--seo-brand);
  border: 3px solid #fff;
  box-shadow: 0 8px 22px rgba(74, 30, 18, 0.18);
  flex: 0 0 auto;
}

.seo-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.seo-brand strong,
.seo-brand small {
  display: block;
}

.seo-brand strong {
  color: var(--seo-brand);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.025em;
}

.seo-brand small {
  color: var(--seo-muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  white-space: nowrap;
}

.seo-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.seo-nav a {
  text-decoration: none;
  color: #475569;
}

.seo-nav a:hover,
.seo-nav a:focus-visible {
  color: var(--seo-accent);
}

.seo-nav__order {
  border-radius: 999px;
  background: var(--seo-brand);
  color: #fff !important;
  padding: 10px 16px;
}

.seo-nav__order:hover,
.seo-nav__order:focus-visible {
  background: var(--seo-brand-dark);
}

.seo-hero {
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 30, 18, 0.08);
  background:
    radial-gradient(circle at 85% 20%, rgba(230, 92, 46, 0.18), transparent 34%),
    linear-gradient(145deg, #fff8e8 0%, #fff 46%, #f6eee7 100%);
}

.seo-hero--bread {
  background:
    radial-gradient(circle at 85% 15%, rgba(232, 217, 139, 0.42), transparent 34%),
    linear-gradient(145deg, #fffaf0 0%, #fff 50%, #f4ede5 100%);
}

.seo-hero--pizza {
  background:
    radial-gradient(circle at 85% 15%, rgba(230, 92, 46, 0.23), transparent 34%),
    linear-gradient(145deg, #fff6ee 0%, #fff 50%, #f7eee8 100%);
}

.seo-hero--process {
  background:
    radial-gradient(circle at 85% 15%, rgba(74, 30, 18, 0.16), transparent 34%),
    linear-gradient(145deg, #fbf6ed 0%, #fff 50%, #eee6dc 100%);
}

.seo-hero__content {
  max-width: 810px;
  padding: 70px 0 78px;
}

.seo-kicker {
  display: inline-block;
  color: var(--seo-accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.seo-hero h1,
.seo-product-detail h1 {
  margin: 12px 0 18px;
  color: var(--seo-brand);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.seo-hero__content > p {
  max-width: 760px;
  margin: 0;
  color: #475569;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
}

.seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--seo-brand);
  border-radius: 999px;
  background: var(--seo-brand);
  color: #fff;
  padding: 11px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.seo-button:hover,
.seo-button:focus-visible {
  transform: translateY(-1px);
  background: var(--seo-brand-dark);
  border-color: var(--seo-brand-dark);
}

.seo-button--secondary {
  background: transparent;
  color: var(--seo-brand);
}

.seo-button--secondary:hover,
.seo-button--secondary:focus-visible {
  color: #fff;
}

.seo-button.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.seo-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  color: #64748b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
}

.seo-breadcrumb a {
  color: var(--seo-accent);
  text-decoration: none;
}

.seo-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 50px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 52px;
}

.seo-article {
  max-width: 760px;
}

.seo-article h2,
.seo-section__heading h2,
.seo-aside h2,
.seo-related-links h2,
.seo-empty-card h2 {
  margin: 34px 0 12px;
  color: var(--seo-brand);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.seo-article h2:first-child {
  margin-top: 0;
}

.seo-article p,
.seo-article li,
.seo-aside p,
.seo-section__heading p,
.seo-empty-card p {
  color: #475569;
}

.seo-article ul {
  margin: 14px 0 0;
  padding-left: 1.25rem;
}

.seo-article li + li {
  margin-top: 8px;
}

.seo-aside {
  position: sticky;
  top: 100px;
  border: 1px solid var(--seo-line);
  border-radius: 24px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(45, 32, 25, 0.08);
}

.seo-aside h2 {
  margin-top: 10px;
  font-size: 1.35rem;
}

.seo-text-link {
  color: var(--seo-accent);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.seo-section {
  padding: 34px 0 76px;
}

.seo-section__heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.seo-section__heading h2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.seo-section__heading p {
  margin: 0;
}

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

.seo-product-card {
  overflow: hidden;
  border: 1px solid var(--seo-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(45, 32, 25, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.seo-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(45, 32, 25, 0.12);
}

.seo-product-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.seo-product-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee8df;
}

.seo-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.seo-product-card:hover .seo-product-card__image img {
  transform: scale(1.025);
}

.seo-product-card__body {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 20px;
}

.seo-product-card h2 {
  margin: 7px 0 8px;
  color: var(--seo-brand);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.seo-product-card p {
  margin: 0;
  color: var(--seo-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.seo-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
}

.seo-product-card__meta strong {
  color: var(--seo-accent);
  font-size: 0.95rem;
}

.is-available {
  color: var(--seo-success);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.is-unavailable {
  color: var(--seo-danger);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.seo-empty-card {
  margin: 32px 0 72px;
  border: 1px dashed #cfc6bb;
  border-radius: 24px;
  background: #fff;
  padding: 34px;
  text-align: center;
}

.seo-empty-card h2 {
  margin-top: 0;
}

.seo-product-page {
  padding-top: 18px;
  padding-bottom: 72px;
}

.seo-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 50px;
  align-items: center;
  margin-top: 26px;
  border: 1px solid var(--seo-line);
  border-radius: 30px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 22px 64px rgba(45, 32, 25, 0.1);
}

.seo-product-detail__image {
  overflow: hidden;
  border-radius: 24px;
  background: #eee8df;
}

.seo-product-detail__image img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
}

.seo-product-detail h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.seo-product-detail__description {
  color: #475569;
  font-size: 1.02rem;
}

.seo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.seo-badges span {
  border: 1px solid #f0c3ae;
  border-radius: 999px;
  background: #fff5ef;
  color: #b7441e;
  padding: 6px 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.seo-product-detail__purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 24px 0;
  border-top: 1px solid var(--seo-line);
  border-bottom: 1px solid var(--seo-line);
  padding: 18px 0;
}

.seo-product-detail__purchase small,
.seo-product-detail__purchase strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
}

.seo-product-detail__purchase small {
  color: var(--seo-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.seo-product-detail__purchase strong {
  color: var(--seo-accent);
  font-size: 1.25rem;
}

.seo-product-detail__note {
  margin-top: 16px;
  color: var(--seo-muted);
  font-size: 0.8rem;
}

.seo-related-links {
  margin-top: 42px;
  border-top: 1px solid var(--seo-line);
  padding-top: 30px;
}

.seo-related-links h2 {
  margin-top: 0;
}

.seo-related-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-related-links a {
  border: 1px solid var(--seo-line);
  border-radius: 999px;
  background: #fff;
  color: var(--seo-brand);
  padding: 9px 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.seo-footer {
  background: var(--seo-brand-dark);
  color: #fff;
  padding: 46px 0 22px;
}

.seo-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
}

.seo-footer strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
}

.seo-footer p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #d8cfc9;
  font-size: 0.9rem;
}

.seo-footer nav {
  display: grid;
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

.seo-footer a {
  color: #f5e7df;
  text-decoration: none;
}

.seo-footer a:hover,
.seo-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.seo-footer__bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  color: #bfaea5;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .seo-nav a:not(.seo-nav__order) {
    display: none;
  }

  .seo-main-grid,
  .seo-product-detail {
    grid-template-columns: 1fr;
  }

  .seo-aside {
    position: static;
  }

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

  .seo-product-detail {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .seo-shell {
    width: min(100% - 24px, var(--seo-shell));
  }

  .seo-header__inner {
    min-height: 68px;
  }

  .seo-brand__logo {
    width: 42px;
    height: 42px;
  }

  .seo-brand small {
    display: none;
  }

  .seo-nav__order {
    padding: 9px 13px;
    font-size: 0.78rem;
  }

  .seo-hero__content {
    padding: 48px 0 56px;
  }

  .seo-hero h1,
  .seo-product-detail h1 {
    font-size: 2.3rem;
  }

  .seo-main-grid {
    gap: 26px;
    padding-top: 42px;
  }

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

  .seo-product-card__body {
    min-height: 0;
  }

  .seo-product-detail {
    margin-top: 18px;
    border-radius: 22px;
    padding: 16px;
  }

  .seo-product-detail__purchase {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
