:root {
  --brown: #3b2a20;
  --brown-2: #5c4032;
  --gold: #c9a24d;
  --gold-deep: #a7853a;
  --paper: #faf7f2;
  --ink: #14110f;
  --line: rgba(201, 162, 77, 0.35);
  --shadow: 0 18px 50px rgba(0,0,0,.12);
}
* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration-thickness: 1px; }
.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250,247,242,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .65rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.brand img {
  height: 52px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.brand-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown);
}
.brand-text span {
  font-size: .78rem;
  color: #5e534c;
}
.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  justify-content: flex-end;
  align-items: center;
}
.header-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem 1rem;
}
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .52rem .95rem;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brown);
  background: linear-gradient(180deg, #fff 0%, #f7f0e6 100%);
  border: 1px solid var(--gold-deep);
  border-radius: 3px;
  cursor: pointer;
}
.cart-toggle:hover { background: #fff9ec; }
.cart-badge {
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 .35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  background: var(--brown);
  color: var(--gold);
  border-radius: 999px;
}
.cart-badge.is-zero { opacity: .45; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 6, .55);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  max-height: 100dvh;
  background: #fdfbf7;
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 48px rgba(0,0,0,.18);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #faf6ef 100%);
}
.cart-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: var(--brown);
}
.cart-close {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  color: var(--brown-2);
  border-radius: 3px;
}
.cart-close:hover { background: rgba(201,162,77,.15); color: var(--brown); }
.cart-body {
  flex: 1;
  overflow: auto;
  padding: .75rem 1rem 1rem;
}
.cart-empty {
  margin: 2rem .5rem;
  text-align: center;
  color: #6b6059;
  font-size: .92rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem .65rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(201,162,77,.22);
  align-items: center;
}
.cart-item-title {
  font-weight: 600;
  font-size: .88rem;
  color: var(--brown);
  line-height: 1.35;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  grid-column: 1;
}
.cart-qty button {
  width: 2rem;
  height: 2rem;
  border: 1px solid #c9b89f;
  background: #fff;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--brown);
}
.cart-qty button:hover { border-color: var(--gold-deep); background: #fff9ec; }
.cart-qty span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
}
.cart-remove {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  border: none;
  background: none;
  color: #8a7a6e;
  font-size: .78rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.cart-remove:hover { color: var(--brown); }
.cart-foot {
  padding: 1rem 1.15rem 1.25rem;
  border-top: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.cart-foot .btn.primary { width: 100%; justify-content: center; }
.btn-text {
  border: none;
  background: none;
  font-family: inherit;
  font-size: .82rem;
  color: #7a6e65;
  cursor: pointer;
  text-decoration: underline;
  padding: .25rem 0;
}
.btn-text:hover { color: var(--brown); }
.nav-desktop a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: .02em;
}
.nav-desktop a:hover { color: var(--gold-deep); }
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--gold-deep);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f7f0e6 100%);
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}
.menu-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brown);
  border-radius: 1px;
  transition: transform .22s ease, opacity .22s ease;
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(10, 8, 6, .52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  height: 100dvh;
  width: min(300px, 88vw);
  max-width: 100%;
  z-index: 95;
  background: linear-gradient(180deg, #fdfbf7 0%, #f8f4ec 100%);
  border-right: 1px solid var(--line);
  box-shadow: 12px 0 40px rgba(0,0,0,.14);
  flex-direction: column;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.menu-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.menu-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.menu-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.65);
}
.menu-drawer-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown);
}
.menu-drawer-close {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--brown-2);
  border-radius: 8px;
}
.menu-drawer-close:hover {
  background: rgba(201,162,77,.18);
  color: var(--brown);
}
.nav-mobile {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: .5rem 0 1.25rem;
  display: flex;
  flex-direction: column;
}
.nav-mobile a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 77, 0.22);
  transition: background .15s ease;
}
.nav-mobile a:hover,
.nav-mobile a:active {
  background: rgba(201, 162, 77, 0.12);
  color: var(--gold-deep);
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f4efe6;
  min-height: clamp(320px, 52vw, 520px);
  padding: 3.25rem 0 3rem;
  background: #14100e;
}
.hero-slider-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 52vw, 520px);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.05s ease-in-out;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(10, 8, 6, 0.92) 0%, rgba(10, 8, 6, 0.5) 48%, rgba(10, 8, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 8, 6, 0.25) 0%, transparent 40%, rgba(10, 8, 6, 0.82) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 1.25rem;
}
.hero-copy {
  display: grid;
  gap: 0.65rem;
  transition: opacity 0.42s ease, transform 0.42s ease;
}
.hero-copy.hero-text-leave {
  opacity: 0;
  transform: translateY(12px);
}
.hero-copy.hero-text-enter {
  animation: heroCopyEnter 0.52s ease forwards;
}
@keyframes heroCopyEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}
.hero-lead {
  margin: 0;
  max-width: 56ch;
  color: #ebe4d9;
  font-size: 1rem;
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.hero .note {
  color: #d5cdc2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
  .hero-copy {
    transition: none !important;
  }
  .hero-copy.hero-text-enter {
    animation: none !important;
  }
  .hero-copy.hero-text-leave {
    opacity: 1 !important;
    transform: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.35rem;
  border-radius: 2px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  font-family: inherit;
}
.btn.primary {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1c140f;
  border-color: #8f6f32;
}
.btn.primary:hover { filter: brightness(1.05); }
.btn.ghost {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: #f4efe6;
}
.btn.outline {
  background: #fff;
  border-color: var(--gold-deep);
  color: var(--brown);
}
.btn.outline:hover { background: #fff9ec; }
.btn.card-cta {
  border-color: var(--gold-deep);
  color: var(--brown);
  background: #fffdf9;
  font-size: .82rem;
  padding: .58rem 1rem;
}
.btn.card-cta:hover { background: #fff6e4; }
.card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.card-actions .btn {
  align-self: flex-start;
}
.note {
  font-size: .88rem;
  color: #cfc6ba;
}
.section {
  padding: 3rem 0 1rem;
}
.section-head {
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .75rem;
}
.section-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  color: var(--brown);
}
.section-lead {
  margin: .35rem 0 0;
  color: #4d433c;
  font-size: .95rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  padding: 1rem 0 2rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.card-visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ebe6df;
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 1rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.card-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--brown-2);
  line-height: 1.25;
}
.card-title .accent {
  display: block;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: .15rem;
}
.spec {
  margin: 0;
  padding-left: 1.1rem;
  color: #3a332f;
  font-size: .88rem;
}
.spec li { margin: .2rem 0; }
.order {
  padding: 3.25rem 0 4rem;
  margin-top: 1.5rem;
  background: linear-gradient(185deg, #f3ebe0 0%, var(--paper) 38%, #ebe4d9 100%);
  border-top: 1px solid var(--line);
}
.order-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 2.15rem;
  background: #fff;
  border: 1px solid rgba(201, 162, 77, 0.45);
  border-radius: 10px;
  box-shadow: 0 24px 56px rgba(59, 42, 32, 0.08), 0 0 0 1px rgba(255,255,255,.8) inset;
}
.order-head {
  text-align: center;
  padding-bottom: 1.35rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 162, 77, 0.28);
}
.order h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  color: var(--brown);
  margin: 0 0 .65rem;
  letter-spacing: .02em;
}
.order-intro {
  margin: 0 auto;
  max-width: 42rem;
  color: #5c534c;
  font-size: .96rem;
  line-height: 1.6;
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.order-row {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.order-field-full {
  grid-column: 1 / -1;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.order label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown-2);
}
.order input, .order textarea {
  width: 100%;
  padding: .72rem .85rem;
  border: 1px solid #cfc4b8;
  border-radius: 6px;
  font: inherit;
  background: #faf8f5;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.order input:hover, .order textarea:hover {
  border-color: #b8a994;
  background: #fff;
}
.order input:focus, .order textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.28);
  background: #fff;
}
.order textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.45;
}
.order-consent {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  padding: .95rem 1rem;
  background: #faf6ef;
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: 8px;
  font-size: .87rem;
  line-height: 1.45;
  color: #4a423c;
}
.order-consent input[type="checkbox"] {
  margin-top: .2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--gold-deep);
  flex-shrink: 0;
}
.order-consent label {
  margin: 0;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  color: #3d3632;
}
.order-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.order-submit .btn.outline {
  padding: .78rem 1.6rem;
  font-size: .95rem;
  border-radius: 6px;
  border-width: 2px;
}
.order-footnote {
  margin: 1.35rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(201, 162, 77, 0.35);
  font-size: .86rem;
  color: #73685f;
  text-align: center;
  line-height: 1.55;
}
.order-footnote a {
  font-weight: 600;
}
label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--brown);
  display: block;
  margin-bottom: .35rem;
}
input, textarea {
  width: 100%;
  padding: .65rem .7rem;
  border: 1px solid #d9cfc3;
  border-radius: 2px;
  font: inherit;
  background: #fdfcfa;
}
textarea { min-height: 110px; resize: vertical; }
.checkbox {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .88rem;
}
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #140f0c 0%, #080605 55%, #050403 100%);
  color: #e9e2d8;
  padding: 2.25rem 0 2.75rem;
  font-size: .93rem;
  border-top: 2px solid var(--gold-deep);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.footer-simple {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}
.footer-simple p {
  margin: 0 0 .9rem;
  color: #d5cbc0;
  line-height: 1.65;
}
.footer-simple p:last-child {
  margin-bottom: 0;
}
.footer-simple .footer-lead {
  color: #eee8df;
  font-size: .98rem;
}
.footer-simple strong {
  color: #fff;
  font-weight: 600;
}
.footer-simple a {
  color: var(--gold);
  text-decoration: none;
}
.footer-simple a:hover {
  text-decoration: underline;
  color: #e8d5a4;
}
.footer-note {
  margin-top: 1.35rem !important;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201,162,77,.22);
  font-size: .82rem;
  color: #9a8f85;
  line-height: 1.55;
}
.muted { color: #c9bfb4; font-size: .85rem; }

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 769px) {
  .menu-overlay,
  .menu-drawer {
    display: none !important;
  }
  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
  }
  .menu-overlay {
    display: block;
  }
  .menu-drawer {
    display: flex;
  }
  .nav-desktop {
    display: none !important;
  }
  .container {
    width: min(1180px, calc(100vw - 1.25rem));
  }
  .header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: .65rem;
    padding: .5rem 0 .55rem;
  }
  .brand {
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
  }
  .brand img {
    height: 46px;
  }
  .brand-text strong {
    font-size: .92rem;
    letter-spacing: .05em;
  }
  .header-end {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    width: auto;
  }
  .cart-toggle {
    min-height: 46px;
    padding: .45rem .8rem;
    font-size: .76rem;
  }
  .hero {
    padding: 2rem 0 2.35rem;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
  }
  .hero-lead {
    font-size: .94rem;
    max-width: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .section {
    padding: 2.25rem 0 .75rem;
  }
  .section-head h2 {
    font-size: clamp(1.35rem, 5vw, 1.85rem);
  }
  .section-lead {
    font-size: .9rem;
  }
  .card-body {
    padding: .9rem .95rem 1rem;
  }
  .card-title {
    font-size: 1.12rem;
  }
  .card-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    font-size: .85rem;
  }
  .order {
    padding: 2.25rem 0 3rem;
    margin-top: .75rem;
  }
  .order-shell {
    padding: 1.45rem 1.15rem 1.6rem;
    border-radius: 8px;
  }
  .order-head {
    text-align: left;
  }
  .order-submit .btn.outline {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .site-footer {
    padding: 1.85rem 0 max(2rem, env(safe-area-inset-bottom));
    font-size: .89rem;
  }
}

@media (max-width: 520px) {
  .grid {
    grid-template-columns: 1fr;
    gap: .95rem;
    padding: .65rem 0 1.35rem;
  }
  .cart-drawer {
    width: 100%;
    max-width: 100vw;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .cart-head {
    padding-top: max(1rem, env(safe-area-inset-top, 0px));
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .cart-body {
    padding-left: max(.85rem, env(safe-area-inset-left, 0px));
    padding-right: max(.85rem, env(safe-area-inset-right, 0px));
  }
  .cart-foot {
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .cart-qty button {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .cart-remove {
    min-height: 44px;
    padding: .35rem 0;
    align-self: center;
  }
}

@media (max-width: 380px) {
  .brand-text span {
    display: none;
  }
  .brand-text strong {
    font-size: .82rem;
    line-height: 1.2;
  }
  .footer-simple .footer-lead {
    font-size: .85rem;
  }
}

/* Honeypot + order Telegram feedback */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.order-form {
  position: relative;
}
.order-status {
  margin: 1rem 0 0;
  min-height: 1.35em;
  font-size: .92rem;
  line-height: 1.45;
}
.order-status.is-success {
  color: #2d6a4f;
}
.order-status.is-error {
  color: #9b2335;
}

.catalog-load-error {
  margin: 2rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  background: rgba(155, 35, 53, 0.08);
  border: 1px solid rgba(155, 35, 53, 0.25);
  color: #7a1f2e;
}
