
:root {
  /* --- Master palette: smoked tavern / aged brass --- */
  --color-black: #050302;
  --color-charcoal: #0d0907;
  --color-walnut: #17100a;
  --color-oak: #241608;
  --color-leather: #3a2414;
  --color-copper: #b5662a;
  --color-bronze: #8a4b1e;
  --color-brass: #c8954c;
  --color-gold: #d7a85a;
  --color-amber: #f1c77b;
  --color-ember: #e2742a;
  --color-smoke: rgba(208, 184, 150, 0.5);
  --color-text: #f3e6d1;
  --color-muted: #b29c83;

  /* Candlelight glow tints used across glass/brass surfaces */
  --glow-amber: rgba(241, 199, 123, 0.5);
  --glow-ember: rgba(226, 116, 42, 0.42);
  --glass-panel: rgba(18, 12, 8, 0.66);
  --glass-panel-deep: rgba(9, 6, 4, 0.72);
  --hairline-brass: rgba(200, 149, 76, 0.3);
  --hairline-brass-strong: rgba(241, 199, 123, 0.55);

  /* --- Backward-compatible aliases --- */
  --bg-main: var(--color-black);
  --bg-panel: var(--color-walnut);
  --bg-panel-deep: var(--color-charcoal);
  --accent-copper: var(--color-copper);
  --accent-gold: var(--color-gold);
  --accent-bronze: var(--color-bronze);
  --accent-amber: var(--color-amber);
  --text-main: var(--color-text);
  --text-secondary: #cdbca3;
  --text-muted: var(--color-muted);
  --border-color: var(--hairline-brass);
  --status-instock: #d7a35d;
  --status-error: #bd5749;

  --font-heading: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-heading-cyrillic: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Marck Script', 'Cormorant Garamond', Georgia, serif;
  --font-text: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-main);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text-main);
  background: var(--bg-main);
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::selection {
  color: #120b07;
  background: var(--accent-amber);
}

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

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

button:focus-visible,
a:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-amber);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-wrap: balance;
}

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

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

.container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  color: #160d06;
  border: 1px solid #6e3e17;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 241, 188, 0.74), transparent 36%),
    linear-gradient(135deg, #8d4b1b 0%, #dca25b 42%, #f1c77b 50%, #a96328 100%);
  box-shadow: 0 14px 32px rgba(199, 104, 29, 0.24);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary:disabled {
  cursor: not-allowed;
  filter: grayscale(0.7);
  opacity: 0.52;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080503;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #080503;
  border-radius: 999px;
  background: #69411f;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-copper);
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1280px);
  }
}

/* ==== App.css (reference) ==== */
.app-shell {
  --parallax-x: 0;
  --parallax-y: 0;
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  background: #070503;
  overflow: clip;
}

.scene-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, rgba(58, 33, 14, 0.55), transparent 60%),
    linear-gradient(180deg, #0a0604 0%, #060403 40%, #040201 100%);
}

/* Fine filmic grain over the whole scene for an expensive, cinematic finish */
.scene-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.045;
  mix-blend-mode: overlay;
}

.scene-layer {
  position: absolute;
  inset: -5vw;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Far layer: deep tavern photo, heavily darkened so it reads as continuous depth */
.scene-layer-far {
  background-image:
    radial-gradient(ellipse 90% 70% at 50% 30%, transparent 0%, rgba(5, 3, 2, 0.55) 80%),
    linear-gradient(90deg, rgba(5, 3, 2, 0.7) 0%, rgba(5, 3, 2, 0.2) 38%, rgba(5, 3, 2, 0.5) 100%),
    url("/static/assets/pirate-tavern-bg.1b8e7fc81121.webp");
  background-size: cover, cover, cover;
  background-position: center;
  filter: saturate(0.88) brightness(0.82) contrast(1.05);
  transform: translate3d(calc(var(--parallax-x) * -16px), calc(var(--parallax-y) * -9px), 0) scale(1.06);
}

/* Mid layer: warm candle pools + faint vertical wood-plank rhythm */
.scene-layer-mid {
  background:
    radial-gradient(circle at 14% 24%, rgba(241, 175, 84, 0.16), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(226, 138, 50, 0.18), transparent 22%),
    radial-gradient(circle at 22% 82%, rgba(226, 116, 42, 0.14), transparent 26%),
    radial-gradient(circle at 78% 74%, rgba(241, 199, 123, 0.12), transparent 24%),
    repeating-linear-gradient(90deg, transparent 0 116px, rgba(58, 36, 20, 0.16) 116px 118px, transparent 118px 120px);
  mix-blend-mode: screen;
  opacity: 0.8;
  transform: translate3d(calc(var(--parallax-x) * 28px), calc(var(--parallax-y) * 13px), 0) scale(1.05);
}

.scene-layer-smoke {
  background:
    radial-gradient(ellipse at 30% 22%, rgba(212, 184, 142, 0.14), transparent 36%),
    radial-gradient(ellipse at 70% 58%, rgba(214, 158, 98, 0.12), transparent 38%),
    linear-gradient(110deg, transparent 0%, rgba(255, 232, 187, 0.07) 34%, transparent 60%);
  filter: blur(10px);
  opacity: 0.52;
  transform: translate3d(calc(var(--parallax-x) * 54px), calc(var(--parallax-y) * 27px), 0) scale(1.09);
}

.scene-layer-embers {
  background-image:
    radial-gradient(circle, rgba(255, 191, 102, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(226, 116, 42, 0.46) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 214, 140, 0.5) 0 1px, transparent 2px);
  background-size: 240px 200px, 320px 270px, 180px 220px;
  background-position: 18% 82%, 74% 64%, 46% 90%;
  opacity: 0.22;
  transform: translate3d(calc(var(--parallax-x) * 70px), calc(var(--parallax-y) * 40px), 0);
}

/* Cinematic vignette: bright candle core at top, deep falloff to edges and base */
.scene-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 6%, rgba(241, 175, 84, 0.1) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 8%, transparent 0%, rgba(5, 3, 2, 0.16) 46%, rgba(4, 2, 1, 0.96) 100%),
    linear-gradient(180deg, rgba(5, 3, 2, 0.52) 0%, rgba(5, 3, 2, 0.04) 40%, rgba(4, 2, 1, 0.88) 100%);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(210, 148, 70, 0.24);
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.92), rgba(9, 6, 4, 0.56));
  backdrop-filter: blur(18px);
}

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

.logo,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header-logo-img,
.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(230, 167, 86, 0.68);
  box-shadow: 0 0 22px rgba(214, 132, 43, 0.23);
}

.logo-lockup,
.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text,
.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: var(--accent-amber);
  text-transform: uppercase;
}

.logo-subtext,
.footer-brand small {
  margin-top: 7px;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: rgba(236, 210, 171, 0.62);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 22px);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(245, 231, 211, 0.82);
}

.nav a {
  position: relative;
  padding: 7px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-amber), transparent);
  transition: width 220ms ease, left 220ms ease;
}

.nav a:hover {
  color: var(--accent-amber);
}

.nav a:hover::after {
  left: 0;
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.lang-select {
  height: 38px;
  color: var(--text-main);
  background: rgba(10, 7, 5, 0.44);
  border: 1px solid rgba(210, 148, 70, 0.28);
  border-radius: 2px;
  padding: 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.lang-select option {
  color: var(--text-main);
  background: #120d08;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--accent-amber);
  background: rgba(13, 9, 6, 0.48);
  border: 1px solid rgba(210, 148, 70, 0.28);
  border-radius: 2px;
  cursor: pointer;
}

.cart-btn,
.cart-btn.icon-btn {
  position: relative;
  /* badge must escape the button frame — the shared .icon-btn rule sets
     overflow:hidden + clip-path, which was clipping the badge. */
  overflow: visible;
  clip-path: none;
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 5px;
  color: #2a1607;
  background:
    linear-gradient(180deg, rgba(255, 244, 198, 0.9), transparent 42%),
    linear-gradient(135deg, #cf924c 0%, #f4d089 50%, #b5712f 100%);
  border: 1px solid rgba(110, 62, 23, 0.85);
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 0 rgba(255, 240, 200, 0.4);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.mobile-menu-btn {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 90px;
}

/* Bottom fade so the hero dissolves seamlessly into the first section */
.hero-section::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(4, 2, 1, 0.92));
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-image-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 2, 1, 0.92) 0%, rgba(4, 2, 1, 0.66) 30%, rgba(4, 2, 1, 0.08) 56%, rgba(4, 2, 1, 0.18) 100%),
    radial-gradient(ellipse 60% 70% at 78% 42%, rgba(226, 116, 42, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(4, 2, 1, 0.28), rgba(4, 2, 1, 0.12) 52%, rgba(4, 2, 1, 0.9));
}

.hero-image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) brightness(1.1) contrast(1.04);
  transform: translate3d(calc(var(--parallax-x) * 22px), calc(var(--parallax-y) * 12px), 0) scale(1.05);
  will-change: transform;
}

.hero-image-layer picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 700px;
  padding-top: 26px;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 8px 16px 8px 14px;
  color: var(--accent-amber);
  border: 1px solid rgba(200, 149, 76, 0.36);
  background: linear-gradient(180deg, rgba(241, 199, 123, 0.08), rgba(10, 6, 4, 0.4));
  font-family: var(--font-heading);
  font-size: clamp(0.74rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(241, 199, 123, 0.06);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.hero-mark-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}

.hero-copy h1 {
  max-width: 800px;
  margin-bottom: 24px;
  background: linear-gradient(176deg, #fff1d4 0%, #f3cd8d 42%, #d79a50 78%, #b5712f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f6dfb8;
  font-size: clamp(3.6rem, 8vw, 8.25rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.7)) drop-shadow(0 2px 0 rgba(255, 229, 180, 0.12));
}

.hero-description {
  max-width: 600px;
  margin-bottom: 36px;
  color: rgba(244, 232, 214, 0.86);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.55vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.005em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-note {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(238, 200, 142, 0.78);
  font-family: var(--font-script);
  font-size: clamp(1.04rem, 1.18vw, 1.26rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent-amber);
  border: 1px solid rgba(222, 157, 76, 0.48);
  border-radius: 50%;
  background: rgba(8, 5, 3, 0.42);
  transform: translateX(-50%);
}

.button-brass,
.button-brass-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 27px;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-brass {
  color: #2a1607;
  border: 1px solid #6e3e17;
  background:
    linear-gradient(180deg, rgba(255, 244, 198, 0.82), transparent 34%),
    linear-gradient(180deg, transparent 64%, rgba(76, 36, 11, 0.4) 100%),
    linear-gradient(135deg, #8d4b1b 0%, #cf924c 38%, #f4d089 50%, #c07c34 64%, #91501f 100%);
  text-shadow: 0 1px 0 rgba(255, 240, 200, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -9px 20px rgba(76, 36, 11, 0.42),
    0 14px 34px rgba(199, 104, 29, 0.26),
    0 0 0 1px rgba(0, 0, 0, 0.2);
}

.button-brass-outline {
  color: var(--accent-amber);
  border: 1px solid rgba(222, 157, 76, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 206, 127, 0.1), rgba(15, 8, 5, 0.52));
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 163, 0.18),
    inset 0 0 22px rgba(224, 142, 50, 0.08);
}

.button-brass:hover,
.button-brass-outline:hover {
  transform: translateY(-2px);
}

.button-brass:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -9px 20px rgba(76, 36, 11, 0.34),
    0 20px 44px rgba(220, 148, 62, 0.4),
    0 0 30px rgba(241, 199, 123, 0.22);
}

.button-brass:active,
.button-brass-outline:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 10px rgba(50, 24, 8, 0.5),
    0 6px 16px rgba(199, 104, 29, 0.2);
}

.button-brass-outline:hover {
  color: #fff3d7;
  border-color: rgba(241, 199, 123, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 206, 127, 0.16), rgba(20, 11, 6, 0.5));
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 163, 0.24),
    0 0 26px rgba(224, 142, 50, 0.22);
}

.section {
  position: relative;
  padding: clamp(56px, 7vw, 104px) 0;
  scroll-margin-top: 84px;
}

/* Sections breathe on top of the global scene: only a soft tonal wash,
   no hard block backgrounds, so the page reads as one continuous room. */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 4, 2, 0) 0%, rgba(6, 4, 2, 0.34) 50%, rgba(6, 4, 2, 0) 100%);
  pointer-events: none;
}

/* Alternating sections get a faint warm or cool cast for depth rhythm */
.section:nth-of-type(even)::before {
  background:
    linear-gradient(180deg, rgba(6, 4, 2, 0) 0%, rgba(20, 12, 7, 0.4) 50%, rgba(6, 4, 2, 0) 100%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(181, 102, 42, 0.06), transparent 70%);
}

/* Hairline brass seam between sections, like inlaid trim in dark wood */
.section + .section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 80px, 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(200, 149, 76, 0.28) 22%, rgba(241, 199, 123, 0.42) 50%, rgba(200, 149, 76, 0.28) 78%, transparent);
  pointer-events: none;
}

.ornate-panel {
  position: relative;
  border: 1px solid rgba(200, 149, 76, 0.4);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 219, 158, 0.07), transparent 18%),
    linear-gradient(180deg, rgba(28, 18, 11, 0.78), rgba(10, 6, 4, 0.72)),
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(181, 102, 42, 0.1), transparent 60%);
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 162, 0.12),
    inset 0 0 0 1px rgba(255, 209, 139, 0.05),
    inset 0 -30px 72px rgba(0, 0, 0, 0.4),
    0 26px 72px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px) saturate(1.18);
}

.ornate-panel::before,
.ornate-panel::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
  border-color: rgba(237, 175, 88, 0.64);
}

.ornate-panel::before {
  top: 8px;
  left: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.ornate-panel::after {
  right: 8px;
  bottom: 8px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--accent-amber);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-amber));
}

.section-heading:not(.align-left) .section-kicker::after {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-amber), transparent);
}

.section-heading h2,
.story-copy h2,
.order-panel h2 {
  background: linear-gradient(178deg, #fbe6bd 0%, #f2d19b 46%, #cf9a52 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f2d19b;
  font-size: clamp(2.2rem, 4.4vw, 4.65rem);
  line-height: 0.99;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-heading p,
.story-copy p,
.order-panel p {
  color: rgba(244, 232, 214, 0.8);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.25vw, 1.28rem);
  font-weight: 500;
  line-height: 1.6;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.story-copy {
  padding: clamp(28px, 4vw, 56px);
}

.story-copy p {
  max-width: 610px;
}

.story-body {
  display: grid;
  gap: 0.72rem;
  max-width: 610px;
}

.story-body p {
  color: rgba(244, 232, 214, 0.72);
  font-size: 0.86rem;
  line-height: 1.58;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.meta-row span {
  padding: 8px 12px;
  color: rgba(246, 225, 196, 0.82);
  border: 1px solid rgba(222, 157, 76, 0.24);
  background: rgba(7, 4, 3, 0.36);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-scene {
  min-height: 420px;
  overflow: hidden;
}

.story-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06);
}

.process-grid,
.product-grid,
.reason-grid {
  display: grid;
  gap: 18px;
}

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

.process-card {
  min-height: 270px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}

.footer-line svg,
.footer-emblem svg {
  color: var(--accent-amber);
  flex: 0 0 auto;
}

.process-index {
  margin-bottom: auto;
  background: linear-gradient(180deg, rgba(241, 199, 123, 0.5), rgba(181, 102, 42, 0.18));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(228, 159, 75, 0.34);
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 0.85;
}

.process-card h3,
.reason-card h3,
.product-info h3 {
  margin: 18px 0 9px;
  color: #f1c77b;
  font-size: 1.22rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-card p,
.reason-card p,
.product-desc {
  color: rgba(241, 226, 205, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.catalog-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: 26px;
}

.catalog-stamp {
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
  color: rgba(241, 199, 123, 0.86);
  border: 1px solid rgba(222, 157, 76, 0.48);
  border-radius: 50%;
  background: rgba(8, 5, 3, 0.48);
  font-family: var(--font-heading);
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 32px rgba(216, 132, 42, 0.12), 0 0 42px rgba(216, 132, 42, 0.12);
}

.catalog-stamp strong {
  font-size: 1.18rem;
  line-height: 1;
}

.catalog-stamp span {
  font-size: 0.64rem;
}

.catalog-showcase {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(240px, 28vw, 390px);
  margin: clamp(-18px, -1.4vw, -8px) 0 -58px;
  pointer-events: none;
  isolation: isolate;
  transform: translateY(32px);
}

.catalog-showcase::before {
  content: '';
  position: absolute;
  inset: 16% 4% 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 52% 72%, rgba(216, 132, 42, 0.24), transparent 58%),
    radial-gradient(ellipse at 50% 35%, rgba(241, 199, 123, 0.12), transparent 44%);
  filter: blur(18px);
  opacity: 0.8;
}

.catalog-showcase::after {
  content: '';
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: -28px;
  z-index: -1;
  height: 38%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(198, 132, 55, 0.16) 18%, rgba(241, 199, 123, 0.26) 50%, rgba(198, 132, 55, 0.16) 82%, transparent 100%) top / 100% 1px no-repeat,
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.44) 34%, transparent 72%),
    radial-gradient(ellipse at center, rgba(216, 132, 42, 0.13), transparent 56%);
  filter: blur(12px);
  opacity: 0.92;
}

.catalog-showcase img {
  display: block;
  width: min(103%, 710px);
  height: auto;
  max-height: clamp(270px, 31vw, 430px);
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.91;
  filter:
    brightness(0.98)
    contrast(1.07)
    saturate(0.94)
    drop-shadow(0 28px 46px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 22px rgba(216, 132, 42, 0.1));
}

.subsection-title {
  margin: 0 0 14px;
  color: #f2d19b;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin: 18px 0 34px;
  padding: 18px;
}

.category-filter-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  gap: 10px;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid rgba(218, 157, 78, 0.18);
  border-radius: 10px;
  background: rgba(8, 5, 3, 0.3);
  line-height: 1.3;
}

.category-filter-link:hover {
  color: #ffe7ad;
  border-color: rgba(241, 199, 123, 0.38);
  background: rgba(18, 11, 6, 0.52);
}

.category-filter-all {
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-filter-button {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-filter-button.active,
.category-filter-button.active-parent {
  border-color: rgba(241, 199, 123, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 219, 158, 0.12), transparent 22%),
    rgba(26, 15, 8, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 226, 163, 0.08);
}

.category-filter-button.active-parent {
  border-style: dashed;
}

.category-children-section {
  margin: 24px 0 34px;
  padding: 20px;
}

.category-children-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.category-children-heading h3 {
  background: linear-gradient(178deg, #fbe6bd 0%, #f2d19b 46%, #cf9a52 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f2d19b;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: 0.02em;
}

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

.category-child-link {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(218, 157, 78, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 219, 158, 0.06), transparent 20%),
    rgba(8, 5, 3, 0.34);
}

.category-child-link:hover {
  border-color: rgba(241, 199, 123, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 219, 158, 0.08), transparent 20%),
    rgba(18, 11, 6, 0.56);
}

.category-child-name {
  color: #f7e2bc;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.category-child-description {
  color: rgba(241, 226, 205, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -10px;
  margin-bottom: clamp(48px, 7vw, 90px);
}

.product-card {
  overflow: hidden;
}

.product-image-container {
  position: relative;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(218, 157, 78, 0.2);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms ease, filter 360ms ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--accent-amber);
  border: 1px solid rgba(222, 157, 76, 0.46);
  border-radius: 50%;
  background: rgba(7, 4, 3, 0.7);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 11px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.slider-dot.active {
  background: var(--accent-amber);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  color: #1a1007;
  background: rgba(241, 199, 123, 0.86);
  border: 1px solid rgba(255, 239, 197, 0.42);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  min-height: 48px;
  margin-top: 0;
  font-size: 1.02rem;
}

.product-price {
  margin: 18px 0;
  color: var(--accent-amber);
  font-family: var(--font-heading);
  font-size: 1.36rem;
}

.product-price span {
  display: block;
  margin-top: 4px;
  color: rgba(241, 226, 205, 0.54);
  font-family: var(--font-text);
  font-size: 0.72rem;
}

.full-width {
  width: 100%;
}

.price-list-table-container {
  position: relative;
  padding: clamp(24px, 4vw, 46px);
}

.price-list-header h3 {
  color: #f2d19b;
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-list-table {
  display: grid;
  gap: 10px;
}

.price-list-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 10px 12px;
  border: 1px solid rgba(218, 157, 78, 0.16);
  background: rgba(8, 5, 3, 0.36);
  transition: border-color 180ms ease, background 180ms ease;
}

.price-list-row:hover {
  border-color: rgba(241, 199, 123, 0.42);
  background: rgba(22, 13, 7, 0.54);
}

.price-list-row.active {
  border-color: rgba(241, 199, 123, 0.5);
  background: rgba(24, 14, 7, 0.62);
}

.price-list-thumb-button {
  display: block;
  width: 58px;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.price-list-thumb {
  width: 58px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(218, 157, 78, 0.28);
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.price-list-row:hover .price-list-thumb,
.price-list-row.active .price-list-thumb,
.price-list-thumb-button:focus-visible .price-list-thumb {
  border-color: rgba(241, 199, 123, 0.6);
  filter: brightness(1.12) saturate(1.08);
  transform: scale(1.04);
}

.price-list-info h4 {
  margin: 0 0 4px;
  color: rgba(246, 225, 196, 0.92);
  font-family: var(--font-text);
  font-size: 0.96rem;
  font-weight: 600;
}

.price-list-unit {
  color: rgba(241, 226, 205, 0.48);
  font-size: 0.78rem;
}

.price-list-price-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-list-price {
  color: var(--accent-amber);
  font-weight: 700;
  white-space: nowrap;
}

.price-list-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 11px;
  color: var(--accent-amber);
  border: 1px solid rgba(222, 157, 76, 0.34);
  background: rgba(7, 4, 3, 0.26);
  cursor: pointer;
}

.price-list-preview-layer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  isolation: isolate;
  pointer-events: none;
}

.price-list-preview-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(241, 199, 123, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(3px);
  opacity: 1;
}

.price-list-preview {
  position: relative;
  z-index: 1;
  width: min(520px, 88vw);
  max-height: min(760px, calc(100vh - 128px));
  overflow: hidden;
  border: 1px solid rgba(241, 199, 123, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 11, 7, 0.92), rgba(7, 4, 3, 0.95)),
    var(--texture);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.08),
    0 30px 90px rgba(0, 0, 0, 0.78),
    0 0 42px rgba(241, 199, 123, 0.2);
  pointer-events: auto;
}

.price-list-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(241, 199, 123, 0.24);
}

.price-list-preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: rgba(255, 231, 173, 0.78);
  border: 1px solid rgba(241, 199, 123, 0.32);
  border-radius: 50%;
  background: rgba(6, 4, 3, 0.88);
  box-shadow:
    inset 0 0 10px rgba(241, 199, 123, 0.06),
    0 8px 18px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.price-list-preview-close:hover {
  color: #ffe7ad;
  border-color: rgba(255, 226, 163, 0.56);
  background: rgba(16, 9, 5, 0.94);
  box-shadow:
    inset 0 0 12px rgba(241, 199, 123, 0.1),
    0 0 18px rgba(241, 199, 123, 0.1);
  transform: scale(1.05);
}

.price-list-preview-close:active {
  transform: scale(0.94);
}

.price-list-preview-nav {
  position: absolute;
  top: auto;
  bottom: calc(42% + 12px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 231, 173, 0.78);
  border: 1px solid rgba(241, 199, 123, 0.3);
  border-radius: 50%;
  background: rgba(6, 4, 3, 0.88);
  box-shadow:
    inset 0 0 12px rgba(241, 199, 123, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.price-list-preview-nav.prev {
  left: 14px;
}

.price-list-preview-nav.next {
  right: 14px;
}

.price-list-preview-nav:hover {
  color: #ffe7ad;
  border-color: rgba(255, 226, 163, 0.56);
  background: rgba(16, 9, 5, 0.94);
  box-shadow:
    inset 0 0 14px rgba(241, 199, 123, 0.1),
    0 0 18px rgba(241, 199, 123, 0.1);
  transform: scale(1.06);
}

.price-list-preview-nav:active {
  transform: scale(0.94);
}

.price-list-preview-add {
  width: calc(100% - 40px);
  margin: 14px 20px 0;
  min-height: 42px;
}

.price-list-preview-copy {
  padding: 18px 20px 20px;
}

.price-list-preview-copy span,
.price-list-mobile-preview span {
  display: block;
  margin-bottom: 8px;
  color: rgba(241, 199, 123, 0.74);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-list-preview-copy h4 {
  margin: 0 0 10px;
  color: #ffe4ad;
  font-family: var(--font-heading);
  font-size: 1.04rem;
  letter-spacing: 0.06em;
}

.price-list-preview-copy p,
.price-list-mobile-preview p {
  margin: 0;
  color: rgba(241, 226, 205, 0.74);
  line-height: 1.55;
}

.price-list-preview-copy small {
  display: block;
  margin-top: 12px;
  color: rgba(241, 199, 123, 0.82);
  font-weight: 700;
}

.price-list-mobile-preview {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.95fr;
  grid-template-rows: 250px 250px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(218, 157, 78, 0.3);
  background: rgba(8, 5, 3, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.gallery-card-1 {
  grid-row: span 2;
}

.gallery-card-4 {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) contrast(1.04) brightness(1.05);
  transform: scale(1.01);
  transition: transform 620ms cubic-bezier(0.18, 0.8, 0.24, 1), filter 480ms ease;
}

.gallery-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.06) contrast(1.06) brightness(1);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 3, 2, 0.82));
}

.gallery-card figcaption {
  position: absolute;
  left: 20px;
  bottom: 17px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f6dcae;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  transform: translateY(4px);
  opacity: 0.92;
  transition: transform 360ms ease, opacity 360ms ease;
}

.gallery-card figcaption::before {
  content: '';
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-amber), transparent);
}

.gallery-card:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

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

.reason-card {
  display: flex;
  gap: 16px;
  padding: 34px 30px 28px 48px;
  border: 1px solid rgba(218, 157, 78, 0.26);
  background:
    linear-gradient(90deg, rgba(22, 13, 7, 0.58), rgba(22, 13, 7, 0.2)),
    rgba(8, 5, 3, 0.22);
}

.reason-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.order-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(34px, 5vw, 66px);
  background:
    linear-gradient(90deg, rgba(14, 8, 4, 0.92), rgba(20, 12, 7, 0.52) 70%, rgba(20, 12, 7, 0.3)),
    radial-gradient(ellipse 60% 90% at 100% 50%, rgba(226, 116, 42, 0.2), transparent 60%),
    url("/static/assets/pirate-tavern-bg.1b8e7fc81121.webp");
  background-position: center;
  background-size: cover;
}

.order-panel p {
  max-width: 680px;
}

.order-button {
  flex: 0 0 auto;
}

.footer {
  position: relative;
  padding: 18px 0 36px;
  border-top: 1px solid rgba(210, 148, 70, 0.24);
  background:
    linear-gradient(180deg, rgba(9, 6, 4, 0.92), rgba(9, 6, 4, 0.72)),
    #070503;
}

.footer-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.75fr;
  gap: 30px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer-text {
  margin: 12px 0 0;
  color: rgba(241, 226, 205, 0.68);
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-col-title {
  margin-bottom: 14px;
  color: var(--accent-amber);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(241, 226, 205, 0.68);
}

.footer-links a:hover {
  color: var(--accent-amber);
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--accent-amber);
  border: 1px solid rgba(222, 157, 76, 0.28);
  clip-path: none;
  background: rgba(8, 5, 3, 0.32);
}

.social-row a::before {
  display: none;
}

.social-row a::after {
  display: none;
}

.footer-emblem {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--accent-amber);
}

.footer-emblem div {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  font-family: var(--font-heading);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-emblem span {
  font-size: 0.78rem;
}

.footer-bottom {
  margin: 18px 0 0;
  color: rgba(241, 226, 205, 0.46);
  text-align: center;
  font-size: 0.82rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.66);
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.cart-overlay.open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 91;
  display: flex;
  flex-direction: column;
  width: min(430px, 100vw);
  height: 100%;
  color: var(--text-main);
  border-left: 1px solid rgba(218, 157, 78, 0.34);
  background:
    linear-gradient(180deg, rgba(20, 13, 8, 0.96), rgba(8, 5, 3, 0.96)),
    url("/static/assets/pirate-tavern-bg.1b8e7fc81121.webp");
  background-size: cover;
  box-shadow: -22px 0 70px rgba(0, 0, 0, 0.6);
  visibility: hidden;
  transform: translateX(105%);
  transition: transform 240ms ease, visibility 0s linear 240ms;
}

.cart-drawer.open {
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0s;
}

.cart-header,
.cart-footer {
  padding: 22px;
  border-color: rgba(218, 157, 78, 0.22);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(218, 157, 78, 0.22);
}

.cart-header h3 {
  margin: 0;
  color: var(--accent-amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.close-btn {
  display: grid;
  place-items: center;
  color: var(--accent-amber);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  overflow: auto;
  padding: 22px;
}

.cart-empty {
  color: rgba(241, 226, 205, 0.62);
}

.cart-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid rgba(218, 157, 78, 0.18);
  background: rgba(8, 5, 3, 0.5);
}

.cart-item-img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 1px solid rgba(218, 157, 78, 0.28);
}

.cart-item-info h4 {
  margin: 0 0 5px;
  font-family: var(--font-text);
  font-size: 0.94rem;
}

.cart-item-info p {
  margin: 0 0 9px;
  color: var(--accent-amber);
  font-weight: 700;
}

.cart-item-info p span {
  display: block;
  margin-top: 2px;
  color: rgba(241, 226, 205, 0.5);
  font-size: 0.72rem;
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cart-item-actions button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--accent-amber);
  border: 1px solid rgba(218, 157, 78, 0.24);
  background: rgba(7, 4, 3, 0.34);
  cursor: pointer;
}

.cart-item-quantity {
  min-width: 78px;
  color: rgba(241, 226, 205, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
}

.cart-item-quantity small {
  display: block;
  color: rgba(241, 226, 205, 0.44);
  font-size: 0.66rem;
  font-weight: 600;
}

.delete-btn {
  margin-left: auto;
}

.cart-footer {
  border-top: 1px solid rgba(218, 157, 78, 0.22);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--accent-amber);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.checkout-btn {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-position 260ms ease;
}

.checkout-btn::after {
  content: '' !important;
  position: absolute;
  inset: -2px auto -2px -46%;
  display: block !important;
  z-index: 1;
  width: 38%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 244, 204, 0.04) 18%,
    rgba(255, 244, 204, 0.55) 50%,
    rgba(255, 214, 140, 0.1) 78%,
    transparent 100%
  );
  opacity: 0;
  transform: skewX(-18deg) translateX(0);
}

.checkout-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(255, 221, 152, 0.78);
  filter: saturate(1.08) contrast(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -8px 18px rgba(76, 36, 11, 0.28),
    0 18px 38px rgba(220, 148, 62, 0.28),
    0 0 28px rgba(241, 199, 123, 0.2);
}

.checkout-btn:hover:not(:disabled)::after {
  animation: checkoutButtonShine 760ms ease;
}

.checkout-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 12px rgba(76, 36, 11, 0.38),
    0 8px 20px rgba(220, 148, 62, 0.18);
}

.checkout-btn:disabled::after {
  content: none !important;
  display: none !important;
}

/* Royal smokehouse frame system */
.logo,
.header-logo-img,
.logo-text,
.catalog-stamp,
.footer-seal {
  transition: transform 240ms ease, filter 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.logo:hover {
  color: var(--accent-amber);
}

.logo:hover .header-logo-img {
  transform: scale(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 224, 162, 0.42),
    0 0 26px rgba(241, 199, 123, 0.38),
    0 0 54px rgba(181, 106, 42, 0.26);
}

.logo:hover .logo-text {
  color: #ffe3aa;
  text-shadow: 0 0 18px rgba(241, 199, 123, 0.36);
}

.button-brass,
.button-brass-outline,
.button-primary,
.price-list-add-btn,
.footer-whatsapp-btn,
.social-row a,
.icon-btn {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.button-brass::before,
.button-brass-outline::before,
.button-primary::before,
.price-list-add-btn::before,
.footer-whatsapp-btn::before,
.social-row a::before,
.icon-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 10px, rgba(255, 226, 163, 0.72) 10px, rgba(255, 226, 163, 0.72) calc(100% - 10px), transparent calc(100% - 10px)),
    linear-gradient(90deg, transparent 10px, rgba(115, 63, 24, 0.8) 10px, rgba(115, 63, 24, 0.8) calc(100% - 10px), transparent calc(100% - 10px)),
    linear-gradient(0deg, transparent 10px, rgba(255, 226, 163, 0.72) 10px, rgba(255, 226, 163, 0.72) calc(100% - 10px), transparent calc(100% - 10px)),
    linear-gradient(0deg, transparent 10px, rgba(115, 63, 24, 0.8) 10px, rgba(115, 63, 24, 0.8) calc(100% - 10px), transparent calc(100% - 10px));
  background-size: 100% 1px, 100% 1px, 1px 100%, 1px 100%;
  background-position: top, bottom, left, right;
  background-repeat: no-repeat;
}

.button-brass::after,
.button-brass-outline::after,
.button-primary::after,
.price-list-add-btn::after,
.footer-whatsapp-btn::after,
.social-row a::after,
.icon-btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 46%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 245, 204, 0.32), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.button-brass:hover::after,
.button-brass-outline:hover::after,
.button-primary:hover::after,
.price-list-add-btn:hover::after,
.footer-whatsapp-btn:hover::after,
.social-row a:hover::after,
.icon-btn:hover::after {
  left: 118%;
}

.footer-panel {
  padding: 40px clamp(28px, 4vw, 58px);
}

.footer-brand {
  transform-origin: left center;
  transition: transform 240ms ease, filter 240ms ease;
}

.footer-brand:hover {
  transform: scale(1.035);
  filter: drop-shadow(0 0 18px rgba(241, 199, 123, 0.28));
}

.footer-brand img {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
}

.footer-line svg,
.footer-whatsapp-btn svg {
  color: currentColor;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 9px 16px;
  color: var(--accent-amber);
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 213, 139, 0.11), rgba(14, 8, 4, 0.5)),
    rgba(12, 7, 4, 0.46);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(241, 199, 123, 0.08);
}

.footer-whatsapp-btn:hover {
  color: #ffe6ae;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(241, 199, 123, 0.16), inset 0 0 20px rgba(241, 199, 123, 0.11);
}

.footer-seal,
.catalog-stamp {
  position: relative;
  border-radius: 50%;
}

.footer-seal {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(241, 199, 123, 0.5);
  background: radial-gradient(circle, rgba(241, 199, 123, 0.13), rgba(8, 5, 3, 0.44) 62%, rgba(8, 5, 3, 0.75));
  box-shadow: inset 0 0 24px rgba(241, 199, 123, 0.1), 0 0 26px rgba(241, 199, 123, 0.08);
}

.footer-seal img,
.catalog-stamp img {
  width: 74%;
  height: 74%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(241, 199, 123, 0.42);
}

.footer-seal::after,
.catalog-stamp::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(241, 199, 123, 0.26);
  border-radius: 50%;
  animation: sealPulse 3.4s ease-in-out infinite;
}

.footer-seal:hover,
.catalog-stamp:hover {
  transform: scale(1.045);
  box-shadow: inset 0 0 32px rgba(241, 199, 123, 0.16), 0 0 34px rgba(241, 199, 123, 0.18);
}

.catalog-stamp {
  gap: 9px;
  overflow: visible;
}

.catalog-stamp span {
  color: rgba(241, 199, 123, 0.86);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.gallery-card,
.reason-card,
.price-list-row {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.gallery-card:hover,
.reason-card:hover,
.price-list-row:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 199, 123, 0.52);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 22px rgba(216, 132, 42, 0.1);
}

.lang-ru .hero-copy h1,
.lang-ru .section-heading h2,
.lang-ru .story-copy h2,
.lang-ru .order-panel h2 {
  font-family: var(--font-heading-cyrillic);
  font-size: clamp(2.45rem, 4.85vw, 5.45rem);
  line-height: 0.96;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.lang-ru .story-copy h2 {
  font-size: clamp(2.25rem, 4.1vw, 4.25rem);
}

.lang-ru .hero-copy h1 {
  max-width: 640px;
  font-size: clamp(3.1rem, 6.1vw, 6.7rem);
}

.lang-ru .section-kicker,
.lang-ru .hero-mark,
.lang-ru .nav {
  letter-spacing: 0.1em;
}

.lang-ru .meta-row span,
.lang-ru .button-brass,
.lang-ru .button-brass-outline,
.lang-ru .footer-whatsapp-btn {
  letter-spacing: 0.09em;
}

@keyframes sealPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.38;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.78;
  }
}

@keyframes checkoutButtonShine {
  0% {
    opacity: 0;
    transform: skewX(-18deg) translateX(0);
  }
  18% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    transform: skewX(-18deg) translateX(430%);
  }
}

@media (max-width: 1280px) {
  .nav {
    gap: 14px;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 1180px) {
  .header-order-btn span,
  .logo-subtext {
    display: none;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(218, 157, 78, 0.34);
    background: rgba(12, 8, 5, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav.nav-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(218, 157, 78, 0.12);
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

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

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

@media (max-width: 920px) {
  .story-grid,
  .why-grid,
  .catalog-intro,
  .order-panel {
    grid-template-columns: 1fr;
  }

  .order-panel {
    display: grid;
  }

  .catalog-stamp {
    display: none;
  }

  .catalog-showcase {
    justify-self: center;
    width: min(100%, 680px);
    min-height: clamp(220px, 54vw, 360px);
    margin: -10px auto -6px;
    transform: translateY(8px);
  }

  .catalog-showcase img {
    width: min(106%, 660px);
    max-height: clamp(250px, 62vw, 380px);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gallery-card-1,
  .gallery-card-4 {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .header-content {
    min-height: 72px;
  }

  .header-logo-img {
    width: 44px;
    height: 44px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .lang-select {
    display: none;
  }

  .category-filter {
    margin: 16px 0 28px;
    padding: 14px;
  }

  .category-children-section {
    padding: 16px;
  }

  .category-children-list {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 92svh;
    padding: 104px 0 70px;
  }

  .hero-image-layer img {
    object-position: 70% center;
  }

  .hero-image-layer::before {
    background:
      linear-gradient(90deg, rgba(5, 3, 2, 0.92) 0%, rgba(5, 3, 2, 0.74) 52%, rgba(5, 3, 2, 0.46) 100%),
      linear-gradient(180deg, rgba(5, 3, 2, 0.2), rgba(5, 3, 2, 0.4) 55%, rgba(5, 3, 2, 0.97));
  }

  /* Lighten ambient load on phones: drop embers, calm the smoke */
  .scene-layer-embers {
    display: none;
  }

  .scene-layer-smoke {
    animation: none;
    opacity: 0.5;
  }

  .scene-layer-mid,
  .scene-layer-far,
  .scene-layer-smoke {
    backdrop-filter: none;
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 17vw, 4.5rem);
  }

  .hero-mark,
  .hero-note {
    letter-spacing: 0.12em;
  }

  .hero-mark {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px 14px 9px 13px;
    transform: translateY(-20px);
  }

  .hero-mark svg {
    flex: 0 0 auto;
    margin-top: 2px;
  }

  .hero-mark-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    line-height: 1.05;
    white-space: nowrap;
  }

  .hero-mark-separator {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-brass,
  .button-brass-outline {
    width: 100%;
    padding-inline: 18px;
  }

  .process-grid,
  .product-grid,
  .reason-grid,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .catalog-showcase {
    min-height: clamp(190px, 58vw, 290px);
    margin: -4px -10px 2px;
    transform: translateY(4px);
  }

  .catalog-showcase::after {
    bottom: -14px;
    height: 28%;
    opacity: 0.74;
  }

  .catalog-showcase::before {
    inset: 18% 0 2%;
    opacity: 0.58;
  }

  .catalog-showcase img {
    width: min(118%, 540px);
    max-height: clamp(230px, 66vw, 320px);
    filter:
      brightness(0.96)
      contrast(1.07)
      saturate(0.94)
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.62))
      drop-shadow(0 0 14px rgba(216, 132, 42, 0.08));
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-card-1,
  .gallery-card-4 {
    grid-column: auto;
  }

  .price-list-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .price-list-thumb-button,
  .price-list-thumb {
    width: 52px;
    height: 52px;
  }

  .price-list-price-action {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .price-list-add-btn span {
    display: none;
  }

  .price-list-preview-layer {
    padding: 16px;
  }

  .price-list-preview {
    width: min(356px, 92vw);
    max-height: calc(100vh - 112px);
  }

  .price-list-mobile-preview.open {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: -2px 0 8px;
    padding: 12px;
    border: 1px solid rgba(241, 199, 123, 0.26);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(18, 11, 7, 0.78), rgba(7, 4, 3, 0.72)),
      var(--texture);
    box-shadow:
      inset 0 0 0 1px rgba(255, 226, 163, 0.06),
      0 14px 32px rgba(0, 0, 0, 0.28);
  }

  .price-list-mobile-preview img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(241, 199, 123, 0.3);
  }

  .price-list-mobile-preview strong {
    display: block;
    margin-bottom: 7px;
    color: #ffe4ad;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
  }

  .price-list-mobile-preview p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .story-scene {
    min-height: 270px;
  }
}

@media (max-width: 340px) {
  .logo-lockup {
    display: none;
  }
}

/* Final polish: clean frames, quiet buttons, no moving glare */
.ornate-panel {
  isolation: isolate;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

/* Inner concentric line of the double-line rounded frame (no corner flourish) */
.ornate-panel::before {
  content: '';
  position: absolute;
  inset: 5px;
  width: auto;
  height: auto;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(232, 178, 102, 0.2);
  border-radius: 7px;
  opacity: 0.76;
  transition: opacity 240ms ease, border-color 240ms ease;
}

.ornate-panel:hover::before {
  opacity: 0.84;
  border-color: rgba(232, 178, 102, 0.26);
}

.ornate-panel::after {
  content: none !important;
  display: none !important;
}

.ornate-panel > * {
  position: relative;
  z-index: 2;
}

.ornate-panel:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 199, 123, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(255, 224, 162, 0.09),
    inset 0 -26px 70px rgba(0, 0, 0, 0.34),
    0 22px 66px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(241, 199, 123, 0.14);
}

/* Product photos sit full-bleed, so lift the brass frame + corners above the
   image to read as a framed tavern plaque rather than a plain photo card. */
.product-card.ornate-panel::before {
  inset: 7px;
  z-index: 3;
  border-radius: 9px;
  border-color: rgba(232, 178, 102, 0.42);
}

.product-card .badge {
  z-index: 4;
}

.button-brass,
.button-brass-outline,
.button-primary,
.price-list-add-btn,
.footer-whatsapp-btn {
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
}

.button-brass::before,
.button-brass-outline::before,
.button-primary::before,
.price-list-add-btn::before,
.footer-whatsapp-btn::before {
  inset: 3px;
  opacity: 0.68;
  background:
    linear-gradient(rgba(255, 226, 163, 0.64) 0 0) top 0 left 12px / calc(100% - 24px) 1px no-repeat,
    linear-gradient(rgba(108, 58, 21, 0.7) 0 0) bottom 0 left 12px / calc(100% - 24px) 1px no-repeat,
    linear-gradient(rgba(255, 226, 163, 0.5) 0 0) left 0 top 12px / 1px calc(100% - 24px) no-repeat,
    linear-gradient(rgba(108, 58, 21, 0.7) 0 0) right 0 top 12px / 1px calc(100% - 24px) no-repeat;
}

.button-brass::after,
.button-brass-outline::after,
.button-primary::after,
.price-list-add-btn::after,
.footer-whatsapp-btn::after,
.social-row a::after,
.icon-btn::after {
  content: none !important;
  display: none !important;
}

.icon-btn,
.social-row a {
  clip-path: none;
  border-radius: 2px;
}

.header-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 8px;
  height: 40px;
  min-width: 40px;
  padding: 0 13px;
  color: rgba(241, 199, 123, 0.9);
  border: 1px solid rgba(222, 157, 76, 0.34);
  background: rgba(13, 9, 6, 0.46);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 0 14px rgba(241, 199, 123, 0.06);
  clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-order-btn svg {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.header-order-btn:hover {
  color: #ffe6ae;
  border-color: rgba(241, 199, 123, 0.58);
  background: rgba(18, 12, 7, 0.6);
  box-shadow: 0 0 18px rgba(241, 199, 123, 0.13), inset 0 0 16px rgba(241, 199, 123, 0.09);
  transform: translateY(-1px);
}

.catalog-stamp {
  width: 172px;
  height: 172px;
  gap: 0;
  padding: 20px;
  overflow: visible;
  background:
    radial-gradient(circle, rgba(241, 199, 123, 0.11), rgba(8, 5, 3, 0.48) 58%, rgba(8, 5, 3, 0.78)),
    rgba(9, 6, 4, 0.42);
  border: 1px solid rgba(241, 199, 123, 0.38);
  box-shadow: inset 0 0 30px rgba(241, 199, 123, 0.11), 0 0 30px rgba(241, 199, 123, 0.09);
}

.catalog-stamp::before {
  content: '';
  position: absolute;
  inset: 17px;
  width: auto;
  height: auto;
  pointer-events: none;
  border: 1px solid rgba(241, 199, 123, 0.24);
  border-radius: 50%;
  background: none;
  opacity: 1;
}

.catalog-stamp::after {
  content: '';
  position: absolute;
  inset: -7px;
  display: block !important;
  border: 1px solid rgba(241, 199, 123, 0.22);
  border-radius: 50%;
  animation: sealPulse 3.4s ease-in-out infinite;
}

.catalog-stamp img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(241, 199, 123, 0.48);
  transform: none;
  filter: drop-shadow(0 0 16px rgba(241, 199, 123, 0.18));
}

.catalog-stamp span {
  display: none;
}

.catalog-stamp:hover {
  transform: scale(1.035);
  box-shadow: inset 0 0 30px rgba(241, 199, 123, 0.14), 0 0 32px rgba(241, 199, 123, 0.16);
}

.footer-panel {
  grid-template-columns: minmax(250px, 1.15fr) minmax(150px, 0.68fr) minmax(240px, 1fr) minmax(230px, 0.92fr);
}

.footer-feature {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
  color: var(--accent-amber);
}

.footer-feature img {
  width: min(100%, 270px);
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: 54% 52%;
  border: 1px solid rgba(241, 199, 123, 0.4);
  background: rgba(8, 5, 3, 0.68);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.42), 0 18px 34px rgba(0, 0, 0, 0.28), 0 0 26px rgba(241, 199, 123, 0.08);
  filter: saturate(0.94) contrast(1.05);
}

.footer-feature div {
  display: grid;
  gap: 4px;
  font-family: var(--font-heading);
  letter-spacing: 0.18em;
}

.footer-feature strong {
  font-size: 1rem;
}

.footer-feature span {
  font-family: var(--font-script);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.story-grid {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(18px, 2.2vw, 32px);
}

.story-copy {
  min-height: clamp(460px, 42vw, 560px);
  padding: clamp(30px, 3.4vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-copy h2 {
  max-width: 440px;
  font-size: clamp(2.25rem, 3.15vw, 3.75rem);
  line-height: 1.03;
  text-wrap: balance;
}

.story-epilogue {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(244, 220, 178, 0.86);
  font-family: var(--font-script);
  font-size: clamp(1.08rem, 1.18vw, 1.26rem);
  letter-spacing: 0.01em;
  line-height: 1.38;
}

.story-copy .meta-row {
  gap: 8px;
  margin-top: 20px;
}

.story-copy .meta-row span {
  padding: 8px 11px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.story-scene {
  min-height: clamp(460px, 42vw, 560px);
  display: grid;
  align-items: stretch;
  background: #080503;
}

.story-scene img {
  position: absolute;
  inset: 0;
  z-index: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  filter: saturate(0.98) contrast(1.05) brightness(0.96);
}

.story-scene-copy {
  position: relative;
  z-index: 2;
  width: min(540px, 66%);
  margin-left: auto;
  padding: clamp(28px, 3vw, 46px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0), rgba(8, 5, 3, 0.72) 18%, rgba(8, 5, 3, 0.92));
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.82);
}

.story-scene-copy .story-body {
  max-width: 450px;
  gap: 0.72rem;
}

.story-scene-copy .story-body p {
  color: rgba(246, 231, 205, 0.82);
  font-size: 0.96rem;
  line-height: 1.54;
}

.lang-ru .story-epilogue {
  font-size: clamp(1.06rem, 1.12vw, 1.2rem);
}

.lang-ru .story-copy h2 {
  font-size: clamp(2.15rem, 2.82vw, 3.35rem);
  line-height: 1.02;
  overflow-wrap: normal;
}

.lang-ru .story-scene-copy .story-body p {
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .footer-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-feature {
    justify-items: start;
    text-align: left;
  }

  .footer-feature img {
    max-width: 300px;
  }
}

@media (max-width: 920px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    min-height: auto;
    padding: 28px 26px;
  }

  .story-scene {
    min-height: auto;
    display: block;
  }

  .story-scene img {
    position: relative;
    display: block;
    height: clamp(240px, 54vw, 330px);
    object-position: 33% center;
    filter: saturate(1) contrast(1.05) brightness(0.98);
  }

  .story-scene-copy {
    width: 100%;
    margin-left: 0;
    min-height: auto;
    padding: 34px 26px;
    background:
      linear-gradient(180deg, rgba(8, 5, 3, 0.94), rgba(8, 5, 3, 0.88));
  }

  .story-scene-copy .story-body {
    max-width: 560px;
  }

  .story-scene-copy .story-body p,
  .lang-ru .story-scene-copy .story-body p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .header-order-btn {
    width: 40px;
    padding: 0;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 54px 0;
    scroll-margin-top: 76px;
  }

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

  .footer-feature {
    justify-items: stretch;
    text-align: left;
  }

  .footer-feature img {
    width: 100%;
    max-width: none;
    aspect-ratio: 1.65;
  }

  .story-copy {
    padding: 52px 24px 46px;
  }

  .story-copy.ornate-panel,
  .story-scene.ornate-panel {
  }

  .story-copy h2 {
    font-size: clamp(1.88rem, 9.6vw, 2.65rem);
    line-height: 1.03;
  }

  .story-epilogue {
    font-size: 1.02rem;
    line-height: 1.38;
  }

  .story-scene-copy {
    min-height: auto;
    padding: 24px 24px 48px;
  }

  .story-scene img {
    height: clamp(220px, 70vw, 280px);
    object-position: 33% center;
  }

  .story-scene-copy .story-body p,
  .lang-ru .story-scene-copy .story-body p {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .story-copy .meta-row {
    gap: 8px;
    margin-top: 18px;
  }

  .story-copy .meta-row span {
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .header-actions {
    gap: 8px;
  }

  .cart-btn {
    width: 38px;
    height: 38px;
  }

  .header-order-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
  }

  .header-order-btn span {
    display: none;
  }
}

/* new2 final performance and header polish */
.scene-layer {
  will-change: auto;
}

.scene-layer-far,
.hero-image-layer img {
  will-change: transform;
}

.scene-layer-smoke {
  filter: blur(10px);
  opacity: 0.52;
}

.header {
  backdrop-filter: blur(12px);
}

.ornate-panel {
  backdrop-filter: blur(10px) saturate(1.08);
}

.cart-btn,
.cart-btn.icon-btn {
  overflow: visible;
  clip-path: none;
  border-radius: 2px;
}

.cart-badge {
  top: -5px;
  right: -5px;
  min-width: 18px;
  max-width: 30px;
  height: 18px;
  padding-inline: 5px;
}

@media (max-width: 920px) {
  .header,
  .nav,
  .cart-overlay,
  .ornate-panel {
    backdrop-filter: none;
  }

  .scene-layer-far,
  .hero-image-layer img {
    transform: none;
    will-change: auto;
  }
}

/* Reveal-on-scroll: cinematic rise + fade, staggered per grid */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(0.22, 0.7, 0.24, 1),
    transform 760ms cubic-bezier(0.22, 0.7, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.reveal-in {
  opacity: 1;
  transform: none;
}

.section:target .reveal {
  opacity: 1;
  transform: none;
}

.scroll-cue {
  animation: scrollCueFloat 2.4s ease-in-out infinite;
}

@keyframes scrollCueFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.78;
  }
  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 1;
  }
}

/* Button interaction polish: quiet brass glow, clear press feedback, no broad glare */
:is(
  .button-brass,
  .button-brass-outline,
  .button-primary,
  .price-list-add-btn,
  .footer-whatsapp-btn,
  .header-order-btn,
  .icon-btn,
  .slider-arrow,
  .close-btn,
  .cart-item-actions button,
  .social-row a,
  .lang-select
) {
  transition:
    transform 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease,
    opacity 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

:is(
  .button-brass,
  .button-brass-outline,
  .button-primary,
  .price-list-add-btn,
  .footer-whatsapp-btn,
  .header-order-btn,
  .icon-btn,
  .slider-arrow,
  .close-btn,
  .cart-item-actions button,
  .social-row a,
  .lang-select
):focus-visible {
  outline: 1px solid rgba(255, 226, 163, 0.9);
  outline-offset: 3px;
  box-shadow:
    0 0 0 3px rgba(241, 199, 123, 0.12),
    0 0 26px rgba(241, 199, 123, 0.2);
}

:is(.button-brass, .button-primary):hover:not(:disabled) {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.04);
  border-color: rgba(255, 226, 163, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -9px 20px rgba(76, 36, 11, 0.32),
    0 18px 40px rgba(220, 148, 62, 0.34),
    0 0 30px rgba(241, 199, 123, 0.22);
}

:is(.button-brass, .button-primary):active:not(:disabled) {
  transform: translateY(1px) scale(0.992);
  filter: brightness(0.96) saturate(1.02);
  box-shadow:
    inset 0 3px 14px rgba(55, 24, 7, 0.56),
    inset 0 1px 0 rgba(255, 239, 197, 0.22),
    0 7px 18px rgba(199, 104, 29, 0.18);
}

:is(.button-brass-outline, .price-list-add-btn, .footer-whatsapp-btn):hover {
  color: #ffe9b7;
  border-color: rgba(241, 199, 123, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 220, 147, 0.18), rgba(32, 17, 8, 0.54)),
    linear-gradient(90deg, rgba(241, 199, 123, 0.09), transparent 28%, rgba(241, 199, 123, 0.08));
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 163, 0.18),
    inset 0 0 24px rgba(241, 199, 123, 0.12),
    0 12px 30px rgba(0, 0, 0, 0.3),
    0 0 26px rgba(241, 199, 123, 0.2);
}

:is(.button-brass-outline, .price-list-add-btn, .footer-whatsapp-btn):active {
  transform: translateY(1px) scale(0.992);
  filter: brightness(0.95);
  box-shadow:
    inset 0 3px 14px rgba(45, 20, 6, 0.6),
    inset 0 0 18px rgba(241, 199, 123, 0.08),
    0 6px 16px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(241, 199, 123, 0.14);
}

.product-card .button-brass-outline:hover {
  color: #fff3cf;
  border-color: rgba(255, 218, 139, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 229, 159, 0.24), rgba(39, 20, 8, 0.6)),
    linear-gradient(90deg, rgba(255, 212, 127, 0.16), transparent 34%, rgba(255, 212, 127, 0.14));
  box-shadow:
    inset 0 0 0 1px rgba(255, 236, 181, 0.22),
    inset 0 0 28px rgba(241, 199, 123, 0.16),
    0 0 0 1px rgba(241, 199, 123, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(241, 199, 123, 0.28);
}

.product-card .button-brass-outline:hover svg,
.price-list-add-btn:hover svg,
.footer-whatsapp-btn:hover svg,
.header-order-btn:hover svg {
  filter: drop-shadow(0 0 7px rgba(255, 222, 150, 0.42));
}

:is(.header-order-btn, .icon-btn, .slider-arrow, .close-btn, .social-row a):hover {
  color: #ffe7ad;
  border-color: rgba(241, 199, 123, 0.58);
  background: rgba(20, 13, 7, 0.64);
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 16px rgba(241, 199, 123, 0.09),
    0 0 20px rgba(241, 199, 123, 0.16);
}

:is(.header-order-btn, .icon-btn, .slider-arrow, .close-btn, .social-row a):active {
  transform: translateY(1px) scale(0.96);
  color: #f6cb84;
  box-shadow:
    inset 0 2px 10px rgba(4, 2, 1, 0.62),
    0 0 12px rgba(241, 199, 123, 0.1);
}

.cart-btn:hover .cart-badge {
  transform: scale(1.08);
  box-shadow:
    0 0 14px rgba(241, 199, 123, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.cart-badge {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cart-item-actions button:hover {
  color: #ffe7ad;
  border-color: rgba(241, 199, 123, 0.56);
  background: rgba(22, 13, 7, 0.7);
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 12px rgba(241, 199, 123, 0.08),
    0 0 14px rgba(241, 199, 123, 0.12);
}

.cart-item-actions button:active {
  transform: translateY(1px) scale(0.94);
  box-shadow: inset 0 2px 9px rgba(0, 0, 0, 0.58);
}

.cart-item-actions .delete-btn:hover {
  color: #ffc0a0;
  border-color: rgba(255, 129, 86, 0.48);
  background: rgba(38, 13, 7, 0.68);
  box-shadow:
    inset 0 0 12px rgba(255, 120, 72, 0.1),
    0 0 16px rgba(190, 57, 23, 0.18);
}

.lang-select:hover,
.lang-select:focus-visible {
  color: #ffe7ad;
  border-color: rgba(241, 199, 123, 0.58);
  background: rgba(16, 10, 6, 0.72);
}

/* Order concierge + premium ledger footer */
.order-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  min-height: clamp(390px, 34vw, 540px);
  padding: clamp(32px, 4.8vw, 62px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0.5) 0%, rgba(8, 5, 3, 0.16) 42%, rgba(8, 5, 3, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 5, 3, 0.26), rgba(8, 5, 3, 0.04) 38%, rgba(8, 5, 3, 0.42));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.order-copy {
  position: relative;
  z-index: 4;
  grid-column: 1;
  display: grid;
  justify-items: start;
  gap: 16px;
  max-width: 580px;
}

.order-copy h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.1rem, 3.65vw, 4.6rem);
  line-height: 0.98;
}

.order-copy p {
  margin: 0;
  max-width: 520px;
  color: rgba(244, 231, 210, 0.82);
  font-size: clamp(0.98rem, 1.05vw, 1.13rem);
  line-height: 1.72;
}

.order-copy .order-button {
  margin-top: 8px;
}

.order-visual-bg {
  position: absolute;
  top: clamp(18px, 2.3vw, 34px);
  right: -1.5%;
  bottom: clamp(16px, 2vw, 30px);
  z-index: 0 !important;
  width: min(68%, 1080px);
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0.7) 0%, transparent 17%, transparent 86%, rgba(8, 5, 3, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 5, 3, 0.28) 0%, transparent 16%, transparent 78%, rgba(8, 5, 3, 0.5) 100%),
    radial-gradient(ellipse 48% 56% at 58% 48%, rgba(255, 200, 118, 0.14), transparent 72%);
  background-position:
    center,
    center,
    center,
    60% 52%;
  background-size:
    cover,
    cover,
    cover,
    cover;
  background-repeat: no-repeat;
  opacity: 0.98;
  filter: brightness(1.15) contrast(1.06) saturate(1.05);
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 14%, #000 94%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 7%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 14%, #000 94%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 7%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.order-section.order-assets-ready .order-panel {
  background-image:
    linear-gradient(90deg, rgba(8, 5, 3, 0.5) 0%, rgba(8, 5, 3, 0.16) 42%, rgba(8, 5, 3, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 5, 3, 0.26), rgba(8, 5, 3, 0.04) 38%, rgba(8, 5, 3, 0.42)),
    url("/static/assets/order-concierge-bg-perf-v2-1280w.def65b82813c.webp");
}

.order-section.order-assets-ready .order-visual-bg {
  background-image:
    linear-gradient(90deg, rgba(8, 5, 3, 0.7) 0%, transparent 17%, transparent 86%, rgba(8, 5, 3, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 5, 3, 0.28) 0%, transparent 16%, transparent 78%, rgba(8, 5, 3, 0.5) 100%),
    radial-gradient(ellipse 48% 56% at 58% 48%, rgba(255, 200, 118, 0.14), transparent 72%),
    url("/static/assets/order-pitmaster-platter-premium-perf-v2-1280w.7f70a91ce432.webp");
}

.footer-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 70px);
  padding: clamp(30px, 3.4vw, 46px) 0 clamp(22px, 2.6vw, 34px);
  background: transparent;
}

.footer-ledger-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(24px, 2.8vw, 40px);
  min-height: 196px;
}

.footer-ledger-mark {
  max-width: 620px;
}

.footer-about {
  max-width: 590px;
  margin: 0;
  color: rgba(241, 226, 205, 0.72);
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.75;
}

.footer-ledger-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(241, 199, 123, 0.24);
}

.footer-ledger-nav a {
  color: rgba(241, 226, 205, 0.66);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-ledger-nav a:hover {
  color: #ffe3aa;
  text-shadow: 0 0 16px rgba(241, 199, 123, 0.22);
}

.footer-ledger-contact {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-left: clamp(22px, 3vw, 44px);
  border-left: 1px solid rgba(241, 199, 123, 0.18);
}

.footer-ledger-contact .footer-text {
  margin: 0;
}

.footer-contact-link {
  width: fit-content;
  color: rgba(241, 226, 205, 0.68);
  text-decoration: none;
}

.footer-contact-link:hover {
  color: #ffe3aa;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  color: rgba(241, 199, 123, 0.9);
  font-family: var(--font-text);
  font-size: 0.76rem;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(241, 199, 123, 0.22);
  background: rgba(8, 5, 3, 0.32);
}

.footer-social-link:hover {
  color: #ffe3aa;
  border-color: rgba(241, 199, 123, 0.48);
  background: rgba(241, 199, 123, 0.07);
}

.footer-social-link:focus-visible {
  outline: 2px solid #ffe3aa;
  outline-offset: 3px;
}

.footer-ledger-contact .footer-whatsapp-btn {
  width: fit-content;
  margin-top: 8px;
}

.footer-signature {
  margin: 20px 0 0;
  color: rgba(241, 199, 123, 0.82);
  font-family: var(--font-script);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(241, 226, 205, 0.46);
  text-align: center;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-brand {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  opacity: 0.68;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-bottom-brand:hover,
.footer-bottom-brand:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-bottom-brand:focus-visible {
  outline: 2px solid rgba(241, 199, 123, 0.72);
  outline-offset: 4px;
}

.footer-bottom-brand img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .order-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(8, 5, 3, 0.78), rgba(8, 5, 3, 0.42));
    background-size: auto 100%;
    background-position: center;
  }

  .order-copy {
    max-width: 720px;
  }

  .order-visual-bg {
    position: relative;
    inset: auto;
    z-index: 1 !important;
    width: 100%;
    min-height: clamp(310px, 58vw, 450px);
    margin-top: 6px;
    background:
      linear-gradient(90deg, rgba(8, 5, 3, 0.62) 0%, transparent 16%, transparent 84%, rgba(8, 5, 3, 0.42) 100%),
      linear-gradient(180deg, rgba(8, 5, 3, 0.34) 0%, transparent 14%, transparent 76%, rgba(8, 5, 3, 0.68) 100%),
      radial-gradient(ellipse 58% 46% at 54% 52%, rgba(255, 202, 125, 0.16), transparent 72%);
    background-position:
      center,
      center,
      center,
      72% 50%;
    background-size:
      cover,
      cover,
      cover,
      cover;
    background-repeat: no-repeat;
    filter: brightness(1.18) contrast(1.06) saturate(1.05);
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%),
      linear-gradient(180deg, transparent 0, #000 6%, #000 86%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%),
      linear-gradient(180deg, transparent 0, #000 6%, #000 86%, transparent 100%);
  }

  .order-section.order-assets-ready .order-panel {
    background-image:
      linear-gradient(180deg, rgba(8, 5, 3, 0.78), rgba(8, 5, 3, 0.42)),
      url("/static/assets/order-concierge-bg-perf-v2-1280w.def65b82813c.webp");
    background-size: auto 100%, auto 100%;
    background-position: center, 14% center;
  }

  .order-section.order-assets-ready .order-visual-bg {
    background-image:
      linear-gradient(90deg, rgba(8, 5, 3, 0.62) 0%, transparent 16%, transparent 84%, rgba(8, 5, 3, 0.42) 100%),
      linear-gradient(180deg, rgba(8, 5, 3, 0.34) 0%, transparent 14%, transparent 76%, rgba(8, 5, 3, 0.68) 100%),
      radial-gradient(ellipse 58% 46% at 54% 52%, rgba(255, 202, 125, 0.16), transparent 72%),
      url("/static/assets/order-pitmaster-platter-premium-perf-v2-1280w.7f70a91ce432.webp");
  }

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

  .footer-ledger-main {
    min-height: 0;
  }

  .footer-ledger-contact {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(241, 199, 123, 0.18);
  }
}

@media (max-width: 620px) {
  .order-panel {
    padding: 28px 20px;
    gap: 22px;
  }

  .order-copy {
    gap: 13px;
  }

  .order-copy h2 {
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  .order-copy p {
    font-size: 0.93rem;
    line-height: 1.58;
  }

  .order-copy .order-button {
    width: 100%;
  }

  .order-visual-bg {
    min-height: clamp(300px, 86vw, 410px);
    background-position:
      center,
      center,
      center,
      74% 50%;
    background-size:
      cover,
      cover,
      cover,
      cover;
  }

  .footer-panel {
    padding: 30px 0 24px;
  }

  .footer-ledger-nav {
    gap: 12px 18px;
  }

  .footer-ledger-nav a {
    font-size: 0.72rem;
  }

  .footer-ledger-contact .footer-whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (hover: none) {
  :is(
    .button-brass,
    .button-brass-outline,
    .button-primary,
    .price-list-add-btn,
    .footer-whatsapp-btn,
    .header-order-btn,
    .icon-btn,
    .slider-arrow,
    .close-btn,
    .cart-item-actions button,
    .social-row a
  ):hover {
    transform: none;
  }
}

.admin-screen {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 24px;
  color: rgba(246, 232, 206, 0.9);
  background:
    linear-gradient(180deg, rgba(8, 5, 3, 0.96), rgba(13, 8, 5, 0.94)),
    url("/static/assets/pirate-tavern-bg.1b8e7fc81121.webp");
  background-size: cover;
  background-position: center;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(241, 199, 123, 0.26);
  background: rgba(10, 6, 3, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.admin-topbar p {
  margin: 0 0 4px;
  color: var(--accent-amber);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-topbar h1 {
  margin: 0;
  color: #ffe1a9;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: 0.04em;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-topbar select,
.admin-topbar button,
.admin-block-actions button,
.admin-field input,
.admin-field textarea,
.admin-product-row input,
.admin-product-row select,
.admin-row-delete-btn {
  color: rgba(246, 232, 206, 0.9);
  border: 1px solid rgba(241, 199, 123, 0.28);
  background: rgba(8, 5, 3, 0.72);
}

.admin-topbar select,
.admin-topbar button,
.admin-block-actions button {
  min-height: 38px;
  padding: 9px 12px;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-topbar button,
.admin-block-actions button,
.admin-row-delete-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.admin-topbar button:hover,
.admin-block-actions button:hover,
.admin-row-delete-btn:hover {
  color: #ffe8b4;
  border-color: rgba(241, 199, 123, 0.62);
  box-shadow: 0 0 22px rgba(241, 199, 123, 0.14);
}

.admin-danger-btn {
  border-color: rgba(255, 145, 105, 0.42) !important;
}

.admin-workspace {
  display: grid;
  gap: 22px;
  width: min(100%, 1440px);
  margin: 22px auto 0;
}

.admin-workspace.three-columns {
  width: 100%;
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  align-items: start;
}

.admin-language-frame {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.admin-language-frame-title {
  position: sticky;
  top: 94px;
  z-index: 12;
  padding: 10px 14px;
  color: #ffe0a2;
  border: 1px solid rgba(241, 199, 123, 0.26);
  background: rgba(12, 7, 4, 0.9);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-edit-block {
  scroll-margin-top: 150px;
  border: 1px solid rgba(241, 199, 123, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 219, 158, 0.05), transparent 18%),
    rgba(12, 7, 4, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.admin-edit-block-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid rgba(241, 199, 123, 0.16);
}

.admin-edit-block-header h3 {
  margin: 0;
  color: #f6d293;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.admin-edit-block-header p {
  max-width: 720px;
  margin: 6px 0 0;
  color: rgba(246, 232, 206, 0.58);
  font-size: 0.84rem;
  line-height: 1.5;
}

.admin-block-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

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

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

.admin-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.admin-field span {
  color: rgba(246, 232, 206, 0.62);
  font-size: 0.78rem;
  line-height: 1.35;
}

.admin-field input,
.admin-field textarea,
.admin-product-row input,
.admin-product-row select {
  width: 100%;
  min-width: 0;
  padding: 10px 11px;
  border-radius: 0;
  font: inherit;
  line-height: 1.45;
  outline: none;
}

.admin-field textarea {
  resize: vertical;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-product-row input:focus,
.admin-product-row select:focus {
  border-color: rgba(241, 199, 123, 0.72);
  box-shadow: 0 0 0 3px rgba(241, 199, 123, 0.1);
}

.admin-product-table {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 54px minmax(190px, 1.1fr) 96px minmax(110px, 0.5fr) minmax(120px, 0.5fr) minmax(160px, 0.8fr) 112px;
  gap: 8px;
  align-items: center;
}

.admin-product-row.head {
  color: var(--accent-amber);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-product-id {
  color: rgba(246, 232, 206, 0.58);
  font-family: var(--font-heading);
  font-size: 0.76rem;
}

.admin-add-row-btn {
  border-color: rgba(241, 199, 123, 0.52) !important;
}

.admin-row-delete-btn {
  min-height: 42px;
  justify-content: center;
  padding: 10px 11px;
  color: rgba(255, 190, 160, 0.88);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-row-delete-btn:hover {
  border-color: rgba(255, 145, 105, 0.62);
}

.admin-product-table.compact .admin-product-row {
  grid-template-columns: 44px minmax(132px, 1fr) 78px;
}

.admin-product-table.compact .admin-product-row > :nth-child(4),
.admin-product-table.compact .admin-product-row > :nth-child(5),
.admin-product-table.compact .admin-product-row > :nth-child(6),
.admin-product-table.compact .admin-product-row > :nth-child(7) {
  grid-column: 2 / -1;
}

@media (max-width: 1180px) {
  .admin-workspace.three-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .admin-screen {
    padding: 12px;
  }

  .admin-edit-block {
    scroll-margin-top: 230px;
  }

  .admin-topbar,
  .admin-edit-block-header {
    display: grid;
  }

  .admin-topbar-actions,
  .admin-block-actions {
    justify-content: stretch;
  }

  .admin-topbar-actions > *,
  .admin-block-actions > * {
    flex: 1 1 auto;
    justify-content: center;
  }

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

  .admin-product-row,
  .admin-product-table.compact .admin-product-row {
    grid-template-columns: 1fr;
  }

  .admin-product-row.head {
    display: none;
  }
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .scene-layer,
  .hero-image-layer img {
    transform: none !important;
  }
}
