:root {
  --pf-black: #000;
  --pf-ink: #fff8ef;
  --pf-muted: #b8aaa0;
  --pf-orange: #ff7a12;
  --pf-orange-2: #ffb15f;
  --pf-card: rgba(18, 14, 11, 0.86);
  --pf-line: rgba(255, 122, 18, 0.28);
  --pf-radius: 28px;
  font-family: "Montserrat", "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--pf-ink);
  background: var(--pf-black);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--pf-black);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 122, 18, 0.22), transparent 28rem),
    radial-gradient(circle at 10% 70%, rgba(255, 122, 18, 0.16), transparent 24rem),
    #000;
  color: var(--pf-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overscroll-behavior-y: none;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.pf-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  z-index: 80;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  transform: translate(-50%, -120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 780ms cubic-bezier(.16, 1, .3, 1), opacity 580ms ease;
}

body.intro-complete .site-nav,
body.no-intro .site-nav {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

body.no-intro .scrub-intro {
  display: none;
}

.nav-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease;
}

.site-nav.nav-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-nav.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

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

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  padding: 4px;
}

.brand strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand span {
  display: block;
}

.brand > span {
  color: var(--pf-ink);
}

.brand > span > span {
  color: var(--pf-orange-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.delivery-nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

.delivery-truck {
  position: relative;
  width: 28px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.delivery-truck svg {
  width: 27px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-truck i,
.delivery-status-icon i {
  position: absolute;
  top: -2px;
  right: -3px;
  width: 8px;
  height: 8px;
  border: 2px solid #080604;
  border-radius: 50%;
  background: #ffb15f;
  box-shadow: 0 0 12px currentColor;
}

.delivery-nav-status.available {
  color: #7dffc1;
  border-color: rgba(38, 215, 135, 0.34);
  background: rgba(14, 111, 72, 0.24);
}

.delivery-nav-status.available .delivery-truck i,
.delivery-launch-status.available .delivery-status-icon i {
  background: #22d88a;
}

.delivery-nav-status.unavailable {
  color: #ff9687;
  border-color: rgba(255, 92, 70, 0.34);
  background: rgba(121, 31, 24, 0.25);
}

.delivery-nav-status.unavailable .delivery-truck i,
.delivery-launch-status.unavailable .delivery-status-icon i {
  background: #ff5c46;
}

.delivery-nav-status.checking .delivery-truck i,
.delivery-launch-status.checking .delivery-status-icon i {
  animation: statusPulse 1s ease-in-out infinite;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 248, 239, 0.74);
  font-size: 0.9rem;
  font-weight: 900;
  transition: 180ms ease;
}

.nav-link-icon,
.nav-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta svg {
  width: 17px;
  height: 17px;
}

.nav-links a:hover {
  border-color: var(--pf-line);
  color: #fff;
  background: rgba(255, 122, 18, 0.12);
}

.nav-cta,
.pf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 122, 18, 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pf-orange), #ff9d3d);
  color: #100600;
  font-weight: 1000;
  box-shadow: 0 14px 36px rgba(255, 122, 18, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.pf-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 122, 18, 0.36);
}

.pf-button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--pf-ink);
  box-shadow: none;
}

.pf-button.delivery-on {
  border-color: rgba(34, 216, 138, 0.5);
  background: rgba(14, 111, 72, 0.24);
  color: #7dffc1;
}

.pf-button.delivery-off {
  border-color: rgba(255, 92, 70, 0.5);
  background: rgba(121, 31, 24, 0.25);
  color: #ff9687;
}

.pf-button img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
}

.scrub-intro {
  position: relative;
  height: 760vh;
  background: #000;
}

.scrub-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
  isolation: isolate;
}

.scrub-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.scrub-loader {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.scrub-loader img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  padding: 10px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 0 60px rgba(255, 122, 18, 0.32);
}

.scrub-loader i {
  width: min(260px, 70vw);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.scrub-loader b {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pf-orange), #ffd09b);
  transform: scaleX(0.08);
  transform-origin: left;
  transition: transform 260ms ease;
}

.scrub-loader.is-ready {
  opacity: 0;
  visibility: hidden;
}

.scrub-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 52%, transparent 0 30%, rgba(0, 0, 0, 0.2) 64%, rgba(0, 0, 0, 0.52)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 32%, rgba(0, 0, 0, 0.16));
}

.intro-story {
  position: absolute;
  z-index: 3;
  width: min(560px, calc(100vw - 44px));
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(0, 0, 0, 0.26);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(22px) saturate(1.32);
  -webkit-backdrop-filter: blur(22px) saturate(1.32);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 22px, 0) scale(0.98);
  transition:
    opacity 360ms ease,
    transform 580ms cubic-bezier(.16, 1, .3, 1),
    left 520ms cubic-bezier(.16, 1, .3, 1),
    right 520ms cubic-bezier(.16, 1, .3, 1),
    top 520ms cubic-bezier(.16, 1, .3, 1),
    bottom 520ms cubic-bezier(.16, 1, .3, 1);
}

.intro-story::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 34%, rgba(255, 138, 36, 0.13) 68%, transparent);
  opacity: 0.72;
}

.intro-story > * {
  position: relative;
  z-index: 1;
}

.intro-story.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.intro-story.story-left {
  left: max(24px, calc((100vw - 1440px) / 2 + 44px));
  top: 18vh;
}

.intro-story.story-right {
  right: max(24px, calc((100vw - 1440px) / 2 + 44px));
  top: 22vh;
}

.intro-story.story-bottom {
  right: max(24px, calc((100vw - 1440px) / 2 + 44px));
  bottom: 10vh;
}

.story-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--pf-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.44);
  color: var(--pf-orange-2);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.story-kicker::before,
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pf-orange);
  box-shadow: 0 0 22px var(--pf-orange);
}

.intro-story h1 {
  margin: 18px 0 12px;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.intro-story p {
  margin: 0;
  color: rgba(255, 248, 239, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: 32px;
  top: 50%;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 90px;
  margin: 10px auto 0;
  background: linear-gradient(var(--pf-orange), transparent);
}

.mobile-scroll-coach {
  display: none;
}

.delivery-launch-status {
  position: fixed;
  z-index: 190;
  top: 108px;
  left: 50%;
  width: min(430px, calc(100% - 28px));
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(11, 10, 9, 0.9);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(24px) saturate(1.3);
  opacity: 0;
  transform: translate(-50%, -18px) scale(0.96);
  transition: opacity 380ms ease, transform 520ms cubic-bezier(.16, 1, .3, 1);
}

.delivery-launch-status:not([hidden]) {
  display: grid;
}

.delivery-launch-status.show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.delivery-status-icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 177, 95, 0.12);
}

.delivery-status-icon::before {
  display: none;
}

.delivery-status-icon svg {
  width: 34px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-launch-status.available { color: #79f8ba; }
.delivery-launch-status.unavailable { color: #ff8e7d; }
.delivery-launch-status.checking { color: #ffb15f; }
.delivery-launch-status strong,
.delivery-launch-status span { display: block; }
.delivery-launch-status strong { color: #fff; font-size: 1.02rem; }
.delivery-launch-status div > span { margin-top: 3px; color: rgba(255, 255, 255, 0.62); font-size: 0.82rem; line-height: 1.35; }

.site-main {
  position: relative;
  z-index: 4;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.16, 1, .3, 1);
}

body.intro-complete .site-main,
body.no-intro .site-main {
  opacity: 1;
  transform: translateY(0);
}

.hero-carousel {
  min-height: 100vh;
  padding: 130px 0 80px;
  display: grid;
  align-items: center;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-items: center;
  border: 1px solid var(--pf-line);
  border-radius: 46px;
  background: #090604;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.68);
  perspective: 1200px;
  --hero-x: 0px;
  --hero-y: 0px;
  --card-x: 0px;
  --card-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.98;
  filter: saturate(1.08) contrast(1.04) brightness(1.08);
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.055);
  transition: opacity 560ms ease, transform 980ms cubic-bezier(.16, 1, .3, 1);
}

.hero-panel.is-switching .hero-bg {
  opacity: 0.58;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.085);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 48%, transparent 0 34%, rgba(0, 0, 0, 0.12) 60%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 54%, rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  width: min(590px, calc(100% - 72px));
  margin-left: clamp(28px, 6vw, 72px);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.055)),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(24px) saturate(1.35);
  transform: translate3d(var(--card-x), var(--card-y), 44px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: transform 260ms ease, background 260ms ease;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.28), transparent 30%);
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  position: relative;
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
}

.hero-content p {
  position: relative;
  margin: 0;
  color: rgba(255, 248, 239, 0.88);
  font-size: clamp(1.08rem, 1.6vw, 1.36rem);
  line-height: 1.65;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 6vw, 72px);
  bottom: 38px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 42px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-dot.active {
  background: var(--pf-orange);
  box-shadow: 0 0 18px rgba(255, 122, 18, 0.7);
}

.section {
  padding: 90px 0;
  scroll-margin-top: 104px;
}

.section-title {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-title p {
  margin: 0;
  max-width: 720px;
  color: var(--pf-muted);
  line-height: 1.7;
}

.recruitment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.recruitment-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid rgba(255, 122, 18, 0.3);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 122, 18, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

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

.recruitment-form .field {
  margin-top: 0;
}

.cv-drop {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 150px;
  place-content: center;
  padding: 20px;
  border: 1px dashed rgba(255, 177, 95, 0.48);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.28);
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.cv-drop:hover {
  transform: translateY(-2px);
  border-color: var(--pf-orange);
  background: rgba(255, 122, 18, 0.09);
}

.cv-drop input {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.cv-drop-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--pf-orange);
  color: #160800;
  font-size: 1.6rem;
  font-weight: 1000;
}

.cv-drop small {
  color: var(--pf-muted);
}

.recruitment-submit {
  width: 100%;
  border: 0;
}

.recruitment-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--pf-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status.success { color: #7dffc1; }
.form-status.error { color: #ff9687; }
.form-status.pending { color: var(--pf-orange-2); }
.honeypot { position: absolute; left: -9999px; }

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

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
}

.order-layout > *,
.product-grid,
.category-rail,
.hero-panel,
.hero-content,
.recruitment-layout > * {
  min-width: 0;
}

.category-rail {
  display: flex;
  width: 100%;
  max-width: 100%;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 16px;
  scrollbar-width: thin;
}

.category-rail button {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--pf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--pf-ink);
  font-weight: 1000;
}

.category-rail button.active {
  background: linear-gradient(135deg, var(--pf-orange), #ff9f42);
  color: #130600;
}

.product-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 122, 18, 0.22);
  border-radius: 26px;
  background: rgba(13, 10, 8, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, opacity 180ms ease;
  content-visibility: auto;
  contain-intrinsic-size: 360px 420px;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 18, 0.62);
}

.product-card.unavailable {
  opacity: 0.45;
}

.product-image {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: #fff;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-body h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.08;
}

.product-body p {
  min-height: 42px;
  margin: 0;
  color: rgba(255, 248, 239, 0.66);
  line-height: 1.45;
}

.price-line {
  color: var(--pf-orange);
  font-size: 1.1rem;
  font-weight: 1000;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.product-actions button {
  min-height: 46px;
  border: 1px solid rgba(255, 122, 18, 0.36);
  border-radius: 15px;
  background: rgba(255, 122, 18, 0.12);
  color: #fff;
  font-weight: 1000;
}

.product-actions button.primary {
  background: var(--pf-orange);
  color: #130600;
}

.cart-panel,
.backoffice-card {
  border: 1px solid var(--pf-line);
  border-radius: 30px;
  background: rgba(12, 9, 7, 0.88);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.4);
}

.cart-panel {
  position: sticky;
  top: 112px;
  padding: 22px;
}

.cart-panel h3 {
  margin: 2px 0 0;
  font-size: 1.35rem;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.cart-head > div > span {
  color: var(--pf-orange-2);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-close {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.5rem;
}

.cart-items {
  display: grid;
  gap: 10px;
  max-height: 300px;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.cart-item strong {
  display: block;
}

.cart-item span {
  color: var(--pf-muted);
  font-size: 0.88rem;
}

.cart-item small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 248, 239, 0.58);
  line-height: 1.45;
}

.cart-item button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.field label {
  color: var(--pf-muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: 0;
  padding: 14px 15px;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.order-mode,
.payment-choice {
  min-width: 0;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}

.order-mode legend,
.payment-choice legend {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
}

.order-mode-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.order-mode-card {
  min-width: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-align: left;
}

.order-mode-card svg {
  width: 30px;
  height: 30px;
  fill: var(--pf-orange-2);
}

.order-mode-card span,
.order-mode-card strong,
.order-mode-card small {
  display: block;
}

.order-mode-card small {
  margin-top: 4px;
  color: var(--pf-muted);
  font-size: 0.68rem;
  line-height: 1.3;
}

.order-mode-card.selected {
  border-color: var(--pf-orange);
  background: rgba(255, 122, 18, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 18, 0.22);
}

.order-mode-card:disabled,
.order-mode-card.unavailable {
  opacity: 0.46;
  cursor: not-allowed;
}

.address-field {
  position: relative;
}

.address-field svg {
  position: absolute;
  z-index: 1;
  left: 14px;
  top: 50%;
  width: 21px;
  height: 21px;
  fill: var(--pf-orange);
  transform: translateY(-50%);
  pointer-events: none;
}

.address-field input {
  padding-left: 44px;
}

.address-suggestions {
  position: absolute;
  z-index: 16;
  left: 0;
  right: 0;
  top: calc(100% + 7px);
  overflow: hidden;
  border: 1px solid rgba(255, 122, 18, 0.35);
  border-radius: 17px;
  background: #17110d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
}

.field:has(.address-suggestions) {
  position: relative;
}

.address-suggestions button {
  width: 100%;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  color: #fff;
  text-align: left;
}

.address-suggestions button:hover {
  background: rgba(255, 122, 18, 0.12);
}

.address-suggestions small {
  color: var(--pf-muted);
}

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

.payment-grid button {
  min-height: 76px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.payment-grid button > span {
  color: var(--pf-orange-2);
  font-size: 1.35rem;
  font-weight: 1000;
}

.payment-grid button strong {
  font-size: 0.72rem;
}

.payment-grid button.selected {
  border-color: var(--pf-orange);
  background: rgba(255, 122, 18, 0.18);
}

.cart-scrim {
  display: none;
}

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

.order-success {
  position: fixed;
  z-index: 260;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.order-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
}

.order-success-card {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: clamp(28px, 6vw, 48px);
  border: 1px solid rgba(255, 122, 18, 0.42);
  border-radius: 34px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 122, 18, 0.2), transparent 42%), #100c09;
  box-shadow: 0 44px 150px rgba(0, 0, 0, 0.72);
  text-align: center;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(.16, 1, .3, 1);
}

.order-success.show .order-success-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.success-check {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #22d88a, #89ffc8);
  color: #041a10;
  box-shadow: 0 16px 50px rgba(34, 216, 138, 0.3);
}

.success-check svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-success-card > span {
  color: var(--pf-orange-2);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.order-success-card h2 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 5rem);
  line-height: 0.9;
}

.order-success-card p {
  margin: 0;
  color: var(--pf-muted);
  line-height: 1.55;
}

.success-summary {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 8px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.success-summary strong {
  color: var(--pf-orange-2);
}

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

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 20%, rgba(255, 122, 18, 0.22), transparent 24rem),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.product-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  width: min(980px, 100%);
  max-height: min(92svh, 820px);
  overflow: hidden;
  border: 1px solid rgba(255, 122, 18, 0.32);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(30, 18, 9, 0.96), rgba(0, 0, 0, 0.98)),
    #000;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.62);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 1000;
}

.modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.modal-product-head {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  padding: 20px 72px 14px 20px;
}

.modal-product-head img {
  width: 104px;
  aspect-ratio: 1;
  border-radius: 22px;
  object-fit: cover;
  background: #fff;
}

.modal-product-head h3 {
  margin: 5px 0 5px;
  font-size: clamp(1.8rem, 3.3vw, 3.5rem);
  line-height: 0.96;
}

.modal-product-head p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 248, 239, 0.68);
  line-height: 1.55;
}

.config-kicker,
.config-total-label,
.config-note > span,
.modal-actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.config-kicker {
  color: var(--pf-orange-2);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.config-kicker svg,
.config-total-label svg,
.config-note > span svg,
.modal-actions button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.config-price-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 20px 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 122, 18, 0.24);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 122, 18, 0.16), rgba(255, 255, 255, 0.05));
}

.config-price-panel span {
  display: block;
  color: var(--pf-muted);
  font-weight: 900;
}

.config-price-panel strong {
  color: var(--pf-orange);
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.qty-control button {
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 1000;
}

.config-scroll {
  display: grid;
  gap: 11px;
  overflow: auto;
  padding: 0 20px 14px;
}

.config-group {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.config-group.compact {
  padding: 14px 16px;
}

.config-group-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
}

.config-group-title strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.08rem;
}

.config-group-title strong i,
.choice-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--pf-orange);
  font-style: normal;
}

.config-group-title svg,
.choice-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.config-group-title span {
  color: var(--pf-muted);
  font-weight: 800;
  font-size: 0.78rem;
}

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

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

.choice-grid button {
  position: relative;
  min-height: 60px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.choice-grid button:hover,
.choice-grid button.selected {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 18, 0.8);
  background: rgba(255, 122, 18, 0.18);
}

.choice-grid button strong,
.choice-grid button span {
  display: block;
}

.choice-grid button .choice-icon {
  margin-bottom: 5px;
  color: var(--pf-orange-2);
}

.choice-check {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pf-orange);
  color: #170900;
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 160ms ease, transform 200ms cubic-bezier(.16, 1, .3, 1);
}

.choice-check svg {
  width: 12px;
  height: 12px;
}

.choice-grid button.selected .choice-check {
  opacity: 1;
  transform: scale(1);
}

.stroke-icon {
  fill: none !important;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-grid button.selected .choice-icon {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(255, 122, 18, 0.65));
}

@keyframes statusPulse {
  50% { opacity: 0.35; transform: scale(0.78); }
}

.choice-grid button span {
  margin-top: 5px;
  color: var(--pf-orange-2);
  font-weight: 1000;
}

.config-note {
  margin: 0 20px 12px;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
  padding: 0 20px 20px;
}

.modal-actions button {
  justify-content: center;
  min-height: 56px;
  border: 1px solid rgba(255, 122, 18, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 1000;
}

.modal-actions button.primary {
  background: linear-gradient(135deg, var(--pf-orange), #ffae55);
  color: #130600;
}

body.modal-open {
  overflow: hidden;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  font-weight: 1000;
}

.cart-total strong {
  color: var(--pf-orange);
  font-size: 1.6rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 122, 18, 0.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 122, 18, 0.14), rgba(255, 255, 255, 0.04));
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.info-card p {
  margin: 0;
  color: rgba(255, 248, 239, 0.7);
  line-height: 1.7;
}

.site-footer {
  padding: 48px 0 62px;
  border-top: 1px solid rgba(255, 122, 18, 0.18);
  color: var(--pf-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-credit {
  color: var(--pf-orange-2);
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-credit:hover {
  color: #fff;
  transform: translateY(-2px);
}

.admin-page {
  padding: 120px 0 70px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
}

.backoffice-card {
  padding: 20px;
}

.admin-list {
  display: grid;
  gap: 10px;
  max-height: 72vh;
  overflow: auto;
}

.admin-product,
.admin-order {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-product-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
}

.admin-product-head img {
  width: 64px;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  background: #fff;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px auto;
  gap: 8px;
  align-items: center;
}

.admin-product-row.wide {
  grid-template-columns: 0.7fr 1fr 1.3fr auto;
}

.admin-product-row input {
  min-width: 0;
}

.admin-order small {
  display: block;
  color: rgba(255, 248, 239, 0.62);
  line-height: 1.45;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--pf-line);
  border-radius: 999px;
  color: var(--pf-orange-2);
  font-size: 0.78rem;
  font-weight: 1000;
}

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  padding: 14px 18px;
  border: 1px solid var(--pf-line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.86);
  color: #fff;
  font-weight: 900;
  transition: 240ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes introCopy {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileNavItem {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .order-layout,
  .admin-grid,
  .recruitment-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: relative;
    top: 0;
  }

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

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 50% 12%, rgba(255, 122, 18, 0.18), transparent 18rem),
      #000;
  }

  .pf-shell {
    width: min(100% - 18px, 720px);
  }

  .site-nav {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100% - 14px);
  }

  .nav-inner {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 8px;
    border-radius: 22px;
    backdrop-filter: blur(12px);
  }

  .brand > span {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 5px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.94);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top;
    transition: opacity 200ms ease, transform 280ms cubic-bezier(.16, 1, .3, 1), visibility 200ms ease;
  }

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

  .site-nav.nav-open ~ .delivery-launch-status {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -12px) scale(0.96);
  }

  .site-nav.nav-open .nav-links a {
    animation: mobileNavItem 380ms both cubic-bezier(.16, 1, .3, 1);
  }

  .site-nav.nav-open .nav-links a:nth-child(2) { animation-delay: 45ms; }
  .site-nav.nav-open .nav-links a:nth-child(3) { animation-delay: 90ms; }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.035);
    width: 100%;
  }

  .nav-links a .nav-link-icon {
    width: 22px;
    height: 22px;
    padding: 6px;
    box-sizing: content-box;
    border-radius: 11px;
    background: rgba(255, 122, 18, 0.12);
    color: var(--pf-orange-2);
  }

  .nav-actions {
    justify-content: flex-end;
    min-width: 0;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .delivery-nav-status {
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .nav-cta {
    display: none;
  }

  .brand img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    padding: 3px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .scrub-intro {
    height: 620vh;
  }

  .scrub-stage,
  .scrub-video {
    height: 100svh;
    min-height: 100svh;
  }

  .scrub-video {
    object-fit: contain;
    object-position: center center;
    background: #000;
    filter: saturate(1.05) contrast(1.02);
  }

  .scrub-video.is-cover {
    object-fit: cover;
  }

  .scrub-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.48), transparent 42%, rgba(0, 0, 0, 0.08));
  }

  .intro-story,
  .intro-story.story-left,
  .intro-story.story-right,
  .intro-story.story-bottom {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 8vh;
    width: auto;
    padding: 16px;
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06)),
      rgba(11, 8, 5, 0.38);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(18px) saturate(1.28);
    -webkit-backdrop-filter: blur(18px) saturate(1.28);
  }

  .intro-story.story-mobile-top {
    top: max(108px, calc(env(safe-area-inset-top) + 92px));
    bottom: auto;
    right: 40px;
  }

  .intro-story.story-mobile-middle {
    top: 38%;
    bottom: auto;
    left: 38px;
    right: 14px;
  }

  .intro-story.story-mobile-bottom {
    top: auto;
    bottom: max(38px, calc(env(safe-area-inset-bottom) + 30px));
    left: 26px;
  }

  .intro-story h1 {
    margin: 14px 0 8px;
    font-size: clamp(1.9rem, 10.5vw, 3.25rem);
  }

  .intro-story p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .scroll-hint {
    display: none;
  }

  .mobile-scroll-coach {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: max(28px, env(safe-area-inset-bottom));
    display: grid;
    justify-items: center;
    gap: 5px;
    width: min(320px, calc(100% - 32px));
    padding: 16px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.62);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px) saturate(1.25);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 24px) scale(0.94);
    transition: opacity 420ms ease, transform 620ms cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-scroll-coach.show {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  .mobile-scroll-coach strong {
    font-size: 0.96rem;
  }

  .mobile-scroll-coach > span:not(.scroll-coach-hand) {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
  }

  .scroll-coach-hand {
    width: 34px;
    height: 34px;
    color: var(--pf-orange);
    animation: swipeCoach 1.55s cubic-bezier(.45, 0, .2, 1) infinite;
  }

  .scroll-coach-hand svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
  }

  .mobile-scroll-coach i {
    position: relative;
    width: 3px;
    height: 24px;
    margin-top: 5px;
    border-radius: 999px;
    background: linear-gradient(var(--pf-orange), transparent);
  }

  .delivery-launch-status {
    top: 70px;
    border-radius: 20px;
  }

  .hero-carousel {
    min-height: auto;
    padding: 92px 0 50px;
  }

  .hero-panel {
    min-height: min(720px, calc(100svh - 92px));
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  }

  .hero-bg {
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.02) brightness(1.14);
  }

  .hero-panel::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.46), transparent 44%, rgba(0, 0, 0, 0.08));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: auto 14px 24px;
    padding: 22px;
    align-content: end;
    border-radius: 28px;
    transform: none;
    backdrop-filter: blur(12px) saturate(1.15);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .hero-content h2 {
    font-size: clamp(2.6rem, 14vw, 4.9rem);
  }

  .hero-controls {
    left: 28px;
    bottom: 12px;
    transform: translateY(100%);
  }

  .section {
    padding: 58px 0;
  }

  .section-title h2 {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

  .category-rail {
    position: sticky;
    z-index: 10;
    top: 76px;
    margin: 0 -9px 10px;
    padding: 8px 9px 14px;
    background: linear-gradient(#000 0 72%, transparent);
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .category-rail button {
    min-height: 48px;
    padding: 0 18px;
    scroll-snap-align: start;
  }

  .product-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card {
    border-radius: 22px;
    contain-intrinsic-size: 320px 390px;
  }

  .product-image {
    aspect-ratio: 1.55 / 1;
  }

  .product-body {
    padding: 16px;
  }

  .product-body p {
    min-height: auto;
  }

  .product-modal {
    padding: max(8px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom));
    align-items: center;
  }

  .product-modal-card {
    width: 100%;
    max-height: 94svh;
    border-radius: 25px;
  }

  .modal-product-head {
    grid-template-columns: 62px 1fr;
    gap: 10px;
    padding: 12px 52px 9px 12px;
  }

  .modal-product-head img {
    width: 62px;
    border-radius: 15px;
  }

  .modal-product-head h3 {
    margin: 2px 0;
    font-size: clamp(1.4rem, 7vw, 2.15rem);
  }

  .modal-product-head p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.76rem;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .config-kicker {
    font-size: 0.6rem;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .config-price-panel {
    margin: 0 10px 9px;
    padding: 9px 11px;
    border-radius: 18px;
  }

  .config-price-panel strong {
    font-size: 1.45rem;
  }

  .qty-control {
    gap: 8px;
  }

  .qty-control button {
    width: 42px;
    height: 40px;
    border-radius: 13px;
  }

  .config-scroll {
    gap: 8px;
    padding: 0 10px 10px;
  }

  .choice-grid,
  .choice-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .choice-grid button {
    min-height: 58px;
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-content: center;
    align-items: center;
    column-gap: 7px;
    padding: 8px 26px 8px 8px;
    border-radius: 15px;
  }

  .choice-grid button .choice-icon {
    grid-row: 1 / span 2;
    width: 25px;
    height: 25px;
    margin: 0;
  }

  .choice-grid button strong,
  .choice-grid button span {
    text-align: left;
  }

  .choice-grid button strong {
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.15;
    text-overflow: ellipsis;
  }

  .choice-grid button span {
    margin-top: 2px;
    font-size: 0.7rem;
  }

  .config-group {
    padding: 10px;
    border-radius: 17px;
  }

  .config-group-title {
    align-items: center;
    margin-bottom: 7px;
  }

  .config-group-title strong {
    gap: 6px;
    font-size: 0.9rem;
  }

  .config-group-title strong i {
    width: 20px;
    height: 20px;
  }

  .config-note {
    margin: 0 10px 9px;
  }

  .config-note > span {
    font-size: 0.76rem;
  }

  .config-note input {
    min-height: 44px;
  }

  .modal-actions {
    gap: 8px;
    padding: 0 10px 10px;
  }

  .modal-actions button {
    min-height: 48px;
    border-radius: 15px;
  }

  .cart-panel {
    position: fixed;
    z-index: 230;
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
    top: max(8px, env(safe-area-inset-top));
    bottom: max(8px, env(safe-area-inset-bottom));
    width: auto;
    max-width: 440px;
    margin-inline: auto;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 18px;
    border-radius: 28px;
    background: rgba(13, 9, 6, 0.98);
    transform: translate3d(0, calc(100% + 40px), 0);
    transition: transform 420ms cubic-bezier(.16, 1, .3, 1);
    -webkit-overflow-scrolling: touch;
  }

  body.cart-open {
    overflow: hidden;
  }

  body.cart-open .cart-panel {
    transform: translate3d(0, 0, 0);
  }

  .cart-close {
    display: block;
  }

  .cart-scrim:not([hidden]) {
    position: fixed;
    z-index: 220;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(8px);
  }

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

  .recruitment-layout {
    gap: 18px;
  }

  .recruitment-form {
    padding: 16px;
    border-radius: 26px;
  }

  .cv-drop {
    min-height: 126px;
  }

  .mobile-cart-dock:not([hidden]) {
    position: fixed;
    z-index: 72;
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    width: auto;
    max-width: 390px;
    margin-inline: auto;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 12px 8px 9px;
    border: 1px solid rgba(255, 177, 95, 0.44);
    border-radius: 20px;
    background: rgba(12, 8, 5, 0.92);
    color: #fff;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px) saturate(1.3);
  }

  .cart-panel input,
  .cart-panel textarea,
  .cart-panel select {
    min-width: 0;
    font-size: 16px;
  }

  .mobile-cart-dock > span:not(.cart-dock-icon) {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    font-weight: 900;
  }

  .cart-dock-icon {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--pf-orange);
    color: #140700;
  }

  .cart-dock-icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
  }

  .cart-dock-icon b {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    border: 2px solid #120b07;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 0.68rem;
  }

  .mobile-cart-dock strong {
    color: var(--pf-orange-2);
  }

  .footer-inner,
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 420px) {
  .delivery-nav-status {
    padding: 0 9px;
    gap: 6px;
    font-size: 0.61rem;
  }

  .delivery-nav-status [data-delivery-nav-label] {
    display: inline;
  }

  .intro-story,
  .intro-story.story-left,
  .intro-story.story-right,
  .intro-story.story-bottom,
  .intro-story.story-mobile-top,
  .intro-story.story-mobile-middle,
  .intro-story.story-mobile-bottom {
    left: 10px;
    right: 10px;
    padding: 14px;
  }

  .intro-story h1 {
    font-size: clamp(1.9rem, 10.5vw, 2.8rem);
  }

  .intro-story p {
    font-size: 0.88rem;
  }

  .story-kicker,
  .eyebrow {
    padding: 8px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .modal-product-head {
    grid-template-columns: 66px 1fr;
  }

  .modal-product-head img {
    width: 66px;
  }

  .modal-actions {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
  }
}

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

@keyframes swipeCoach {
  0%, 100% { transform: translateY(6px); opacity: 0.55; }
  45% { transform: translateY(-8px); opacity: 1; }
}
