:root {
  color-scheme: light dark;
  --ash: #fffaf0;
  --smoke: #dcc9a8;
  --muted: #6e6253;
  --charcoal: #080807;
  --coal: #11110f;
  --panel: rgba(255, 252, 241, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(74, 55, 35, 0.14);
  --line-strong: rgba(74, 55, 35, 0.26);
  --ember: #e96f2c;
  --ember-hot: #ff9a3d;
  --gold: #b87525;
  --sage: #cad8a2;
  --shadow: 0 26px 80px rgba(96, 67, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 206, 98, 0.36), transparent 24rem),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.76), transparent 24rem),
    linear-gradient(135deg, #fff8e6 0%, #f4ddb2 44%, #e9c076 100%);
  color: #22170f;
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  transition: background 700ms ease, color 700ms ease;
}

body.theme-dark {
  --ash: #f8f3eb;
  --smoke: #bdb8ad;
  --muted: #827d73;
  --panel: rgba(248, 243, 235, 0.075);
  --panel-strong: rgba(248, 243, 235, 0.12);
  --line: rgba(248, 243, 235, 0.15);
  --line-strong: rgba(248, 243, 235, 0.28);
  --gold: #d8b16f;
  --sage: #77806e;
  --shadow: 0 34px 100px rgba(0, 0, 0, 0.55);
  background:
    radial-gradient(circle at 78% 8%, rgba(233, 111, 44, 0.1), transparent 26rem),
    linear-gradient(135deg, #1b1914 0%, #151411 38%, #070707 100%);
  color: var(--ash);
}

body::before {
  background-image:
    linear-gradient(rgba(87, 61, 32, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 61, 32, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

body::after {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.55), transparent 28rem),
    rgba(255, 242, 213, 0.68);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 360ms ease;
  z-index: 30;
}

body.theme-dissolving::after {
  opacity: 1;
}

body.theme-dark::after {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 145, 63, 0.24), transparent 28rem),
    rgba(8, 8, 7, 0.62);
}

body.theme-dark::before {
  background-image:
    linear-gradient(rgba(248, 243, 235, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 243, 235, 0.025) 1px, transparent 1px);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 235, 0.9);
  backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(24, 20, 16, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(32, 27, 20, 0.13);
  color: #201b16;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto 1fr;
  left: clamp(0.8rem, 3vw, 2rem);
  padding: 0.75rem 0.85rem;
  position: fixed;
  right: clamp(0.8rem, 3vw, 2rem);
  top: 1rem;
  z-index: 20;
}

body.theme-dark .site-header {
  background: rgba(248, 243, 225, 0.78);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions,
.material-stats,
.hero-price-row {
  align-items: center;
  display: flex;
}

.brand {
  color: #6f93b8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
  gap: 0.42rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: lowercase;
}

.brand-mark-image {
  height: 2.95rem;
  object-fit: contain;
  width: 3.8rem;
}

.brand-logo-image {
  filter: drop-shadow(0 8px 18px rgba(37, 50, 60, 0.12));
}

body.theme-dark .brand {
  color: #6f93b8;
}

.nav-links {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(32, 27, 22, 0.58);
  gap: 0.3rem;
  justify-content: center;
  padding: 0.25rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-links a {
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: rgba(32, 27, 22, 0.08);
  color: #17130f;
}

.header-action,
.primary-button,
.secondary-button,
.add-product {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 2.85rem;
  overflow: hidden;
  padding: 0.85rem 1.18rem;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-action,
.secondary-button {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(32, 27, 22, 0.13);
}

.header-action {
  background: #080807;
  border-radius: 7px;
  border-color: #080807;
  color: #ffffff;
  justify-self: end;
}

.primary-button,
.add-product {
  background: #080807;
  box-shadow: 0 18px 45px rgba(8, 8, 7, 0.24);
  color: #ffffff;
}

.primary-button:hover,
.add-product:hover,
.secondary-button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.primary-button::after,
.add-product::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  content: "";
  height: 100%;
  left: -120%;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  width: 50%;
}

.primary-button:hover::after,
.add-product:hover::after {
  animation: button-sheen 850ms ease;
}

.hero {
  isolation: isolate;
  border-radius: 0 0 26px 26px;
  margin: 0.35rem;
  min-height: calc(100vh - 0.7rem);
  overflow: hidden;
  position: relative;
}

.fire-video-loop,
.hero-image,
.hero-shade,
.heat-line {
  inset: 0;
  position: absolute;
}

.fire-video-loop {
  overflow: hidden;
  pointer-events: none;
}

.fire-video-loop::after {
  background:
    radial-gradient(ellipse at center bottom, rgba(255, 122, 32, 0.16), transparent 58%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 42%);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
}

.fire-video-page {
  height: 100vh;
  mix-blend-mode: normal;
  opacity: 0.24;
  position: fixed;
  width: 100vw;
  z-index: 3;
}

.fire-video-section {
  height: 100%;
  opacity: 0.72;
  width: 100%;
  z-index: 0;
}

.fire-video-layer {
  filter: saturate(1.28) contrast(1.14) brightness(0.82);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0;
  position: absolute;
  transform: scale(1.04);
  transform-origin: center bottom;
  transition: opacity 2000ms ease;
  width: 100%;
}

.fire-video-layer.is-active {
  opacity: 1;
}

.hero-image {
  overflow: hidden;
  z-index: 0;
}

.hero-image img {
  filter: saturate(0.96) contrast(1.06) brightness(1.05);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  position: absolute;
  transform: scale(1.015);
  transition: opacity 3200ms ease, filter 700ms ease, transform 8600ms ease;
  width: 100%;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.045);
}

body.theme-dark .hero-image img {
  filter: saturate(0.76) contrast(1.12) brightness(0.88);
}

.hero-shade {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 243, 196, 0.34), transparent 24rem),
    linear-gradient(180deg, rgba(255, 242, 202, 0.38) 0%, rgba(255, 224, 154, 0.08) 48%, rgba(255, 246, 217, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.18), rgba(8, 8, 7, 0.08));
  z-index: 1;
}

body.theme-dark .hero-shade {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.12), transparent 21rem),
    linear-gradient(180deg, rgba(239, 232, 214, 0.14) 0%, rgba(229, 223, 211, 0.02) 48%, rgba(239, 232, 214, 0.12) 100%),
    linear-gradient(0deg, rgba(232, 226, 214, 0.16) 0%, rgba(232, 226, 214, 0) 34%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.34), rgba(8, 8, 7, 0.2));
}

.heat-line {
  animation: heat-drift 7s ease-in-out infinite;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 48%, transparent 100%);
  filter: blur(16px);
  height: 1px;
  left: -20%;
  opacity: 0.8;
  top: 72%;
  transform: rotate(-7deg);
  width: 140%;
  z-index: 2;
}

.hero-shell {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: calc(100vh - 0.7rem);
  padding: clamp(7rem, 13vw, 10rem) clamp(1rem, 5vw, 5rem) clamp(2.2rem, 7vw, 5rem);
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 850px;
  text-align: center;
}

.eyebrow {
  color: #b85d19;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.9rem;
  text-shadow: none;
  text-transform: uppercase;
}

body.theme-dark .eyebrow {
  color: #fff4df;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h1 {
  color: #fff7ea;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
  text-wrap: balance;
}

h1 span {
  display: block;
}

h1 span:first-child {
  font-size: 1.1em;
}

h1 span:last-child {
  color: #ffffff;
  font-size: 0.82em;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.58);
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.7rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-wrap: balance;
}

h2 span {
  display: block;
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
}

.hero-copy {
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  max-width: 46rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero-actions .primary-button {
  backdrop-filter: none;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 7px;
  border: 1px solid rgba(0, 0, 0, 0.86);
  box-shadow: 0 18px 45px rgba(8, 8, 7, 0.2);
  color: #ffffff;
  isolation: isolate;
  min-width: 13.5rem;
  padding-left: 1.7rem;
  padding-right: 1.7rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.82);
  white-space: nowrap;
  width: auto;
}

.hero-actions .primary-button span {
  position: relative;
  z-index: 2;
}

.button-flame-overlay {
  height: 100%;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.2;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.button-flame-overlay .fire-video-layer {
  filter: saturate(1.05) contrast(1.08) brightness(0.62);
  transform: scale(1.16);
}

.hero-actions .primary-button::after {
  display: none;
}

.hero-actions .primary-button:hover {
  background: rgba(0, 0, 0, 0.74);
  border-color: rgba(0, 0, 0, 0.96);
}

.hero-action-note {
  color: #fff8eb;
  flex: 0 0 100%;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.68);
  text-transform: uppercase;
}

.hero-order-card,
.product-card,
.recipe-card,
.order-items,
.customer-fields,
.order-summary,
.material-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 218, 0.8)),
    rgba(255, 250, 235, 0.9);
  border: 1px solid rgba(107, 78, 42, 0.16);
  box-shadow: var(--shadow);
}

.site-header,
.hero-shade,
.hero-order-card,
.product-card,
.recipe-card,
.order-items,
.customer-fields,
.order-summary,
.material-panel,
.metric-strip,
.metric,
.products-section,
.recipes-section,
.order-section,
.contact-band,
input,
select,
textarea {
  transition:
    background 700ms ease,
    background-color 700ms ease,
    background-image 700ms ease,
    border-color 700ms ease,
    box-shadow 700ms ease,
    color 700ms ease,
    filter 700ms ease;
}

body.theme-dark .hero-order-card,
body.theme-dark .product-card,
body.theme-dark .recipe-card,
body.theme-dark .order-items,
body.theme-dark .customer-fields,
body.theme-dark .order-summary,
body.theme-dark .material-panel {
  background:
    linear-gradient(145deg, rgba(248, 243, 235, 0.11), rgba(248, 243, 235, 0.05)),
    rgba(10, 10, 9, 0.9);
  border: 1px solid rgba(248, 243, 235, 0.22);
}

.hero-order-card {
  align-items: center;
  align-self: end;
  backdrop-filter: blur(26px) saturate(1.25);
  background: rgba(232, 226, 214, 0.72);
  border-color: rgba(32, 27, 22, 0.08);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(45, 39, 30, 0.16);
  color: #221d17;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: 1fr 1fr;
  max-width: 430px;
  overflow: hidden;
  padding: 0.55rem;
  position: relative;
}

body.theme-dark .hero-order-card {
  background:
    linear-gradient(145deg, rgba(248, 243, 235, 0.1), rgba(248, 243, 235, 0.035)),
    rgba(10, 10, 9, 0.86);
  border-color: rgba(248, 243, 235, 0.22);
  color: var(--ash);
}

.hero-order-card::after {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 7px;
  box-shadow: 0 10px 30px rgba(45, 39, 30, 0.1);
  content: "";
  height: calc(100% - 3.2rem);
  left: 0.55rem;
  pointer-events: none;
  position: absolute;
  top: 0.55rem;
  transform: translateX(0);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    background 700ms ease,
    box-shadow 700ms ease;
  width: calc((100% - 1.1rem) / 2);
  z-index: 0;
}

.hero-order-card[data-active-theme="dark"]::after {
  transform: translateX(100%);
}

body.theme-dark .hero-order-card::after {
  background: rgba(8, 8, 7, 0.88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.hero-order-card p,
.product-card p,
.recipe-card p,
.section-copy p,
.metric p,
.order-summary p,
.site-footer {
  color: #665542;
}

body.theme-dark .product-card p,
body.theme-dark .recipe-card p,
body.theme-dark .hero-order-card p,
body.theme-dark .section-copy p,
body.theme-dark .metric p,
body.theme-dark .order-summary p,
body.theme-dark .site-footer {
  color: #ded8cc;
}

.hero-order-card p {
  color: rgba(34, 29, 23, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.35rem 0.45rem 0.1rem;
  text-align: center;
}

.hero-mode {
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: rgba(34, 29, 23, 0.72);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 0.15rem;
  min-width: 9rem;
  padding: 0.8rem 1rem;
  position: relative;
  text-align: center;
  transition: color 360ms ease;
  z-index: 1;
}

body.theme-dark .hero-mode {
  color: rgba(248, 243, 235, 0.72);
}

.hero-mode.active {
  background: transparent;
  box-shadow: none;
  color: #221d17;
}

body.theme-dark .hero-mode.active {
  background: transparent;
  box-shadow: none;
  color: #ffffff;
}

.hero-mode strong {
  font-size: 0.94rem;
}

.hero-mode span {
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-price-row {
  border-top: 1px solid var(--line);
  justify-content: space-between;
  padding-top: 1rem;
}

.hero-price-row strong {
  color: var(--ash);
  font-size: 2.4rem;
}

.metric-strip,
.split-section,
.products-section,
.recipes-section,
.retail-section,
.order-section,
.contact-band,
.ember-section,
.site-footer {
  padding-left: clamp(1rem, 5vw, 5rem);
  padding-right: clamp(1rem, 5vw, 5rem);
}

.metric-strip {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 205, 99, 0.36), transparent 18rem),
    linear-gradient(180deg, #fff5dc 0%, #f1d39a 100%);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(2rem, 5vw, 4rem);
}

body.theme-dark .metric-strip {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 154, 61, 0.18), transparent 18rem),
    linear-gradient(180deg, #0c0c0b 0%, #15120f 100%);
}

.metric {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 244, 218, 0.72)),
    rgba(255, 249, 232, 0.78);
  border: 1px solid rgba(130, 94, 48, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(120, 82, 30, 0.16);
  display: grid;
  gap: 0.65rem;
  grid-template-columns: auto 1fr;
  min-height: 14rem;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  position: relative;
  z-index: 4;
}

body.theme-dark .metric {
  background:
    linear-gradient(145deg, rgba(255, 246, 229, 0.11), rgba(255, 246, 229, 0.035)),
    rgba(10, 10, 9, 0.7);
  border: 1px solid rgba(255, 240, 212, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.metric::before {
  background: linear-gradient(90deg, rgba(255, 154, 61, 0), rgba(255, 154, 61, 0.95), rgba(255, 154, 61, 0));
  content: "";
  height: 1px;
  left: 1.2rem;
  position: absolute;
  right: 1.2rem;
  top: 0;
}

.metric::after {
  background: radial-gradient(circle, rgba(255, 154, 61, 0.18), transparent 68%);
  content: "";
  height: 10rem;
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 10rem;
}

.metric-number {
  align-self: start;
  color: rgba(255, 154, 61, 0.9);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 900;
  grid-row: 1 / span 3;
  line-height: 0.86;
  opacity: 0.9;
}

.metric strong {
  color: #24180f;
  font-size: clamp(1.15rem, 2.1vw, 1.7rem);
  line-height: 1.05;
  padding-top: 0.25rem;
}

body.theme-dark .metric strong {
  color: var(--ash);
}

.metric p {
  color: #675540;
  font-weight: 650;
  grid-column: 2;
  max-width: 22rem;
}

.metric-icon {
  background:
    radial-gradient(circle at 50% 24%, #fff7cf 0 8%, transparent 9%),
    radial-gradient(circle at 50% 55%, #ff9a3d 0 18%, transparent 19%),
    linear-gradient(180deg, transparent 0 28%, rgba(255, 154, 61, 0.5) 29% 64%, transparent 65%);
  border: 1px solid rgba(255, 240, 212, 0.16);
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(255, 118, 36, 0.22);
  grid-column: 2;
  height: 2.5rem;
  position: relative;
  width: 2.5rem;
}

.split-section {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
  overflow: hidden;
  padding-bottom: clamp(5rem, 10vw, 9rem);
  padding-top: clamp(5rem, 10vw, 9rem);
  position: relative;
}

.split-section::before,
.products-section::before,
.recipes-section::before,
.order-section::before {
  background: radial-gradient(circle, rgba(255, 197, 80, 0.22), transparent 28rem);
  content: "";
  height: 40rem;
  pointer-events: none;
  position: absolute;
  right: -12rem;
  top: 4rem;
  width: 40rem;
}

body.theme-dark .split-section::before,
body.theme-dark .products-section::before,
body.theme-dark .recipes-section::before,
body.theme-dark .order-section::before {
  background: radial-gradient(circle, rgba(248, 243, 235, 0.06), transparent 28rem);
}

.order-section::before {
  right: 0;
  width: min(40rem, 100%);
}

.section-copy,
.section-heading {
  max-width: 780px;
  position: relative;
  z-index: 4;
}

.products-section .section-heading,
.recipes-section .section-heading,
.retail-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 1120px);
  text-align: center;
}

#products-title span,
#retail-title span {
  display: block;
  white-space: nowrap;
}

#products-title,
#applications-title,
#retail-title {
  font-size: clamp(1.35rem, 3vw, 3.6rem);
}

#applications-title {
  overflow-wrap: normal;
  white-space: normal;
}

.section-copy p {
  font-size: 1.06rem;
  max-width: 44rem;
}

.section-copy h3 {
  color: #2c241c;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 1.1rem 0 0.35rem;
  text-transform: uppercase;
}

body.theme-dark .section-copy h3 {
  color: #fff4df;
}

.material-panel {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.material-image {
  overflow: hidden;
}

.material-image img {
  aspect-ratio: 1.25;
  filter: contrast(1.08) saturate(0.82);
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 700ms ease;
  width: 100%;
}

.material-panel:hover .material-image img {
  transform: scale(1.08);
}

.material-stats {
  background: rgba(255, 247, 225, 0.88);
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: space-between;
  padding: 1rem;
}

body.theme-dark .material-stats {
  background: rgba(8, 8, 7, 0.72);
}

.material-stats span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2c2117;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.55rem 0.85rem;
}

body.theme-dark .material-stats span {
  background: rgba(248, 243, 235, 0.1);
  color: var(--ash);
}

.burn-meter {
  background: rgba(248, 243, 235, 0.08);
  height: 2px;
  overflow: hidden;
}

.burn-meter span {
  animation: burn-meter 3.4s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--ember-hot), transparent);
  display: block;
  height: 100%;
  width: 56%;
}

.products-section,
.recipes-section,
.retail-section,
.order-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 204, 99, 0.3), transparent 26rem),
    linear-gradient(180deg, rgba(255, 250, 236, 0.94) 0%, rgba(244, 220, 179, 0.96) 100%);
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding-bottom: clamp(5rem, 10vw, 9rem);
  padding-top: clamp(5rem, 10vw, 9rem);
  position: relative;
}

.retail-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 204, 99, 0.035), transparent 26rem),
    linear-gradient(180deg, rgba(255, 250, 236, 0.02) 0%, rgba(244, 220, 179, 0.02) 100%);
  min-height: 100vh;
  overflow: visible;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(5.6rem, 9vw, 6.4rem);
  scroll-margin-top: 5.6rem;
}

.order-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 204, 99, 0.035), transparent 26rem),
    linear-gradient(180deg, rgba(255, 250, 236, 0.02) 0%, rgba(244, 220, 179, 0.02) 100%);
  overflow: visible;
}

.order-section::before {
  opacity: 0;
}

body.theme-dark .products-section,
body.theme-dark .recipes-section,
body.theme-dark .order-section {
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.94) 0%, rgba(8, 8, 7, 1) 100%);
}

body.theme-dark .retail-section {
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 120, 36, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(17, 17, 15, 0.25) 0%, rgba(8, 8, 7, 0.25) 100%);
}

.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
  position: relative;
  z-index: 4;
}

.recipe-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  position: relative;
  z-index: 4;
}

.retail-layout {
  display: grid;
  align-items: start;
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.34fr);
  height: var(--retail-sticky-height, auto);
  margin-top: 1rem;
  min-height: 52rem;
  position: relative;
  z-index: 4;
}

.retail-products {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
  position: sticky;
  top: 6.8rem;
}

.retail-checkout {
  display: grid;
  gap: 0.75rem;
}

.retail-card,
.retail-checkout {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 229, 0.86)),
    rgba(255, 252, 244, 0.92);
  border: 1px solid rgba(79, 55, 27, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(73, 47, 18, 0.11);
}

body.theme-dark .retail-card,
body.theme-dark .retail-checkout {
  background:
    linear-gradient(145deg, rgba(248, 243, 235, 0.11), rgba(248, 243, 235, 0.05)),
    rgba(10, 10, 9, 0.9);
  border: 1px solid rgba(248, 243, 235, 0.22);
}

.retail-card {
  align-items: center;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 5.8rem minmax(0, 1fr) 4.7rem;
  min-height: 6.7rem;
  overflow: hidden;
  padding: 0.55rem;
}

.retail-media {
  aspect-ratio: auto;
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(74, 55, 35, 0.12);
  height: 5.8rem;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 5.8rem;
}

.retail-media img {
  filter: saturate(0.96) contrast(1.04);
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.retail-card:hover .retail-media img {
  transform: scale(1.045);
}

.retail-media span {
  backdrop-filter: blur(12px);
  background: rgba(8, 8, 7, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  bottom: 0.35rem;
  color: #fff;
  font-size: 0.56rem;
  font-weight: 900;
  left: 0.35rem;
  letter-spacing: 0;
  padding: 0.24rem 0.32rem;
  position: absolute;
  text-transform: uppercase;
}

.retail-card-copy {
  display: grid;
  gap: 0.16rem;
  padding: 0;
}

.retail-card h3 {
  font-size: 1rem;
  line-height: 1.15;
  margin-bottom: 0;
}

.retail-card h3,
.retail-checkout h3 {
  margin-bottom: 0.25rem;
}

.retail-card p,
.retail-checkout p {
  color: #5b4c3a;
  font-weight: 700;
  margin-bottom: 0;
}

.retail-card p {
  display: none;
}

.retail-price {
  color: #2f251b;
  font-size: 0.9rem;
  font-weight: 900;
}

body.theme-dark .retail-price {
  color: #fff5e6;
}

body.theme-dark .retail-card p,
body.theme-dark .retail-checkout p {
  color: #ded8cc;
}

.retail-card button {
  align-self: center;
  background: rgba(8, 8, 7, 0.92);
  border: 1px solid rgba(8, 8, 7, 0.92);
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  height: 4.6rem;
  justify-self: end;
  margin: 0;
  min-height: 0;
  padding: 0.4rem 0.5rem;
  font-size: 0.82rem;
  white-space: nowrap;
  width: 4.4rem;
}

.retail-card button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #080807;
}

.retail-checkout {
  align-self: start;
  gap: 0.55rem;
  padding: 0.75rem;
  position: relative;
  transform: translateY(var(--retail-cart-shift, 0px));
}

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

.retail-fields label {
  font-size: 0.78rem;
  gap: 0.22rem;
}

.retail-fields input,
.retail-fields select,
.retail-fields textarea {
  min-height: 2rem;
  padding: 0.4rem 0.56rem;
}

.retail-fields textarea {
  max-height: 3.2rem;
}

.retail-fields label:last-child,
.retail-fields .retail-wide {
  grid-column: 1 / -1;
}

.retail-cart-head {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 0.65rem;
}

.retail-cart-head .eyebrow {
  margin-bottom: 0.2rem;
}

.retail-cart-head > span {
  background: rgba(8, 8, 7, 0.08);
  border: 1px solid rgba(8, 8, 7, 0.1);
  border-radius: 999px;
  color: #080807;
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.42rem 0.62rem;
}

body.theme-dark .retail-cart-head > span {
  background: rgba(248, 243, 235, 0.12);
  border-color: rgba(248, 243, 235, 0.2);
  color: #fff;
}

.retail-lines {
  background: rgba(8, 8, 7, 0.035);
  border: 1px solid rgba(8, 8, 7, 0.08);
  border-radius: 8px;
  min-height: 3.25rem;
  padding: 0.35rem 0.65rem;
}

body.theme-dark .retail-lines {
  background: rgba(248, 243, 235, 0.06);
  border-color: rgba(248, 243, 235, 0.14);
}

.retail-lines > p {
  color: #6b5b48;
  font-size: 0.92rem;
  margin: 0;
  padding: 0.58rem 0;
}

.retail-line {
  align-items: center;
  border-bottom: 1px solid rgba(8, 8, 7, 0.09);
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 0.52rem 0;
}

.retail-line:last-child {
  border-bottom: 0;
}

.retail-line:first-child {
  padding-top: 0;
}

.retail-line strong,
.retail-line small {
  display: block;
}

.retail-line small {
  color: #6b5b48;
  font-weight: 800;
  margin-top: 0.2rem;
}

.retail-qty {
  background: rgba(194, 128, 43, 0.16);
  border-radius: 999px;
  color: #6b3d06;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.32rem 0.5rem;
}

.retail-line button {
  background: rgba(8, 8, 7, 0.08);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: inherit;
  cursor: pointer;
  font-weight: 900;
  min-height: 2.2rem;
  padding: 0.4rem 0.6rem;
}

.retail-note {
  background: rgba(194, 128, 43, 0.11);
  border: 1px solid rgba(194, 128, 43, 0.22);
  border-radius: 8px;
  color: #5a3b14;
  font-size: 0.84rem;
  line-height: 1.38;
  margin: 0;
  padding: 0.6rem;
}

body.theme-dark .retail-line {
  border-bottom-color: rgba(248, 243, 235, 0.13);
}

body.theme-dark .retail-line small,
body.theme-dark .retail-lines > p {
  color: #cec5b6;
}

body.theme-dark .retail-qty,
body.theme-dark .retail-note {
  background: rgba(255, 166, 66, 0.14);
  border-color: rgba(255, 184, 83, 0.24);
  color: #f7d7a3;
}

.product-card {
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  min-height: 23rem;
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-media {
  aspect-ratio: 1.35;
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(74, 55, 35, 0.12);
  margin: calc(clamp(1.2rem, 2.5vw, 1.7rem) * -1) calc(clamp(1.2rem, 2.5vw, 1.7rem) * -1) 0;
  overflow: hidden;
}

.product-media img {
  filter: saturate(0.96) contrast(1.04);
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.recipe-card {
  border-radius: 8px;
  display: grid;
  gap: 0.75rem;
  min-height: 22rem;
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  position: relative;
}

.application-media {
  aspect-ratio: 1.5;
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(74, 55, 35, 0.12);
  margin: calc(clamp(1.2rem, 2.5vw, 1.7rem) * -1) calc(clamp(1.2rem, 2.5vw, 1.7rem) * -1) 0;
  overflow: hidden;
}

.application-media img {
  filter: saturate(0.98) contrast(1.04);
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.recipe-card:hover .application-media img {
  transform: scale(1.06);
}

.recipe-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card::before {
  background: linear-gradient(90deg, rgba(248, 243, 235, 0), rgba(248, 243, 235, 0.28), rgba(248, 243, 235, 0));
  content: "";
  height: 1px;
  left: 1rem;
  position: absolute;
  right: 1rem;
  top: 0;
}

.product-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
}

.featured-product {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 185, 62, 0.34), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 233, 186, 0.78));
  border-color: rgba(184, 93, 25, 0.28);
}

body.theme-dark .featured-product {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 154, 61, 0.24), transparent 16rem),
    linear-gradient(145deg, rgba(248, 243, 235, 0.15), rgba(248, 243, 235, 0.055));
  border-color: rgba(233, 111, 44, 0.5);
}

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

.product-topline span {
  color: var(--gold);
  font-size: 1.65rem;
  font-weight: 900;
}

.add-product {
  align-self: end;
  width: fit-content;
}

.order-form {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(260px, 0.88fr) minmax(300px, 1fr) minmax(280px, 0.78fr);
  margin-top: 2rem;
  position: relative;
  z-index: 4;
}

.order-form.reveal,
.order-form.reveal.is-visible {
  transform: none;
}

.order-items,
.customer-fields,
.order-summary {
  border-radius: 8px;
  padding: 1rem;
}

.order-items,
.customer-fields {
  display: grid;
  gap: 0.85rem;
}

.order-items {
  position: sticky;
  top: 6.8rem;
}

label {
  color: #2b2118;
  display: grid;
  font-weight: 900;
  gap: 0.45rem;
}

body.theme-dark label {
  color: #fffaf1;
}

.order-items label {
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 4.2rem 1fr auto;
  min-height: 4.9rem;
  padding-bottom: 0.8rem;
}

.order-items label:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.order-items h3,
.customer-fields h3 {
  margin-bottom: 0.15rem;
}

.order-thumb {
  aspect-ratio: 1;
  border-radius: 7px;
  grid-column: 1;
  grid-row: 1 / span 2;
  height: 4.2rem;
  object-fit: cover;
  width: 4.2rem;
}

.order-item-copy {
  display: grid;
  gap: 0.22rem;
  grid-column: 2;
}

.order-item-copy small {
  color: #7a6248;
  font-size: 0.9rem;
  font-weight: 750;
}

body.theme-dark .order-item-copy small {
  color: #f0e7d8;
}

.order-items input {
  grid-column: 3;
  grid-row: 1 / span 2;
  max-width: 5.8rem;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(96, 68, 36, 0.22);
  border-radius: 7px;
  color: #24180f;
  min-height: 2.95rem;
  padding: 0.74rem 0.8rem;
  width: 100%;
}

body.theme-dark input,
body.theme-dark select,
body.theme-dark textarea {
  background: rgba(0, 0, 0, 0.46);
  border: 1px solid rgba(248, 243, 235, 0.28);
  color: var(--ash);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 154, 61, 0.72);
  box-shadow: 0 0 0 4px rgba(233, 111, 44, 0.12);
  outline: 0;
}

.order-summary {
  position: sticky;
  top: 6.8rem;
}

.summary-line,
.summary-total {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.summary-line {
  border-bottom: 1px solid var(--line);
  color: #3a2b1d;
  padding: 0.72rem 0;
}

body.theme-dark .summary-line {
  color: #fff2df;
}

.summary-total {
  color: #24180f;
  font-size: 1.45rem;
  font-weight: 900;
  padding: 1rem 0;
}

body.theme-dark .summary-total {
  color: var(--ash);
}

.full-width {
  width: 100%;
}

.contact-band {
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 204, 92, 0.36), transparent 20rem),
    linear-gradient(135deg, #dbe8b1 0%, #ffd98e 100%);
  color: #10130f;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-top: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  z-index: 4;
}

body.theme-dark .contact-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 154, 61, 0.2), transparent 20rem),
    var(--sage);
}

.contact-band > *,
.site-footer > * {
  position: relative;
  z-index: 4;
}

.contact-band .eyebrow {
  color: #2a1c12;
}

.contact-band h2 {
  margin-bottom: 0;
  max-width: 860px;
}

.contact-actions {
  align-items: stretch;
  flex-direction: column;
  gap: 0.8rem;
  min-width: min(100%, 18rem);
}

.contact-actions a {
  background: rgba(248, 243, 235, 0.92);
  border-radius: 999px;
  color: #111;
  font-weight: 900;
  padding: 0.9rem 1rem;
  text-align: center;
}

.ember-section {
  align-items: start;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 82, 20, 0.26), transparent 25rem),
    linear-gradient(180deg, rgba(8, 8, 7, 0.9) 0%, rgba(8, 8, 7, 0.98) 48%, #030303 100%);
  border-top: 1px solid rgba(255, 154, 61, 0.24);
  display: block;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(4rem, 9vw, 7rem);
  position: relative;
  z-index: 4;
}

.ember-section::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 38%),
    radial-gradient(ellipse at center bottom, rgba(255, 111, 28, 0.28), transparent 44rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 52%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.ember-copy {
  max-width: 38rem;
  position: relative;
  z-index: 5;
}

.ember-copy .eyebrow,
.ember-copy h2 {
  color: #fff7ea;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.5);
}

.ember-copy p:last-child {
  color: #efe2cf;
  font-weight: 700;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  position: relative;
  z-index: 4;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes button-sheen {
  to {
    left: 140%;
  }
}

@keyframes burn-meter {
  0% {
    transform: translateX(-110%);
  }

  50% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(210%);
  }
}

@keyframes heat-drift {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0) rotate(-7deg);
  }

  50% {
    opacity: 0.9;
    transform: translateY(-28px) rotate(-7deg);
  }
}

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

  .fire-video-loop {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-shell,
  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .order-form {
    gap: 0.75rem;
    grid-template-columns: minmax(150px, 0.82fr) minmax(210px, 1fr) minmax(150px, 0.82fr);
  }

  .hero-order-card {
    align-self: start;
    margin-bottom: 0;
    max-width: 28rem;
  }

  .metric-strip,
  .product-grid,
  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: auto;
  }

}

@media (max-width: 700px) {
  #products-title {
    font-size: clamp(0.92rem, 2.38vw, 1.45rem);
  }

  #retail-title {
    font-size: clamp(1.35rem, 5vw, 1.9rem);
  }
}

@media (max-width: 680px) {
  .site-header {
    border-radius: 22px;
    left: 0.75rem;
    padding: 0.65rem;
    right: 0.75rem;
    top: 0.75rem;
  }

  .brand span:last-child {
    max-width: 5.8rem;
  }

  .header-action {
    min-height: 2.45rem;
    padding: 0.65rem 0.8rem;
  }

  .hero-shell {
    min-height: 100vh;
    padding-top: 7rem;
  }

  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .order-form {
    grid-template-columns: minmax(140px, 0.82fr) minmax(185px, 1fr) minmax(140px, 0.82fr);
  }

  .order-items,
  .customer-fields,
  .order-summary {
    padding: 0.75rem;
  }

  .order-items label {
    grid-template-columns: 1fr;
  }

  .order-thumb {
    display: none;
  }

  .order-item-copy {
    grid-column: 1;
  }

  .order-items input {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
  }

  .summary-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

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

@media (max-width: 560px) {
  .retail-layout {
    gap: 0.7rem;
    grid-template-columns: minmax(0, 0.86fr) minmax(14.5rem, 1fr);
    min-height: 42rem;
  }

  .retail-products {
    gap: 0.55rem;
    grid-template-columns: 1fr;
  }

  .retail-card {
    gap: 0.55rem;
    grid-template-columns: 4.8rem minmax(0, 1fr) 3.8rem;
    min-height: 5.6rem;
    padding: 0.45rem;
  }

  .retail-media {
    height: 4.8rem;
    min-height: 0;
    width: 4.8rem;
  }

  .retail-card-copy {
    padding: 0;
  }

  .retail-card h3 {
    font-size: 0.88rem;
    line-height: 1.08;
    margin-bottom: 0;
  }

  .retail-card p {
    display: none;
  }

  .retail-card button {
    font-size: 0.72rem;
    height: 3.8rem;
    margin: 0;
    min-height: 0;
    padding: 0.28rem 0.35rem;
    width: 3.6rem;
  }

  .retail-media span {
    border-radius: 6px;
    bottom: 0.35rem;
    font-size: 0.58rem;
    left: 0.35rem;
    padding: 0.24rem 0.32rem;
  }

  .retail-checkout {
    gap: 0.38rem;
    padding: 0.58rem;
    position: sticky;
    top: 5.6rem;
    word-break: break-word;
  }

  .retail-cart-head {
    align-items: center;
    padding-bottom: 0.45rem;
  }

  .retail-cart-head h3 {
    font-size: 0.95rem;
    margin-bottom: 0;
  }

  .retail-cart-head .eyebrow,
  .retail-note {
    display: none;
  }

  .retail-cart-head > span {
    font-size: 0.66rem;
    padding: 0.32rem 0.42rem;
  }

  .retail-lines {
    min-height: 2.15rem;
    padding: 0.2rem 0.45rem;
  }

  .retail-lines > p {
    font-size: 0.72rem;
    padding: 0.3rem 0;
  }

  .retail-line {
    gap: 0.35rem;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.42rem 0;
  }

  .retail-line button {
    grid-column: 1 / -1;
    min-height: 1.9rem;
    padding: 0.28rem 0.45rem;
  }

  .retail-fields {
    gap: 0.28rem;
    grid-template-columns: 1fr;
  }

  .retail-fields label {
    font-size: 0.66rem;
    gap: 0.18rem;
  }

  .retail-fields input,
  .retail-fields select,
  .retail-fields textarea {
    min-height: 1.72rem;
    padding: 0.28rem 0.42rem;
  }

  .retail-fields textarea {
    max-height: 2.45rem;
  }

  .retail-checkout .primary-button {
    min-height: 1.95rem;
    padding: 0.36rem 0.5rem;
  }

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

  .order-items,
  .retail-products,
  .order-summary {
    position: static;
  }
}

@media (max-width: 480px) {
  .retail-layout {
    grid-template-columns: 1fr;
  }

  .retail-checkout {
    position: static;
  }

  #products-title span {
    white-space: normal;
  }
}
