:root {
  color-scheme: light;
  --ink: #1e1711;
  --muted: #6f6256;
  --paper: #fff9ef;
  --surface: #fffdf8;
  --line: #ead9c3;
  --sun: #ffcf45;
  --orange: #ff7a1a;
  --tomato: #c93319;
  --olive: #5d6b2f;
  --cream: #fff4df;
  --deep: #21140d;
  --shadow: 0 26px 80px rgba(94, 51, 18, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fffaf2 0, var(--paper) 38%, #fff7ea 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4.8vw, 70px);
  background: rgba(255, 250, 242, 0.88);
  border-bottom: 1px solid rgba(234, 217, 195, 0.8);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: clamp(118px, 13vw, 190px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.login-logo {
  width: min(100%, 250px);
  max-height: none;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--sun), var(--orange) 58%, var(--tomato));
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(201, 51, 25, 0.25);
}

.brand-mark strong {
  display: none;
  font-size: 17px;
}

.brand-mark small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: #5c4d40;
  font-size: 14px;
  font-weight: 850;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.phone-link {
  color: var(--tomato);
  font-weight: 900;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.language-switcher button {
  min-width: 36px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.language-switcher button.active {
  background: var(--deep);
  color: #fff;
}

.cart-button,
.primary-link,
.secondary-link,
.add-button,
.submit-order,
.success-button,
.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.cart-button {
  gap: 10px;
  padding: 8px 10px 8px 18px;
  background: var(--deep);
  color: white;
  box-shadow: 0 16px 34px rgba(33, 20, 13, 0.14);
}

.cart-button strong {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
}

.floating-cart-button {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(72px, 5vw, 88px);
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 10px 8px 20px;
  border: 1px solid rgba(255, 207, 69, 0.22);
  border-radius: 999px;
  background: rgba(33, 20, 13, 0.92);
  color: #fff;
  box-shadow:
    0 20px 50px rgba(33, 20, 13, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 16px;
  font-weight: 640;
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    box-shadow 160ms ease;
}

.floating-cart-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 56px rgba(33, 20, 13, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.floating-cart-button strong {
  display: grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffcf45, #ff8424);
  color: var(--deep);
  font-weight: 680;
}

body.cart-open .floating-cart-button {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 74px));
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 6vw, 86px) clamp(54px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
  background: #21140d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 13, 8, 0.72) 0%, rgba(20, 13, 8, 0.46) 36%, rgba(20, 13, 8, 0.08) 70%, rgba(20, 13, 8, 0.18) 100%),
    radial-gradient(circle at 18% 52%, rgba(255, 122, 26, 0.18), transparent 34%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(255, 250, 242, 0.64), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02);
}

.hero-bg-image.is-hidden {
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 720;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

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

.primary-link,
.submit-order,
.success-button {
  padding: 0 24px;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(255, 122, 26, 0.28);
}

.secondary-link {
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero .secondary-link {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-photo {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 1;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.72), transparent 38%),
    #fff4df;
  box-shadow:
    0 48px 118px rgba(194, 75, 10, 0.22),
    0 0 0 18px rgba(255, 255, 255, 0.36);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.32), transparent 26%),
    linear-gradient(135deg, rgba(255, 207, 69, 0.16), transparent 48%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.hero-photo img:not([src]),
.hero-photo img[src=""] {
  opacity: 0;
}

.premium-pizza {
  width: min(100%, 610px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 37% 35%, #5c351c 0 2.5%, transparent 3%),
    radial-gradient(circle at 64% 31%, #b62718 0 3.2%, transparent 3.7%),
    radial-gradient(circle at 73% 39%, #5c351c 0 2.7%, transparent 3.2%),
    radial-gradient(circle at 48% 58%, #5d6b2f 0 2%, transparent 2.5%),
    radial-gradient(circle at 58% 52%, #5d6b2f 0 1.9%, transparent 2.4%),
    radial-gradient(circle at 61% 72%, #bd2f1c 0 3.3%, transparent 3.8%),
    radial-gradient(circle at 52% 69%, #5c1d14 0 2.6%, transparent 3.1%),
    conic-gradient(from 18deg, #e5381c, #ff9f24, #ffd15f, #ef5421, #ffbd36, #e5381c);
  box-shadow: 0 42px 110px rgba(194, 75, 10, 0.2);
}

.quick-choice-card {
  position: absolute;
  right: 0;
  bottom: 48px;
  width: min(360px, 72%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quick-choice-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.quick-choice-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.segmented-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff8ea;
}

.segmented-preview span {
  display: grid;
  min-height: 36px;
  place-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.segmented-preview span:first-child {
  background: var(--deep);
  color: white;
}

.menu-section,
.content-section,
.split-section,
.contacts-section {
  padding: clamp(54px, 8vw, 92px) clamp(16px, 5vw, 72px);
}

.menu-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 207, 69, 0.18), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(201, 51, 25, 0.08), transparent 26%),
    linear-gradient(180deg, #fff8ec 0, #fffdf8 38%, #fff8ee 100%);
  border-top: 1px solid rgba(234, 217, 195, 0.82);
  isolation: isolate;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), transparent 44%),
    linear-gradient(90deg, rgba(94, 51, 18, 0.035) 0 1px, transparent 1px 100%);
  background-size: 100% 100%, 112px 100%;
  mask-image: linear-gradient(180deg, black 0, transparent 62%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1340px;
  margin: 0 auto 28px;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.search-box {
  display: grid;
  gap: 6px;
  width: min(100%, 330px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box input,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

.search-box input {
  height: 48px;
  padding: 0 15px;
  border-color: rgba(214, 178, 126, 0.78);
  background: rgba(255, 253, 248, 0.86);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  box-shadow: 0 14px 34px rgba(94, 51, 18, 0.08);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 1340px;
  margin: 0 auto 34px;
}

.category-filters button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(214, 178, 126, 0.66);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #5b4d42;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(94, 51, 18, 0.06);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.category-filters button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 26, 0.42);
  box-shadow: 0 16px 30px rgba(94, 51, 18, 0.1);
}

.category-filters button.active {
  border-color: transparent;
  background: linear-gradient(135deg, #2a1a11, #130b07);
  color: #fff;
  box-shadow: 0 16px 34px rgba(33, 20, 13, 0.18);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(282px, 1fr));
  gap: 20px;
  max-width: 1340px;
  margin: 0 auto;
}

.product-section {
  grid-column: 1 / -1;
  display: grid;
  gap: 24px;
}

.product-section + .product-section {
  margin-top: 58px;
  padding-top: 50px;
  border-top: 1px solid rgba(94, 51, 18, 0.12);
}

.product-section-head {
  display: grid;
  justify-content: start;
  gap: 6px;
  padding: 0 2px;
}

.product-section-head .eyebrow {
  margin: 0;
}

.product-section-head h3 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1;
}

.product-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
  gap: 24px;
}

.bundles-section .product-section-grid {
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr));
  gap: 18px;
}

.bundles-section {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 207, 69, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 207, 69, 0.24), transparent 30%),
    radial-gradient(circle at 94% 20%, rgba(255, 122, 26, 0.16), transparent 28%),
    linear-gradient(135deg, #28180f 0%, #170d08 48%, #3a1d10 100%);
  box-shadow:
    0 34px 90px rgba(68, 36, 17, 0.26),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.bundles-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%);
  background-size: 92px 100%, 100% 100%;
}

.bundles-section .product-section-head {
  position: relative;
  z-index: 1;
}

.bundles-section .product-section-head h3 {
  color: #fff9ea;
}

.bundles-section .product-section-head .eyebrow {
  color: var(--sun);
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 126, 0.64);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.98));
  box-shadow:
    0 24px 60px rgba(94, 51, 18, 0.1),
    0 2px 0 rgba(255, 255, 255, 0.86) inset;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 32%);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.48);
  box-shadow:
    0 30px 70px rgba(94, 51, 18, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1.2;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.32), rgba(94, 51, 18, 0.1)),
    url("assets/labapica_logo_web_01.png") center / min(56%, 220px) auto no-repeat,
    #f5e5ce;
  border-bottom: 1px solid rgba(214, 178, 126, 0.62);
}

.product-image-wrap.image-fallback {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 207, 69, 0.32), transparent 28%),
    linear-gradient(135deg, #fff7e8, #f3d6a9 54%, #c26c22);
}

.product-image-wrap.image-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 23, 17, 0.02), rgba(30, 23, 17, 0.18)),
    url("assets/labapica_logo_web_01.png") center / min(68%, 240px) auto no-repeat;
  opacity: 0.82;
}

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

.product-image.is-fallback {
  opacity: 0;
}

.product-card:hover .product-image {
  transform: scale(1.055);
}

.product-category {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(30, 23, 17, 0.82);
  color: white;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(30, 23, 17, 0.18);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 20px;
}

.product-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.product-title-row h3 {
  margin: 0;
  color: var(--deep);
  font-size: 24px;
  line-height: 1.08;
}

.product-price {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 122, 26, 0.18);
  border-radius: 999px;
  background: #fff1cf;
  color: var(--tomato);
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(201, 51, 25, 0.08);
  white-space: nowrap;
}

.product-price.is-sale {
  display: grid;
  grid-template-columns: auto auto;
  gap: 7px;
  align-items: baseline;
  padding: 6px 10px;
}

.product-price-current {
  color: var(--tomato);
  font-size: 18px;
  font-weight: 640;
}

.product-price-old {
  color: #8d7765;
  font-size: 12px;
  font-weight: 450;
  text-decoration-color: var(--tomato);
  text-decoration-thickness: 1.5px;
}

.composition {
  min-height: 76px;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 620;
  line-height: 1.55;
}

.allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 26px;
}

.allergens[hidden] {
  display: none;
}

.allergens span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3e1c5;
  color: #6b3d1e;
  font-size: 12px;
  font-weight: 900;
}

.allergens .allergen-icon {
  width: 25px;
  justify-content: center;
  background: var(--deep);
  color: #ffcf45;
  font-weight: 800;
}

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

.variant-row button {
  min-height: 46px;
  border: 1px solid rgba(214, 178, 126, 0.75);
  border-radius: 8px;
  background: #fff8ea;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.variant-row button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 122, 26, 0.42);
}

.variant-row button.active {
  border-color: rgba(201, 51, 25, 0.32);
  background: linear-gradient(135deg, #ffcf45, #ff9d28);
  box-shadow: 0 13px 24px rgba(255, 122, 26, 0.18);
}

.extras-box {
  padding: 10px 12px;
  border: 1px solid rgba(214, 178, 126, 0.58);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.62);
}

.extras-box[hidden] {
  display: none;
}

.extras-box summary {
  cursor: pointer;
  color: var(--olive);
  font-size: 14px;
  font-weight: 900;
}

.extras-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  max-height: 196px;
  overflow: auto;
  padding-right: 4px;
}

.extras-list label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #4c4237;
  font-size: 13px;
}

.extras-list input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.product-actions {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  margin-top: auto;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 126, 0.78);
  border-radius: 999px;
  background: #fffdf8;
}

.quantity-stepper button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.quantity-stepper span {
  display: grid;
  place-items: center;
  font-weight: 900;
}

.add-button {
  min-width: 0;
  background:
    linear-gradient(135deg, #2a1a11, #160d08);
  color: white;
  box-shadow: 0 16px 30px rgba(33, 20, 13, 0.2);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.add-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 20px 34px rgba(33, 20, 13, 0.24);
}

.bundles-section .product-card {
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.035)),
    rgba(22, 13, 8, 0.72);
  color: #fffaf0;
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.14) inset;
  backdrop-filter: blur(8px);
}

.bundles-section .product-card::after {
  background:
    linear-gradient(135deg, rgba(255, 207, 69, 0.12), transparent 36%),
    linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.08) 100%);
}

.bundles-section .product-image-wrap {
  aspect-ratio: 1.38;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 10, 6, 0.12), rgba(18, 10, 6, 0.46)),
    url("assets/labapica_logo_web_01.png") center / min(68%, 210px) auto no-repeat,
    #24150d;
}

.bundles-section .product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 10, 6, 0.04), rgba(18, 10, 6, 0.34));
}

.bundles-section .product-body {
  padding: 16px;
  gap: 12px;
}

.bundles-section .product-title-row {
  grid-template-columns: 1fr;
  gap: 8px;
}

.bundles-section .product-title-row h3 {
  font-size: 19px;
  line-height: 1.06;
}

.bundles-section .product-title-row h3,
.bundles-section .composition,
.bundles-section .extras-box summary {
  color: #fff8e8;
}

.bundles-section .composition {
  min-height: 42px;
  opacity: 0.82;
  font-size: 13.5px;
  line-height: 1.35;
}

.bundles-section .product-price {
  justify-self: start;
  border-color: rgba(255, 207, 69, 0.32);
  background: rgba(255, 207, 69, 0.14);
  color: #ffd45d;
  box-shadow: none;
}

.bundles-section .product-category {
  background: rgba(255, 207, 69, 0.94);
  color: var(--deep);
}

.bundles-section .variant-row button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff8e8;
}

.bundles-section .variant-row button.active {
  color: var(--deep);
}

.bundles-section .quantity-stepper {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff8e8;
}

.bundles-section .product-actions {
  grid-template-columns: 1fr;
  gap: 10px;
}

.bundles-section .quantity-stepper,
.bundles-section .add-button {
  width: 100%;
}

.bundles-section .add-button {
  min-height: 46px;
}

.bundles-section .add-button {
  background: linear-gradient(135deg, #ffcf45, #ff8424);
  color: var(--deep);
  box-shadow: 0 16px 30px rgba(255, 122, 26, 0.2);
}

.bundles-section,
.drinks-section,
.sauces-section {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(214, 178, 126, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 207, 69, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 232, 0.9));
  box-shadow:
    0 26px 70px rgba(94, 51, 18, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.bundles-section::before,
.drinks-section::before,
.sauces-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(94, 51, 18, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 34%);
  background-size: 92px 100%, 100% 100%;
}

.bundles-section .product-section-head,
.drinks-section .product-section-head,
.sauces-section .product-section-head {
  position: relative;
  z-index: 1;
}

.bundles-section .product-section-head h3,
.drinks-section .product-section-head h3,
.sauces-section .product-section-head h3 {
  color: var(--deep);
}

.bundles-section .product-section-head .eyebrow,
.drinks-section .product-section-head .eyebrow,
.sauces-section .product-section-head .eyebrow {
  color: var(--orange);
}

.drinks-section,
.sauces-section {
  margin-top: 44px;
}

.drinks-section .product-section-grid,
.sauces-section .product-section-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.sauces-section .product-section-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 312px));
  justify-content: start;
}

.bundles-section .product-card,
.drinks-section .product-card,
.sauces-section .product-card {
  z-index: 1;
  border-color: rgba(214, 178, 126, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.98));
  color: var(--ink);
  box-shadow:
    0 20px 48px rgba(94, 51, 18, 0.09),
    0 2px 0 rgba(255, 255, 255, 0.86) inset;
  backdrop-filter: none;
}

.bundles-section .product-card::after,
.drinks-section .product-card::after,
.sauces-section .product-card::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 32%);
}

.bundles-section .product-image-wrap,
.drinks-section .product-image-wrap,
.sauces-section .product-image-wrap {
  border-bottom-color: rgba(214, 178, 126, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.32), rgba(94, 51, 18, 0.1)),
    url("assets/labapica_logo_web_01.png") center / min(58%, 210px) auto no-repeat,
    #f5e5ce;
}

.drinks-section .product-image-wrap,
.sauces-section .product-image-wrap {
  aspect-ratio: 1.55;
}

.bundles-section .product-image-wrap::after {
  display: none;
}

.bundles-section .product-title-row h3,
.bundles-section .composition,
.bundles-section .extras-box summary {
  color: inherit;
}

.bundles-section .composition,
.drinks-section .composition,
.sauces-section .composition {
  min-height: 42px;
  opacity: 1;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
}

.bundles-section .product-price,
.drinks-section .product-price,
.sauces-section .product-price {
  border-color: rgba(255, 122, 26, 0.18);
  background: #fff1cf;
  color: var(--tomato);
  box-shadow: 0 10px 22px rgba(201, 51, 25, 0.08);
}

.bundles-section .product-category,
.drinks-section .product-category,
.sauces-section .product-category {
  background: rgba(30, 23, 17, 0.76);
  color: #fff;
}

.bundles-section .product-category {
  top: auto;
  bottom: 12px;
}

.bundles-section .variant-row button,
.drinks-section .variant-row button,
.sauces-section .variant-row button {
  border-color: rgba(214, 178, 126, 0.75);
  background: #fff8ea;
  color: var(--ink);
}

.bundles-section .variant-row button.active,
.drinks-section .variant-row button.active,
.sauces-section .variant-row button.active {
  border: 1px solid rgba(201, 51, 25, 0.32);
  background: linear-gradient(135deg, #ffcf45, #ff9d28);
  color: var(--ink);
  box-shadow: 0 13px 24px rgba(255, 122, 26, 0.18);
}

.bundles-section .quantity-stepper,
.drinks-section .quantity-stepper,
.sauces-section .quantity-stepper {
  border-color: rgba(214, 178, 126, 0.78);
  background: #fffdf8;
  color: var(--ink);
}

.product-card .product-category,
.product-card .allergens span,
.product-card .variant-row button,
.product-card .extras-box summary,
.product-card .quantity-stepper button,
.product-card .quantity-stepper span,
.product-card .add-button {
  font-weight: 560;
}

.product-card .product-title-row h3 {
  font-weight: 520;
}

.product-card .product-price {
  font-weight: 640;
}

.product-card .composition {
  font-weight: 400;
}

.product-card .extras-list label {
  font-weight: 450;
}

.sauces-section .product-title-row h3,
.sauces-section .variant-row button,
.sauces-section .quantity-stepper button,
.sauces-section .quantity-stepper span,
.sauces-section .add-button {
  font-weight: 450;
}

.add-button,
.bundles-section .add-button,
.drinks-section .add-button,
.sauces-section .add-button {
  background: linear-gradient(135deg, #ffcf45, #ff8424);
  color: var(--deep);
  box-shadow: 0 16px 30px rgba(255, 122, 26, 0.2);
}

.product-card .variant-row button.active,
.bundles-section .product-card .variant-row button.active,
.drinks-section .product-card .variant-row button.active,
.sauces-section .product-card .variant-row button.active {
  border: 1px solid rgba(201, 51, 25, 0.42) !important;
  outline: 2px solid rgba(255, 122, 26, 0.16);
  outline-offset: 0;
  background: linear-gradient(135deg, #ffcf45, #ff9d28) !important;
  box-shadow: 0 13px 24px rgba(255, 122, 26, 0.18) !important;
}

.info-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) clamp(16px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 207, 69, 0.35), rgba(255, 122, 26, 0.24)),
    #fff3dc;
  border-block: 1px solid var(--line);
}

.info-main,
.info-stats {
  max-width: 1260px;
}

.info-main p:not(.eyebrow),
.split-section p,
.contacts-section p {
  max-width: 850px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.delivery-side {
  display: grid;
  gap: 16px;
}

.info-stats div {
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid rgba(234, 217, 195, 0.9);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.info-stats span {
  color: var(--tomato);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.info-stats small {
  color: var(--muted);
  font-weight: 800;
}

.delivery-highlights,
.about-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.delivery-highlights span,
.about-marks span {
  padding: 8px 11px;
  border: 1px solid rgba(214, 178, 126, 0.68);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--deep);
  font-size: 13px;
  font-weight: 560;
}

.delivery-map {
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(214, 178, 126, 0.7);
  border-radius: 8px;
  background: #fff8ea;
  box-shadow: 0 18px 42px rgba(94, 51, 18, 0.1);
}

.delivery-map-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(214, 178, 126, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 207, 69, 0.26), rgba(255, 255, 255, 0.88)),
    var(--surface);
}

.delivery-map-head div {
  display: grid;
  gap: 2px;
}

.delivery-map-head small {
  color: var(--tomato);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.delivery-map-head strong {
  color: var(--deep);
  font-size: 15px;
  font-weight: 560;
}

.delivery-map-head a {
  padding: 8px 10px;
  border: 1px solid rgba(214, 178, 126, 0.76);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  font-size: 11px;
  font-weight: 560;
  white-space: nowrap;
}

.map-pin {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(255, 122, 26, 0.2);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fff8ea;
}

.delivery-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.admin-help {
  max-width: 760px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.admin-help code {
  color: var(--tomato);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1260px;
  margin: 0 auto;
}

.promo-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(94, 51, 18, 0.08);
}

.promo-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
}

.split-section,
.contacts-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 6vw, 90px);
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
}

.about-card,
.about-copy {
  min-height: 100%;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(214, 178, 126, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 228, 0.74)),
    var(--surface);
  box-shadow: 0 18px 46px rgba(94, 51, 18, 0.08);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(16px, 5vw, 72px);
  padding-right: clamp(230px, 18vw, 330px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 242, 214, 0.92)),
    #fff8ea;
  color: var(--muted);
  box-shadow: 0 -18px 44px rgba(94, 51, 18, 0.06);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer a {
  color: var(--tomato);
  font-weight: 650;
  text-decoration: none;
}

.footer-logo {
  width: 118px;
  height: auto;
}

.contacts-section {
  position: relative;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(255, 207, 69, 0.18), transparent 42%),
    rgba(255, 253, 248, 0.82);
}

.contacts-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 34%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(214, 178, 126, 0.7), transparent);
}

.contacts-copy,
.contact-order-panel {
  position: relative;
  z-index: 1;
}

.contacts-copy h2 {
  margin-bottom: 14px;
}

.contacts-section .contacts-intro {
  max-width: 610px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.contact-direct > :last-child {
  grid-column: 1 / -1;
}

.contact-direct a,
.contact-direct div {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(214, 178, 126, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.contact-direct a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 26, 0.54);
  box-shadow: 0 14px 30px rgba(94, 51, 18, 0.08);
}

.contact-direct span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  text-transform: uppercase;
}

.contact-direct strong {
  align-self: end;
  color: var(--deep);
  font-size: 16px;
  font-weight: 560;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contacts-section .secondary-link {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.company-details {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(214, 178, 126, 0.62);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.company-details strong {
  color: var(--deep);
  font-weight: 560;
}

.company-details b {
  color: var(--deep);
  font-weight: 560;
}

.contact-order-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(214, 178, 126, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 239, 206, 0.88)),
    var(--surface);
  box-shadow: 0 24px 58px rgba(94, 51, 18, 0.1);
}

.contact-order-panel h3 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 520;
  line-height: 1.05;
}

.contacts-section .contact-order-panel > p:not(.eyebrow) {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.contact-order-panel .primary-link,
.contact-order-panel .secondary-link {
  width: 100%;
  min-width: 0;
}

.cart-shell {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  pointer-events: none;
  visibility: hidden;
}

.cart-shell.open {
  pointer-events: auto;
  visibility: visible;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(30, 23, 17, 0.45);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-shell.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: relative;
  justify-self: end;
  width: min(100vw, 640px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
  overflow-y: auto;
  overflow-x: hidden;
}

.cart-shell.open .cart-panel {
  transform: translateX(0);
}

.cart-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.cart-top h2 {
  font-size: 34px;
  font-weight: 560;
}

.cart-top .eyebrow {
  font-weight: 650;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  flex: 0 0 auto;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 560;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-line-meta {
  display: grid;
  gap: 3px;
}

.cart-line-qty {
  color: var(--muted);
  font-size: 13px;
  font-weight: 450;
}

.cart-extra-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.cart-extra-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff0d4;
  color: #6b3d1e;
  font-size: 12px;
  font-weight: 520;
}

.cart-line strong {
  white-space: nowrap;
  font-weight: 620;
}

.cart-line-actions {
  display: flex;
  gap: 5px;
  margin-top: 9px;
}

.cart-line-actions button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff7ea;
  cursor: pointer;
  font-weight: 560;
}

.cart-summary {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.cart-summary strong {
  color: var(--ink);
  font-weight: 620;
}

.cart-summary div[hidden] {
  display: none;
}

.total-row {
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 21px;
  color: var(--ink);
}

.total-row strong {
  font-weight: 650;
}

.checkout-form {
  display: grid;
  gap: 14px;
  padding-bottom: 8px;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff7ea;
}

.segmented-control label {
  position: relative;
  min-width: 0;
}

.segmented-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.segmented-control span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 560;
  text-align: center;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.segmented-control input:checked + span {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(32, 20, 12, 0.18);
}

.segmented-control input:focus-visible + span {
  outline: 3px solid rgba(255, 122, 26, 0.35);
  outline-offset: 2px;
}

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

.form-grid label,
.admin-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
  text-transform: uppercase;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.form-grid label[hidden],
.form-grid .is-hidden {
  display: none;
}

.checkout-form label:has(input[required], select[required], textarea[required]) > span::after {
  content: " *";
  color: var(--tomato);
}

.promo-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.promo-code-row button {
  min-width: 112px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffcf45, #ff8424);
  color: var(--deep);
  cursor: pointer;
  font-weight: 640;
}

.checkout-form input,
.checkout-form select {
  height: 42px;
  padding: 0 12px;
}

.checkout-form textarea {
  resize: vertical;
  padding: 10px 12px;
}

.checkout-note,
.form-message,
.cart-rule-message {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-rule-message.warning {
  color: var(--tomato);
}

.cart-rule-message.hint {
  color: var(--olive);
}

.form-message.error {
  color: var(--tomato);
}

.form-message.success {
  color: var(--olive);
}

.submit-order,
.success-button {
  width: 100%;
  font-weight: 640;
}

.mobile-cart-submit {
  display: none;
}

.site-announcement {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(30, 23, 17, 0.72);
}

body.announcement-open {
  overflow: hidden;
}

.site-announcement[hidden] {
  display: none;
}

.site-announcement-card {
  width: min(620px, 100%);
  max-height: min(720px, 86vh);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 207, 69, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(255, 207, 69, 0.22), transparent 34%),
    var(--surface);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.site-announcement-card h1,
.site-announcement-card h2,
.site-announcement-card h3 {
  margin-top: 0;
  color: var(--deep);
}

.site-announcement-card p:last-child {
  margin-bottom: 0;
}

.success-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.success-modal[hidden] {
  display: none;
}

.success-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(30, 23, 17, 0.54);
}

.success-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.success-card h2 {
  margin: 0;
  font-size: 38px;
}

.success-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.success-card strong {
  color: var(--tomato);
}

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

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .section-head,
  .info-band,
  .split-section,
  .contacts-section {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contacts-section::after {
    display: none;
  }

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

  .site-footer {
    padding-right: clamp(16px, 5vw, 72px);
  }

  .hero {
    min-height: 680px;
  }

  .hero-bg-image {
    object-position: 62% center;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand-mark small,
  .phone-link {
    display: none;
  }

  .brand-logo {
    width: 108px;
    max-height: 42px;
  }

  .brand-mark {
    gap: 8px;
  }

  .cart-button span {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding: 72px 18px 72px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(20, 13, 8, 0.86) 0%, rgba(20, 13, 8, 0.66) 58%, rgba(20, 13, 8, 0.34) 100%),
      radial-gradient(circle at 26% 52%, rgba(255, 122, 26, 0.18), transparent 42%);
  }

  .hero-bg-image {
    object-position: 62% center;
  }

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

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

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

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

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

  .contacts-section {
    padding: 42px 18px;
  }

  .contact-direct,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-direct > :last-child {
    grid-column: auto;
  }

  .product-actions,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    width: 100%;
    padding: 18px 18px calc(104px + env(safe-area-inset-bottom));
  }

  .checkout-form .submit-order {
    display: none;
  }

  .cart-shell.open .mobile-cart-submit {
    position: fixed;
    right: 18px;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 18px;
    z-index: 70;
    display: block;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sun), var(--orange));
    color: var(--ink);
    box-shadow: 0 16px 36px rgba(30, 23, 17, 0.26);
    font-weight: 680;
    touch-action: manipulation;
  }

  .delivery-map iframe {
    height: 300px;
  }

  .delivery-map-head {
    grid-template-columns: auto 1fr;
  }

  .delivery-map-head a {
    grid-column: 1 / -1;
    text-align: center;
  }

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

  .segmented-control {
    border-radius: 8px;
  }

  .segmented-control span {
    border-radius: 6px;
  }

  .floating-cart-button {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: space-between;
    min-height: 52px;
    padding-left: 18px;
  }
}

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

.login-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(255, 207, 69, 0.34), rgba(255, 122, 26, 0.18)),
    var(--paper);
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(100%, 430px);
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.login-card h1 {
  color: var(--ink);
  font-size: 48px;
}

.login-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.login-card input {
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.admin-page,
.orders-page {
  background: #fff7ea;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 13px clamp(16px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.95);
  backdrop-filter: blur(16px);
}

.admin-tabs,
.admin-actions,
.orders-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.admin-language {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.admin-language select {
  min-width: 76px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 950;
}

.admin-tabs button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  font-weight: 900;
}

.admin-tabs button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.admin-button {
  min-height: 40px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  color: var(--ink);
  box-shadow: none;
}

.admin-button.small {
  min-height: 34px;
  padding-inline: 12px;
  font-size: 13px;
}

.admin-button.dark {
  background: var(--ink);
  color: white;
}

.admin-button.danger {
  background: #f2d8cf;
  color: #95210f;
}

.admin-main {
  padding: clamp(16px, 3vw, 34px);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
}

.admin-panel {
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  gap: 18px;
  max-width: 1480px;
  margin: 0 auto;
}

.admin-list,
.editor-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(94, 51, 18, 0.08);
}

.admin-list {
  display: grid;
  grid-template-rows: auto 1fr;
  max-height: calc(100vh - 112px);
  overflow: hidden;
}

.admin-list-top,
.editor-head,
.inline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-list-top {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-list-top h2,
.editor-head h2 {
  font-size: 30px;
}

.product-list {
  display: grid;
  align-content: start;
  gap: 6px;
  overflow: auto;
  padding: 10px;
}

.product-list button {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.product-list button.active,
.product-list button:hover {
  border-color: var(--line);
  background: #fff3dc;
}

.product-list span {
  color: var(--muted);
  font-size: 12px;
}

.editor-panel {
  display: grid;
  gap: 20px;
  padding: 22px;
}

.editor-panel.full {
  grid-column: 1 / -1;
}

.switch-field {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.switch-field input {
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
}

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

.admin-field.wide {
  grid-column: 1 / -1;
}

.admin-field input,
.admin-field select {
  min-height: 44px;
  padding: 0 12px;
}

.admin-field textarea {
  resize: vertical;
  padding: 10px 12px;
}

.variants-editor {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.variants-editor h3 {
  margin: 0;
}

#variantsEditor,
#promotionsEditor,
.extras-editor,
.promo-codes-editor {
  display: grid;
  gap: 10px;
}

.variant-admin-row,
.promo-admin-row,
.extra-admin-row,
.promo-code-admin-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.4fr) minmax(110px, 0.6fr) minmax(110px, 0.6fr) 42px;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
}

.promo-admin-row {
  grid-template-columns: minmax(170px, 0.8fr) minmax(220px, 1.4fr) 42px;
}

.promo-code-admin-row {
  grid-template-columns: 115px minmax(135px, 0.8fr) minmax(130px, 0.7fr) minmax(110px, 0.5fr) minmax(210px, 1.2fr) minmax(170px, 0.9fr) 42px;
}

.variant-admin-row label,
.promo-admin-row label,
.extra-admin-row label,
.promo-code-admin-row label,
.promo-code-admin-row fieldset {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-code-admin-row fieldset {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.promo-code-admin-row legend {
  width: 100%;
}

.promo-code-admin-row fieldset label {
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: none;
}

.variant-admin-row input,
.promo-admin-row input,
.promo-admin-row textarea,
.promo-code-admin-row input,
.promo-code-admin-row select,
.extra-admin-row input,
.order-actions select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.variant-admin-row input,
.promo-admin-row input,
.promo-code-admin-row input,
.promo-code-admin-row select,
.extra-admin-row input,
.order-actions select {
  height: 38px;
  padding: 0 10px;
}

.promo-admin-row textarea {
  resize: vertical;
  padding: 9px 10px;
}

.variant-admin-row button,
.promo-admin-row button,
.promo-code-admin-row button,
.extra-admin-row button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff3dc;
  cursor: pointer;
  font-size: 22px;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.orders-main {
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(14px, 2.4vw, 28px);
}

.orders-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.orders-topline h1 {
  color: var(--ink);
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1;
}

.orders-topline p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.orders-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.orders-brief article {
  display: grid;
  gap: 4px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff7ea;
}

.orders-brief span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.orders-brief strong {
  color: var(--ink);
  font-size: 15px;
}

.orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 12px;
}

.orders-grid.compact {
  margin-top: 14px;
}

.order-card {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(94, 51, 18, 0.07);
}

.order-card.fresh {
  border-color: var(--orange);
  box-shadow:
    0 16px 42px rgba(255, 122, 26, 0.14),
    0 0 0 3px rgba(255, 122, 26, 0.07);
}

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

.order-number {
  margin: 2px 0 3px;
  font-size: 10px;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 650;
}

.order-head time,
.order-customer p,
.order-total {
  color: var(--muted);
  font-size: 14px;
}

.order-grand-total {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: var(--tomato);
  font-size: 21px;
  font-weight: 650;
  white-space: nowrap;
}

.order-grand-total span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.order-customer {
  display: grid;
  gap: 7px;
}

.order-customer p,
.order-lines {
  margin: 0;
}

.order-contact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.order-contact-row > span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 520;
}

.order-phone {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.order-company {
  color: var(--muted);
  font-size: 13px;
}

.invoice-line {
  color: var(--tomato);
  font-weight: 600;
}

.order-delivery-block {
  display: grid;
  gap: 7px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 122, 26, 0.28);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 207, 69, 0.2), rgba(255, 247, 232, 0.72)),
    #fffaf1;
}

.order-section-label {
  color: var(--tomato);
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

.order-address {
  color: var(--ink) !important;
  font-size: 16px !important;
  font-weight: 560;
  line-height: 1.32;
}

.order-delivery-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.order-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(214, 178, 126, 0.58);
  color: var(--muted);
  font-size: 12.5px;
}

.order-service-meta b {
  color: var(--ink);
  font-weight: 560;
}

.order-client-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 12px;
  padding-top: 2px;
  color: #8a7b70;
  font-size: 10.5px;
}

.order-client-meta b {
  color: inherit;
  font-weight: 500;
}

.order-comment {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff3dc;
  color: var(--ink);
  font-size: 14px;
}

.order-comment b {
  font-weight: 600;
}

.order-items-block {
  display: grid;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.order-lines {
  display: grid;
  gap: 7px;
  padding-left: 20px;
}

.order-lines li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding-left: 2px;
}

.order-line-main {
  min-width: 0;
}

.order-line-main strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 620;
}

.order-line-main > span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.order-line-price {
  display: grid;
  justify-items: end;
  gap: 1px;
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}

.order-line-price strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.order-line-price s {
  color: #9b8573;
  font-size: 11px;
  text-decoration-color: var(--tomato);
  text-decoration-thickness: 1.5px;
}

.order-line-price.is-discounted strong {
  color: var(--tomato);
}

.order-total {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  font-size: 13px;
}

.order-actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 7px;
}

.order-actions button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff3dc;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.trash-section {
  margin-top: 24px;
  color: var(--muted);
}

.trash-section summary {
  cursor: pointer;
  font-weight: 900;
}

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

  .admin-tabs,
  .admin-actions,
  .orders-toolbar {
    justify-content: flex-start;
  }

  .admin-panel {
    grid-template-columns: 1fr;
  }

  .admin-list {
    max-height: 360px;
  }

  .orders-topline {
    align-items: start;
    flex-direction: column;
  }

  .orders-brief {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .admin-grid,
  .variant-admin-row,
  .promo-admin-row,
  .promo-code-admin-row,
  .extra-admin-row,
  .order-actions {
    grid-template-columns: 1fr;
  }

  .admin-list-top,
  .editor-head,
  .inline-head {
    align-items: start;
    flex-direction: column;
  }

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

  .order-card {
    padding: 15px;
  }

  .order-contact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .order-address {
    font-size: 20px !important;
  }
}

/* Premium storefront */
.storefront {
  --ink: #201812;
  --muted: #74675d;
  --paper: #f5f3ef;
  --surface: #fffefa;
  --line: #ddd5ca;
  --sun: #edb83d;
  --orange: #dd772b;
  --tomato: #b83b24;
  --olive: #667041;
  --cream: #f1e9dd;
  --deep: #21150f;
  background: #f5f3ef;
}

.storefront .site-header {
  min-height: 82px;
  padding-block: 13px;
  border-bottom-color: rgba(68, 48, 35, 0.12);
  background: rgba(251, 250, 247, 0.95);
  box-shadow: 0 10px 34px rgba(53, 34, 22, 0.05);
}

.storefront .brand-logo {
  width: clamp(132px, 13vw, 184px);
  max-height: 52px;
}

.storefront .main-nav {
  color: #584b42;
  font-size: 14px;
  font-weight: 560;
}

.storefront .main-nav a {
  position: relative;
  border: 0;
}

.storefront .main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--tomato);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.storefront .main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.storefront .phone-link {
  color: var(--tomato);
  font-size: 15px;
  font-weight: 650;
}

.storefront .language-switcher {
  border-color: rgba(68, 48, 35, 0.16);
  background: #fffdf9;
}

.storefront .language-switcher button {
  font-weight: 650;
}

.storefront .language-switcher button.active {
  background: var(--deep);
}

.storefront .cart-button {
  min-height: 48px;
  background: var(--deep);
  font-weight: 620;
  box-shadow: 0 14px 34px rgba(32, 21, 15, 0.16);
}

.storefront .cart-button strong {
  background: #f6bf3d;
  font-weight: 650;
}

.storefront .hero {
  min-height: min(790px, calc(100vh - 82px));
  padding-inline: clamp(24px, 6vw, 94px);
  background: #1d120d;
}

.storefront .hero::before {
  background:
    linear-gradient(90deg, rgba(20, 12, 8, 0.82) 0%, rgba(20, 12, 8, 0.58) 38%, rgba(20, 12, 8, 0.12) 72%, rgba(20, 12, 8, 0.2) 100%);
}

.storefront .hero::after {
  height: 18%;
  background: linear-gradient(0deg, rgba(247, 242, 233, 0.42), transparent);
}

.storefront .hero-content {
  max-width: 720px;
}

.storefront h1,
.storefront h2,
.storefront .product-section-head h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.storefront .hero h1 {
  max-width: 700px;
  font-size: clamp(64px, 7vw, 108px);
  line-height: 0.92;
  text-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.storefront .eyebrow {
  color: var(--tomato);
  font-size: 11px;
  font-weight: 650;
}

.storefront .hero .eyebrow {
  color: #f6bf3d;
}

.storefront .hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 440;
  line-height: 1.55;
}

.storefront .hero-actions {
  gap: 14px;
  margin-top: 34px;
}

.storefront .primary-link,
.storefront .submit-order,
.storefront .success-button {
  min-height: 50px;
  padding-inline: 26px;
  border-radius: 5px;
  background: #f5b83c;
  color: var(--deep);
  font-weight: 620;
  box-shadow: 0 14px 30px rgba(179, 92, 24, 0.22);
}

.storefront .secondary-link,
.storefront .hero .secondary-link {
  min-height: 50px;
  border-radius: 5px;
  font-weight: 540;
}

.storefront .hero .secondary-link {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.storefront .menu-section {
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: clamp(80px, 10vw, 130px);
  border-top: 0;
  background: #f5f3ef;
}

.storefront .menu-section::before {
  display: none;
}

.storefront .section-head {
  max-width: 1360px;
  margin-bottom: 36px;
}

.storefront .section-head h2 {
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.96;
}

.storefront .search-box {
  width: min(100%, 350px);
  font-weight: 600;
}

.storefront .search-box input {
  height: 52px;
  border: 0;
  border-bottom: 1px solid #bcae9c;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 430;
  box-shadow: none;
}

.storefront .category-filters {
  gap: 5px 22px;
  max-width: 1360px;
  margin-bottom: 56px;
  padding-block: 14px;
  border-block: 1px solid rgba(68, 48, 35, 0.12);
}

.storefront .category-filters button {
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6d6056;
  font-size: 13px;
  font-weight: 540;
  box-shadow: none;
}

.storefront .category-filters button:hover {
  transform: none;
  color: var(--tomato);
  box-shadow: none;
}

.storefront .category-filters button.active {
  background: transparent;
  color: var(--deep);
  box-shadow: inset 0 -2px 0 var(--tomato);
}

.storefront .product-grid {
  max-width: 1360px;
}

.storefront .product-section {
  gap: 32px;
}

.storefront .product-section + .product-section {
  margin-top: 92px;
  padding-top: 72px;
  border-top-color: rgba(68, 48, 35, 0.13);
}

.storefront .product-section-head {
  gap: 8px;
}

.storefront .product-section-head h3 {
  font-size: clamp(44px, 4.8vw, 68px);
}

.storefront .product-section-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
}

.storefront .product-card {
  border-color: rgba(68, 48, 35, 0.12);
  border-radius: 5px;
  background: #fffefa;
  box-shadow: 0 16px 46px rgba(58, 37, 24, 0.07);
}

.storefront .product-card::after {
  display: none;
}

.storefront .product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(68, 48, 35, 0.2);
  box-shadow: 0 24px 58px rgba(58, 37, 24, 0.12);
}

.storefront .product-image-wrap {
  aspect-ratio: 1.05;
  border-bottom: 0;
  background:
    linear-gradient(145deg, #f1ece4, #e1d5c5),
    #ebe4da;
}

.storefront .product-image-wrap.image-fallback {
  background:
    url("assets/labapica_logo_web_01.png") center / min(58%, 190px) auto no-repeat,
    linear-gradient(145deg, #f1ece4, #ded2c2);
}

.storefront .product-image-wrap.image-fallback::before {
  display: none;
}

.storefront .product-image {
  transition: transform 420ms ease;
}

.storefront .product-card:hover .product-image {
  transform: scale(1.035);
}

.storefront .product-category {
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border-radius: 4px;
  background: rgba(32, 24, 18, 0.76);
  font-size: 10px;
  font-weight: 520;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.storefront .product-body {
  gap: 16px;
  padding: 21px 20px 22px;
}

.storefront .product-title-row {
  gap: 10px;
}

.storefront .product-title-row h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
}

.storefront .product-price,
.storefront .product-price.is-sale {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.storefront .product-price-current {
  color: var(--tomato);
  font-size: 18px;
  font-weight: 620;
}

.storefront .product-price-old {
  color: #988b80;
  font-size: 12px;
  font-weight: 420;
}

.storefront .composition {
  min-height: 68px;
  color: #74675d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.storefront .allergens {
  gap: 5px;
}

.storefront .allergens span {
  padding: 4px 7px;
  border: 1px solid #e8ddcf;
  border-radius: 4px;
  background: #f8f1e6;
  color: #725238;
  font-size: 10px;
  font-weight: 500;
}

.storefront .allergens .allergen-icon {
  width: 24px;
  border-color: var(--deep);
  background: var(--deep);
  color: #f5bd3d;
}

.storefront .variant-row {
  gap: 3px;
  padding: 3px;
  border: 1px solid #e2d4c2;
  border-radius: 6px;
  background: #faf5ed;
}

.storefront .variant-row button,
.storefront .bundles-section .variant-row button,
.storefront .drinks-section .variant-row button,
.storefront .sauces-section .variant-row button {
  min-height: 42px;
  border: 0 !important;
  border-radius: 4px;
  background: transparent;
  font-weight: 520;
  box-shadow: none !important;
}

.storefront .product-card .variant-row button.active,
.storefront .bundles-section .product-card .variant-row button.active,
.storefront .drinks-section .product-card .variant-row button.active,
.storefront .sauces-section .product-card .variant-row button.active {
  border: 0 !important;
  outline: 0;
  background: #f4ba43 !important;
  box-shadow: 0 5px 14px rgba(160, 92, 28, 0.16) !important;
}

.storefront .extras-box {
  padding: 10px 12px;
  border-color: #e5d8c7;
  border-radius: 5px;
  background: #fbf7f0;
}

.storefront .extras-box summary {
  color: #667041;
  font-weight: 560;
}

.storefront .product-actions {
  grid-template-columns: 104px 1fr;
  gap: 10px;
}

.storefront .quantity-stepper {
  height: 48px;
  border-color: #e1d3c1;
  border-radius: 5px;
  background: #fffefa;
}

.storefront .quantity-stepper button,
.storefront .quantity-stepper span {
  font-weight: 520;
}

.storefront .add-button,
.storefront .bundles-section .add-button,
.storefront .drinks-section .add-button,
.storefront .sauces-section .add-button {
  min-height: 48px;
  border-radius: 5px;
  background: #f3b43b;
  color: var(--deep);
  font-weight: 570;
  box-shadow: 0 10px 22px rgba(161, 90, 24, 0.15);
}

.storefront .add-button:hover {
  box-shadow: 0 14px 28px rgba(161, 90, 24, 0.2);
}

.storefront .bundles-section,
.storefront .drinks-section,
.storefront .sauces-section {
  padding: clamp(28px, 3vw, 42px);
  border-color: rgba(68, 48, 35, 0.12);
  border-radius: 5px;
  background: #eae5dd;
  box-shadow: none;
}

.storefront .bundles-section::before,
.storefront .drinks-section::before,
.storefront .sauces-section::before {
  display: none;
}

.storefront .bundles-section .product-section-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.storefront .bundles-section .product-card,
.storefront .drinks-section .product-card,
.storefront .sauces-section .product-card {
  border-color: rgba(68, 48, 35, 0.12);
  background: #fffefa;
  box-shadow: 0 14px 36px rgba(58, 37, 24, 0.06);
}

.storefront .bundles-section .product-image-wrap {
  aspect-ratio: 1.25;
}

.storefront .bundles-section .product-body {
  gap: 13px;
  padding: 18px 16px 18px;
}

.storefront .bundles-section .product-title-row h3 {
  font-size: 18px;
  line-height: 1.13;
}

.storefront .bundles-section .composition {
  min-height: 48px;
  font-size: 12.5px;
}

.storefront .bundles-section .product-category {
  top: auto;
  bottom: 12px;
}

.storefront .bundles-section .product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.storefront .bundles-section .quantity-stepper,
.storefront .bundles-section .add-button {
  width: 100%;
}

.storefront .bundles-section .add-button {
  min-height: 46px;
  padding-inline: 10px;
}

.storefront .drinks-section,
.storefront .sauces-section {
  margin-top: 72px;
  background: #eeebe5;
}

.storefront .drinks-section .product-section-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.storefront .sauces-section .product-section-grid {
  grid-template-columns: repeat(3, minmax(250px, 340px));
  gap: 20px;
}

.storefront .info-band {
  padding-block: clamp(76px, 9vw, 118px);
  border-color: rgba(68, 48, 35, 0.12);
  background: #e9d7b9;
}

.storefront .info-main h2 {
  max-width: 780px;
}

.storefront .info-main p:not(.eyebrow) {
  color: #66584d;
  line-height: 1.7;
}

.storefront .info-stats div {
  border-color: rgba(68, 48, 35, 0.12);
  border-radius: 5px;
  background: rgba(255, 253, 249, 0.76);
}

.storefront .info-stats span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--tomato);
  font-weight: 500;
}

.storefront .delivery-map {
  border-color: rgba(68, 48, 35, 0.14);
  border-radius: 5px;
  box-shadow: 0 20px 50px rgba(58, 37, 24, 0.1);
}

.storefront .content-section {
  padding-block: clamp(82px, 10vw, 124px);
  background: #fbfaf7;
}

.storefront .promo-grid {
  gap: 0;
  border-block: 1px solid rgba(68, 48, 35, 0.13);
}

.storefront .promo-card {
  min-height: 210px;
  padding: 30px;
  border: 0;
  border-right: 1px solid rgba(68, 48, 35, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.storefront .promo-card:last-child {
  border-right: 0;
}

.storefront .promo-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.storefront .split-section {
  padding-block: clamp(82px, 10vw, 124px);
}

.storefront .about-card,
.storefront .about-copy {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.storefront .about-card {
  padding-right: clamp(20px, 5vw, 70px);
  border-right: 1px solid rgba(68, 48, 35, 0.14);
}

.storefront .about-copy p {
  font-size: 19px;
  line-height: 1.85;
}

.storefront .about-marks span,
.storefront .delivery-highlights span {
  border-radius: 4px;
  background: rgba(255, 253, 249, 0.68);
  font-weight: 480;
}

.storefront .contacts-section {
  padding: clamp(56px, 7vw, 88px);
  border-color: rgba(68, 48, 35, 0.13);
  background: #ece7de;
}

.storefront .contacts-section::after {
  background: rgba(68, 48, 35, 0.14);
}

.storefront .contact-direct a,
.storefront .contact-direct div {
  border-color: rgba(68, 48, 35, 0.14);
  border-radius: 5px;
  background: rgba(255, 253, 249, 0.66);
}

.storefront .contact-order-panel {
  border-color: rgba(68, 48, 35, 0.14);
  border-radius: 5px;
  background: #fffefa;
  box-shadow: 0 20px 52px rgba(58, 37, 24, 0.08);
}

.storefront .contact-order-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.storefront .site-footer {
  border-top-color: rgba(68, 48, 35, 0.12);
  background: #f8f7f3;
  box-shadow: none;
}

.storefront .floating-cart-button {
  border-color: rgba(246, 191, 61, 0.28);
  border-radius: 5px;
  background: rgba(33, 21, 15, 0.94);
  font-weight: 560;
}

@media (max-width: 1180px) {
  .storefront .product-section-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .storefront .bundles-section .product-section-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .storefront .site-header {
    min-height: auto;
  }

  .storefront .hero {
    min-height: 690px;
  }

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

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

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

  .storefront .about-card {
    padding-right: 0;
    padding-bottom: 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(68, 48, 35, 0.14);
  }
}

@media (max-width: 560px) {
  .storefront .site-header {
    padding: 11px 14px 8px;
    background: rgba(251, 250, 247, 0.98);
  }

  .storefront .brand-logo {
    width: 116px;
  }

  .storefront .main-nav {
    gap: 20px;
    font-size: 13px;
  }

  .storefront .hero {
    min-height: 610px;
    padding: 72px 18px 66px;
  }

  .storefront .hero h1 {
    font-size: clamp(54px, 17vw, 74px);
  }

  .storefront .hero-copy {
    font-size: 17px;
  }

  .storefront .menu-section {
    padding: 66px 14px 82px;
  }

  .storefront .section-head h2,
  .storefront .product-section-head h3 {
    font-size: 42px;
  }

  .storefront .category-filters {
    flex-wrap: nowrap;
    gap: 24px;
    margin: 0 -14px 42px;
    padding-inline: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .storefront .category-filters::-webkit-scrollbar {
    display: none;
  }

  .storefront .category-filters button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .storefront .product-section-grid,
  .storefront .drinks-section .product-section-grid,
  .storefront .sauces-section .product-section-grid {
    grid-template-columns: 1fr;
  }

  .storefront .bundles-section {
    margin-inline: -14px;
    padding: 30px 14px 34px;
    border-right: 0;
    border-left: 0;
  }

  .storefront .bundles-section .product-section-grid {
    grid-auto-columns: minmax(278px, 84vw);
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .storefront .bundles-section .product-card {
    scroll-snap-align: start;
  }

  .storefront .product-image-wrap {
    aspect-ratio: 1.16;
  }

  .storefront .product-title-row h3 {
    font-size: 27px;
  }

  .storefront .composition {
    min-height: 0;
    font-size: 14.5px;
  }

  .storefront .product-actions {
    grid-template-columns: 108px 1fr;
  }

  .storefront .promo-grid {
    border-block: 0;
  }

  .storefront .promo-card {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(68, 48, 35, 0.13);
  }

  .storefront .contacts-section {
    padding: 48px 18px;
  }

  .storefront .floating-cart-button {
    border-radius: 5px;
  }
}
