/* ParkBound Cases — Guidebook Scroll layout */

:root {
  --evergreen: #1E392A;
  --cream: #F5F0E6;
  --orange: #D95D39;
  --text: #1E392A;
  --text-muted: #4a5c52;
  --border: rgba(30, 57, 42, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 56px;
  --device-trigger-h: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--cream);
  padding-bottom: calc(var(--device-trigger-h) + 8px);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-h);
  padding: 0 1rem;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo-img {
  height: 32px;
  width: auto;
  max-width: min(220px, 55vw);
}

.header__cart-icon {
  position: absolute;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--evergreen);
}

.header__cart-svg {
  width: 22px;
  height: 22px;
}

.header__cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cream);
  background: var(--orange);
  border-radius: 999px;
}

.header__cart-badge--pulse {
  animation: badge-pulse 0.3s ease;
}

@keyframes badge-pulse {
  50% { transform: scale(1.15); }
}

/* ===== HERO + SHOWCASE (above the fold) ===== */
.hero {
  position: relative;
  padding: 1.25rem 0 1.5rem;
  background:
    linear-gradient(180deg, rgba(30, 57, 42, 0.06) 0%, transparent 120px),
    var(--cream);
  border-bottom: 1px solid var(--border);
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero__copy {
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero__headline {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--evergreen);
}

.hero__subhead {
  margin: 0 auto 0.65rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.45;
}

.hero__meta {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__meta strong {
  color: var(--evergreen);
}

.hero__cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--orange);
  border: none;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.hero__cta:hover {
  transform: translateY(-1px);
  background: #c44f2f;
  box-shadow: 0 6px 20px rgba(217, 93, 57, 0.35);
}

/* Featured cases — visible immediately on load */
.hero-showcase {
  width: 100%;
  min-width: 0;
}

.hero-showcase__label {
  margin: 0 0 0.65rem;
  padding: 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.hero-showcase__track {
  display: flex;
  gap: 0.85rem;
  padding: 0 0.25rem 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-showcase__track::-webkit-scrollbar {
  display: none;
}

.hero-showcase__item {
  flex: 0 0 42%;
  max-width: 168px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-showcase__item--1 {
  flex: 0 0 46%;
  max-width: 180px;
}

.hero-showcase__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(30, 57, 42, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-showcase__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30, 57, 42, 0.14);
}

.hero-showcase__frame {
  aspect-ratio: 4 / 5;
  padding: 0.35rem;
  background: linear-gradient(165deg, #faf7f0 0%, #ebe4d4 100%);
}

.hero-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-showcase__caption {
  padding: 0.55rem 0.65rem 0.65rem;
  background: var(--evergreen);
  color: var(--cream);
}

.hero-showcase__park {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero-showcase__title {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.62rem;
  opacity: 0.85;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-showcase__price {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f0c9a8;
}

.hero-showcase__add {
  margin-top: 0.45rem;
  width: 100%;
  padding: 0.45rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--evergreen);
  background: var(--cream);
  border: 1.5px solid var(--evergreen);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}

.hero-showcase__add:hover {
  background: var(--evergreen);
  color: var(--cream);
}

.hero-showcase__empty {
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  padding: 2.5rem 1.25rem 1rem;
  text-align: center;
}

.section-heading__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--evergreen);
}

.section-heading__sub {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== PARK CAROUSEL ===== */
.park-carousel-section {
  background: var(--cream);
  padding-bottom: 1rem;
}

.park-carousel {
  display: flex;
  gap: 1rem;
  padding: 0 1.25rem 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.park-carousel::-webkit-scrollbar {
  display: none;
}

.park-card {
  flex: 0 0 72%;
  max-width: 280px;
  scroll-snap-align: start;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: border-color 0.2s, transform 0.2s;
}

.park-card:hover {
  transform: translateY(-2px);
}

.park-card--active {
  border-color: var(--orange);
}

.park-card__art {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--evergreen) 0%, #2d5a42 50%, var(--orange) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.park-card__art--photo {
  padding: 0;
  align-items: stretch;
  background: #ebe4d4;
}

.park-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 0.35rem;
}

.park-card__name-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 57, 42, 0.88) 35%, rgba(30, 57, 42, 0.96) 100%);
  margin-top: auto;
}

.park-card__art--photo .park-card__name-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.park-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.park-card__meta {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.park-card--all .park-card__art {
  background: linear-gradient(135deg, #2d5a42, var(--evergreen));
}

/* ===== TRENDING CARDS ===== */
.trending-section {
  background: white;
  padding-bottom: 2rem;
}

.trending-cards {
  display: flex;
  gap: 1rem;
  padding: 0 1.25rem 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trending-cards::-webkit-scrollbar {
  display: none;
}

.trending-card {
  flex: 0 0 68%;
  max-width: 260px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
}

.trending-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.trending-card__image-wrap {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trending-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: multiply;
  filter: url(#mockup-rm-white);
  transform: scale(1.06);
  transform-origin: center center;
}

/* Printify mockups — same treatment fleet stores use (removes white halo / top seam) */
.case-mockup-frame {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-mockup-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: url(#mockup-rm-white);
  transform: scale(1.06);
  transform-origin: center center;
}

.cart-item__image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--cream);
  border-radius: var(--radius);
  mix-blend-mode: multiply;
  filter: url(#mockup-rm-white);
}

.product-gallery {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.product-gallery__main {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: url(#mockup-rm-white);
  transform: scale(1.06);
  transform-origin: center center;
}

.trending-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 57, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  pointer-events: none;
}

.trending-card__park {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.trending-card__title {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(245, 240, 230, 0.85);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  gap: 0.5rem;
}

.trending-card__price {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--evergreen);
  background: var(--cream);
  border-radius: 999px;
}

.trending-card__add {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--orange);
  border: none;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.trending-card__add:hover {
  background: #c04e2f;
}

/* ===== SHIPPING ALERT ===== */
.shipping-alert {
  margin: 0 1.25rem 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  background: rgba(217, 93, 57, 0.12);
  border-radius: var(--radius);
  color: var(--evergreen);
}

.shipping-alert--free {
  background: rgba(30, 57, 42, 0.1);
}

/* ===== FIELD NOTES ===== */
.field-notes {
  padding: 3rem 1.25rem;
  background: var(--evergreen);
  color: var(--cream);
}

.field-notes__inner {
  max-width: 640px;
  margin: 0 auto;
}

.field-notes__label {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.field-notes__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.field-notes__body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.92;
}

/* ===== VOICES ===== */
.voices-section {
  padding: 1rem 0 2.5rem;
  background: var(--cream);
}

.voices-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.voice-card {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
}

.voice-card__quote {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--evergreen);
}

.voice-card__author {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-muted);
}

/* ===== SHIPPING RIBBON ===== */
.shipping-ribbon-section {
  overflow: hidden;
  background: var(--orange);
  color: var(--cream);
}

.shipping-ribbon {
  padding: 0.75rem 0;
  overflow: hidden;
}

.shipping-ribbon__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ribbon-scroll 28s linear infinite;
  white-space: nowrap;
}

.shipping-ribbon__item {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shipping-ribbon__item::before {
  content: '✦ ';
  opacity: 0.7;
}

@keyframes ribbon-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
  background: var(--evergreen);
  color: rgba(245, 240, 230, 0.85);
}

.footer__mark {
  margin: 0 auto 0.75rem;
}

.footer__tagline {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.75);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--cream);
}

.footer__copy {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ===== CART DRAWER ===== */
.cart-drawer {
  position: fixed;
  right: -350px;
  top: 0;
  width: 350px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 200;
  overflow-y: auto;
  transition: right 0.3s;
}

.cart-drawer--open {
  right: 0;
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--evergreen);
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  color: var(--text-muted);
}

.cart-drawer__items {
  padding: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-item__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--cream);
}

.cart-item__details {
  flex: 1;
}

.cart-item__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.cart-item__model {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.cart-item__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 0.5rem;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item__qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 4px;
  font-size: 1rem;
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
}

.cart-drawer__summary {
  padding: 1.5rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
  position: sticky;
  bottom: 0;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.cart-summary-row--total {
  font-size: 1.25rem;
  font-weight: 700;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.cart-drawer__checkout {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

.cart-drawer__checkout:hover {
  background: #c04e2f;
}

.cart-drawer__empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-muted);
}

/* ===== STICKY CART BAR ===== */
.sticky-cart-bar {
  display: none;
  position: fixed;
  bottom: calc(var(--device-trigger-h) + 8px);
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  z-index: 150;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.sticky-cart-bar--show {
  display: flex;
}

.sticky-cart-bar__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  cursor: pointer;
}

.sticky-cart-bar__svg {
  width: 20px;
  height: 20px;
  color: var(--evergreen);
}

.sticky-cart-bar__count {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sticky-cart-bar__price {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--orange);
}

.sticky-cart-bar__checkout {
  padding: 0.75rem 1.25rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== DEVICE BOTTOM SHEET ===== */
.device-sheet {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}

.device-sheet--open {
  pointer-events: auto;
  visibility: visible;
}

.device-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 57, 42, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.device-sheet--open .device-sheet__backdrop {
  opacity: 1;
}

.device-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
  background: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.device-sheet--open .device-sheet__panel {
  transform: translateY(0);
}

.device-sheet__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1;
}

.device-sheet__title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--evergreen);
}

.device-sheet__sub {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.device-sheet__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.device-sheet__tab {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--evergreen);
  transition: border-color 0.2s, background 0.2s;
}

.device-sheet__tab--active {
  border-color: var(--evergreen);
  background: var(--cream);
}

.device-sheet__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.device-sheet__dropdown {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--text);
}

.device-sheet__confirm {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--evergreen);
  border: none;
  border-radius: var(--radius);
}

.device-sheet__confirm:hover {
  background: #163022;
}

.device-sheet-trigger {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--device-trigger-h);
  padding: 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--evergreen);
  border: none;
  border-top: 1px solid rgba(245, 240, 230, 0.15);
  padding-bottom: env(safe-area-inset-bottom);
}

.device-sheet-trigger__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: calc(var(--device-trigger-h) + 1rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.25rem;
  background: var(--evergreen);
  color: var(--cream);
  border-radius: var(--radius);
  font-size: 0.875rem;
  z-index: 250;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.toast--success {
  background: var(--evergreen);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 639px) {
  .hero__layout {
    display: flex;
    flex-direction: column;
  }

  .hero-showcase {
    order: -1;
  }

  .hero__headline {
    font-size: 1.65rem;
  }

  .hero__subhead {
    font-size: 0.88rem;
  }
}

@media (min-width: 640px) {
  .park-card {
    flex: 0 0 240px;
  }

  .trending-card {
    flex: 0 0 220px;
  }

  .voices-grid {
    flex-direction: row;
  }

  .voice-card {
    flex: 1;
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 1.75rem 0 2rem;
  }

  .hero__layout {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .hero__copy {
    flex: 0 0 36%;
    text-align: left;
  }

  .hero__subhead {
    margin-left: 0;
  }

  .hero-showcase {
    flex: 1;
    min-width: 0;
  }

  .hero-showcase__label {
    text-align: left;
  }

  .hero-showcase__item,
  .hero-showcase__item--1 {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
  }

  .hero-showcase__track {
    gap: 1rem;
    overflow-x: visible;
    padding-bottom: 0;
  }
}

@media (min-width: 769px) {
  .cart-drawer {
    width: 400px;
    right: -400px;
  }

  .sticky-cart-bar {
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    bottom: calc(var(--device-trigger-h) + 12px);
  }

  .device-sheet__panel {
    max-width: 420px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 100%);
    border-radius: var(--radius-lg);
    margin-bottom: calc(var(--device-trigger-h) + 8px);
  }

  .device-sheet--open .device-sheet__panel {
    transform: translate(-50%, 0);
  }
}
