/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:      #090909;
  --surface:    #111111;
  --surface-2:  #181818;
  --border:     #242424;
  --text:       #ede9e3;
  --muted:      #777;
  --accent:     #e60023;
  --accent-h:   #cc001f;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container: 1320px;
  --px:        clamp(20px, 5vw, 80px);
  --section:   clamp(48px, 5vw, 72px);
  --nav-h:     72px;
  --bar-h:     40px;
  --drawer-w:  500px;
  --radius:    0px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 22px); }
p { color: var(--muted); line-height: 1.75; }

.label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}
.page { padding-top: calc(var(--nav-h) + var(--bar-h)); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--black);
}
.btn--primary:hover { background: var(--accent-h); }
.btn--ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--black);
}
.btn svg { width: 16px; height: 16px; }

/* ─── ANNOUNCE BAR ───────────────────────────────────────── */
.bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--bar-h);
  background: var(--accent);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 1001;
}
.bar a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
}
.bar a:hover { opacity: 0.7; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--bar-h);
  left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav--scrolled {
  background: rgba(9,9,9,0.96);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  width: 100%;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__eyebrow {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
}
.logo__main {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(237,233,227,0.7);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}
.nav__cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 10px 20px;
  transition: background 0.2s;
}
.nav__cart-btn:hover { background: var(--accent-h); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + var(--bar-h) + 40px) var(--px) 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(237,233,227,0.3);
  transition: color 0.2s;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.mobile-nav__links a:hover { color: var(--text); }
.mobile-nav__cta {
  margin-top: 40px;
}
.mobile-nav__cta .btn { width: 100%; justify-content: center; }

/* hamburger active */
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero__videos {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0s linear 0.8s;
}
.hero__video.active {
  opacity: 0.9;
  visibility: visible;
  transition: opacity 0.8s ease-in-out, visibility 0s linear 0s;
}
/* Mobile: hide background videos */
@media (max-width: 768px) {
  .hero__videos { display: none; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,9,0.3) 0%,
    rgba(9,9,9,0.15) 40%,
    rgba(9,9,9,0.7) 80%,
    rgba(9,9,9,1) 100%
  );
}
.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,0,35,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--px);
}
.hero__logo {
  display: block;
  width: clamp(160px, 20vw, 280px);
  height: auto;
  margin: 0 auto 32px;
  opacity: 1;
  image-rendering: -webkit-optimize-contrast;
}
.hero__content .label { margin-bottom: 24px; }
.hero__headline {
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
}
.hero__headline em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(237,233,227,0.6);
  max-width: 480px;
  margin: 0 auto 32px;
  font-family: var(--font-body);
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero__scroll {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-line 1.8s ease infinite;
}
@keyframes scroll-line {
  0% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.5) translateY(20px); }
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px var(--px);
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.trust__item:last-child { border-right: none; }
.trust__num {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.trust__label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.section-header .label { margin-bottom: 16px; }
.section-header p { font-size: 17px; }

/* ─── CATEGORIES ─────────────────────────────────────────── */
.categories {
  padding: var(--section) var(--px);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  cursor: pointer;
}
.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s ease;
  opacity: 0.75;
}
.cat-card:hover .cat-card__img {
  transform: scale(1.05);
  opacity: 0.8;
}
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.9) 0%, rgba(9,9,9,0.1) 60%);
}
.cat-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.cat-card__content .label { margin-bottom: 6px; }
.cat-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  min-height: 2.4em;
  display: flex;
  align-items: flex-end;
}
.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}
.cat-card:hover .cat-card__link { gap: 12px; }
.cat-card--large { grid-row: span 2; }

/* ─── PUFFCO SECTION ─────────────────────────────────────── */
.puffco {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section) var(--px);
  overflow: hidden;
}
.puffco__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.puffco__label { margin-bottom: 20px; }
.puffco__headline {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
}
.puffco__body {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.puffco__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.puffco__product {
  background: #0d0d0d;
  padding: 16px 12px 20px;
  border: 1px solid var(--border);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.puffco__product:hover {
  border-color: var(--accent);
  background: rgba(230,0,35,0.06);
}
.puffco__product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 12px;
  opacity: 0.95;
  transition: opacity 0.3s, transform 0.4s;
}
.puffco__product:hover img {
  opacity: 1;
  transform: scale(1.04);
}
.puffco__product-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 4px;
}
.puffco__product-price {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}
.puffco__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #0a0a0a;
}
.puffco__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
}

/* ─── BRAND STORY ────────────────────────────────────────── */
.story {
  padding: var(--section) var(--px);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.story__stat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.story__stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.story__stat-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.story__text .label { margin-bottom: 20px; }
.story__text h2 { margin-bottom: 24px; }
.story__text p { font-size: 17px; line-height: 1.8; margin-bottom: 20px; }
.story__text p:last-of-type { margin-bottom: 36px; }

/* ─── GLASS ART ──────────────────────────────────────────── */
.glass-art {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--section) var(--px);
}
.glass-art__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.glass-art__header .label { margin-bottom: 16px; }
.glass-art__header h2 { margin-bottom: 16px; }
.glass-art__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  height: 560px;
}
.glass-art__item {
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}
.glass-art__item:first-child { grid-row: span 2; }
.glass-art__caption {
  text-align: center;
  margin-top: 40px;
}
.glass-art__caption p {
  font-size: 15px;
  color: var(--muted);
  max-width: 500px;
  margin: 12px auto 0;
}

/* ─── DELIVERY SECTION ───────────────────────────────────── */
.delivery-section {
  padding: var(--section) var(--px);
  background: var(--black);
}
.delivery-section__header {
  text-align: center;
  margin-bottom: 64px;
}
.delivery-section__header .label { margin-bottom: 16px; }
.delivery-section__header h2 { margin-bottom: 16px; }
.delivery-section__header p { max-width: 480px; margin: 0 auto; }
.delivery-zones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}
.zone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.zone-card:hover {
  border-color: var(--accent);
  background: rgba(230,0,35,0.04);
}
.zone-card__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: var(--accent);
}
.zone-card__city {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 4px;
}
.zone-card__note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.delivery-section__cta {
  display: none; /* replaced by .delivery-zone-bar */
}
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}
.delivery-step {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
}
.delivery-step__num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.delivery-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.delivery-step p { font-size: 15px; }

/* ─── PRODUCTS GRID ──────────────────────────────────────── */
.products-section {
  padding: var(--section) var(--px);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.product-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.product-tab {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: all 0.2s;
}
.product-tab:hover { color: var(--text); border-color: var(--muted); }
.product-tab.active {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.product-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s;
}
.product-card:hover { border-color: rgba(230,0,35,0.4); }
.product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #0d0d0d;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  opacity: 0.92;
  transition: opacity 0.3s, transform 0.4s;
}
.product-card:hover .product-card__img img {
  opacity: 1;
  transform: scale(1.04);
}
.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__brand {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  flex: 1;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.product-card__cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--black);
  text-align: center;
  transition: background 0.2s;
  margin-top: auto;
  display: block;
  cursor: pointer;
  border: none;
  width: 100%;
}
.product-card__cta:hover { background: var(--accent-h); }

/* ─── LOCATIONS SECTION ──────────────────────────────────── */
.locations-section {
  padding: var(--section) var(--px);
}
.locations-section__header {
  text-align: center;
  margin-bottom: 56px;
}
.location-search {
  display: flex;
  gap: 2px;
  max-width: 480px;
  margin: 24px auto 0;
}
.location-search input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.2s;
}
.location-search input::placeholder { color: var(--muted); }
.location-search input:focus { border-color: var(--accent); }
.location-search button {
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  transition: background 0.2s;
}
.location-search button:hover { background: var(--accent-h); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color 0.2s;
}
.location-card:hover { border-color: rgba(230,0,35,0.4); }
.location-card__city {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.location-card__addr {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.location-card__link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.location-card:hover .location-card__link { gap: 10px; }
.locations-cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── INSTAGRAM SECTION ──────────────────────────────────── */
.instagram {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--section) 0;
  text-align: center;
  overflow: hidden;
}
.instagram .wrap { padding: 0 var(--px); }
.instagram .label { margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.instagram h2 { margin-bottom: 8px; }
.instagram .wrap > p { margin-bottom: 40px; }

/* Live dot pulse */
.ig-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: igPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes igPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(230,0,35,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(230,0,35,0); }
}

/* Ticker wrapper — full bleed, fades on edges */
.ig-ticker-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ig-ticker-wrap::before,
.ig-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ig-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}
.ig-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

/* Scrolling track */
.ig-ticker {
  display: flex;
  gap: 3px;
  width: max-content;
  animation: igScroll 22s linear infinite;
}
.ig-ticker:hover { animation-play-state: paused; }

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

/* Individual tiles */
.ig-tile {
  display: block;
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
  position: relative;
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.3s;
  pointer-events: none;
}
.ig-tile:hover img {
  filter: brightness(1) saturate(1.1);
  transform: scale(1.04);
}
.ig-tile:hover::after {
  background: rgba(230,0,35,0.07);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px var(--px) 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.footer__brand .logo__eyebrow { font-size: 8px; letter-spacing: 4px; color: var(--accent); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; }
.footer__brand .logo__main { font-size: 22px; font-weight: 800; letter-spacing: 3px; color: var(--text); font-family: var(--font-display); text-transform: uppercase; }
.footer__brand-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 20px; }
.footer__tagline { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; max-width: 260px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }
.footer__col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy { font-size: 13px; color: var(--muted); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer__legal a:hover { color: var(--text); }
.footer__age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
}

/* ─── CART DRAWER ────────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: var(--drawer-w);
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}
.cart-drawer__location {
  display: none;
}
.cart-drawer__location select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12px;
  padding: 6px 12px;
  outline: none;
  cursor: pointer;
}
.cart-drawer__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
  font-size: 18px;
}
.cart-drawer__close:hover { border-color: var(--text); color: var(--text); }
.cart-drawer__body {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.cart-drawer__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.cart-drawer__loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--surface);
}
.cart-drawer__loading p {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-drawer__loading.hidden { display: none; }
.spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cart-drawer__zone-bar {
  background: rgba(230,0,35,0.08);
  border-bottom: 1px solid rgba(230,0,35,0.2);
  padding: 10px 28px;
  font-size: 12px;
  color: rgba(237,233,227,0.7);
  flex-shrink: 0;
  line-height: 1.5;
}
.cart-drawer__footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer__footer p {
  font-size: 11px;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ─── AGE GATE ───────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}
.age-gate__box {
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.age-gate__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 40px;
}
.age-gate__logo .logo__eyebrow { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 5px; color: var(--accent); text-transform: uppercase; }
.age-gate__logo .logo__main { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: 4px; color: var(--text); text-transform: uppercase; }
.age-gate__divider {
  width: 48px; height: 1px;
  background: var(--accent);
  margin: 0 auto 40px;
}
.age-gate__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.age-gate__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}
.age-gate__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.age-gate__btns button {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px;
  transition: all 0.2s;
}
.age-gate__yes {
  background: var(--accent);
  color: var(--black);
}
.age-gate__yes:hover { background: var(--accent-h); }
.age-gate__no {
  border: 1px solid var(--border);
  color: var(--muted);
}
.age-gate__no:hover { border-color: var(--muted); color: var(--text); }
.age-gate__legal {
  font-size: 11px;
  color: rgba(119,119,119,0.6);
  letter-spacing: 0.5px;
  line-height: 1.6;
}


/* ─── LOGO IMAGE ─────────────────────────────────────────────── */
.hop-logo {
  display: block;
  object-fit: contain;
  max-width: 100%;
}
.nav__logo .hop-logo { height: 42px; }
.age-gate__logo .hop-logo { height: 72px; margin: 0 auto; }
.footer__brand-logo .hop-logo { height: 52px; }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── INNER PAGE HERO ────────────────────────────────────── */
.page-hero {
  padding: clamp(80px,12vw,160px) var(--px) clamp(60px,8vw,100px);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 { max-width: 700px; margin: 0 auto 24px; }
.page-hero p { max-width: 560px; margin: 0 auto; }

/* ─── UTILITY ────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.mt-auto { margin-top: auto; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card--large { grid-row: span 1; }
  .puffco__inner { grid-template-columns: 1fr; gap: 48px; }
  .puffco__visual { display: none; }
  .story__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .delivery-zones { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cart-btn { display: none; }
  .nav__hamburger { display: flex; }
  .section-header { grid-template-columns: 1fr; gap: 20px; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-right: none; }
  .trust__item:nth-child(3) { border-bottom: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .puffco__products { grid-template-columns: 1fr 1fr; }
  .story__stats { grid-template-columns: 1fr 1fr; }
  .glass-art__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .glass-art__item { aspect-ratio: 1; }
  .glass-art__item:first-child { grid-column: span 2; }
  .delivery-zones { grid-template-columns: repeat(2, 1fr); }
  .delivery-steps { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cart-drawer { width: 100%; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .age-gate__btns { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: clamp(26px, 7vw, 36px); }
  .hero__content { overflow: hidden; }
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .puffco__products { grid-template-columns: 1fr; }
  .story__stats { grid-template-columns: 1fr; }
  .delivery-zones { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
}

/* ─── REAL IMAGE HELPERS ─────────────────────────────────── */
.puffco__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  padding: 32px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.8));
}
/* Puffco product thumbnail — see rule at top of .puffco__product block */
.puffco__product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 12px;
  opacity: 0.95;
  transition: opacity 0.3s;
}
.puffco__product:hover img { opacity: 1; }
.glass-art__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.3s, transform 0.5s;
}
.glass-art__item:hover img { opacity: 0.9; transform: scale(1.04); }

/* ─── DELIVERY ZONE BAR ──────────────────────────────────── */
.delivery-zone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}
.delivery-zone-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  min-width: 0;
}
.delivery-zone-bar__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.delivery-zone-bar__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.delivery-zone-bar__pills span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(237,233,227,0.65);
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  background: rgba(255,255,255,0.03);
  transition: color 0.2s, border-color 0.2s;
}
.delivery-zone-bar__pill--more {
  color: var(--accent) !important;
  border-color: rgba(230,0,35,0.3) !important;
  background: rgba(230,0,35,0.06) !important;
  font-weight: 700 !important;
}
.delivery-zone-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 12px 24px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.delivery-zone-bar__cta:hover {
  background: var(--accent);
  color: #090909;
}
.delivery-zone-bar__cta svg {
  transition: transform 0.2s;
}
.delivery-zone-bar__cta:hover svg {
  transform: translateX(3px);
}
@media (max-width: 768px) {
  .delivery-zone-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }
  .delivery-zone-bar__cta { width: 100%; justify-content: center; }
}

/* ─── GOOGLE REVIEWS ─────────────────────────────────────── */
.reviews {
  padding: var(--section) 0 calc(var(--section) * 0.75);
  background: var(--black);
  overflow: hidden;
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

/* Header */
.reviews__header { margin-bottom: 40px; }
.reviews__hero-rating {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.reviews__score { display: flex; align-items: center; gap: 16px; }
.reviews__number {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  letter-spacing: -2px;
}
.reviews__stars-large {
  display: flex;
  gap: 4px;
}
.reviews__stars-large svg {
  width: 28px; height: 28px;
  color: #FBBC05;
}
.reviews__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews__count {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.reviews__google-icon { width: 16px; height: 16px; }

/* AI Summary */
.reviews__summary {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(230,0,35,0.06) 0%, rgba(230,0,35,0.02) 100%);
  border: 1px solid rgba(230,0,35,0.18);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin-bottom: 56px;
}
.reviews__summary-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding-top: 2px;
}
.reviews__summary-icon svg {
  width: 20px; height: 20px;
  color: var(--accent);
}
.reviews__summary-icon span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  writing-mode: vertical-rl;
}
.reviews__summary-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reviews__summary-bullets li {
  font-size: 14px;
  color: rgba(237,233,227,0.8);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.reviews__summary-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* Marquee */
.reviews__marquee-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 52px;
}
.reviews__marquee-wrap::before,
.reviews__marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews__marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.reviews__marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}
.reviews__marquee {
  overflow: hidden;
  width: 100%;
}
.reviews__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: rev-scroll 42s linear infinite;
}
.reviews__track:hover { animation-play-state: paused; }
@keyframes rev-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Review Card */
.rev-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.rev-card:hover {
  border-color: rgba(230,0,35,0.35);
  transform: translateY(-2px);
}
.rev-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.rev-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(230,0,35,0.12);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.rev-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text);
}
.rev-card__date {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.rev-card__stars {
  display: flex;
  gap: 2px;
  margin-left: auto;
  flex-shrink: 0;
  padding-top: 2px;
}
.rev-card__stars svg {
  width: 14px; height: 14px;
  color: #FBBC05;
}
.rev-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(237,233,227,0.75);
}

/* CTA */
.reviews__cta {
  text-align: center;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews__hero-rating { gap: 20px; }
  .reviews__number { font-size: clamp(48px, 12vw, 72px); }
  .reviews__stars-large svg { width: 22px; height: 22px; }
  .reviews__summary { flex-direction: column; gap: 16px; padding: 20px; }
  .reviews__summary-icon { flex-direction: row; writing-mode: horizontal-tb; }
  .reviews__summary-icon span { writing-mode: horizontal-tb; font-size: 11px; }
  .rev-card { width: 290px; }
  .reviews__marquee-wrap::before,
  .reviews__marquee-wrap::after { width: 60px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEW FEATURES — BATCH 2
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── PAGE TRANSITION OVERLAY ──────────────────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-transition.loaded {
  opacity: 0;
}
.page-transition.leaving {
  opacity: 1;
  pointer-events: all;
}

/* ─── ANNOUNCE BAR ROTATOR ─────────────────────────────────────────────── */
.bar__msg { display: none; }
.bar__msg--active { display: inline; }

/* ─── HERO VIDEO ───────────────────────────────────────────────────────── */
video.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

/* ─── PARALLAX WRAPPER ─────────────────────────────────────────────────── */
.parallax-wrap {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.parallax-wrap img {
  will-change: transform;
  height: 120%;
  width: 100%;
  object-fit: cover;
  margin-top: -10%;
}

/* ─── BUNDLE & SAVE ────────────────────────────────────────────────────── */
.bundle-section {
  padding: var(--section) var(--px);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bundle-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 48px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bundle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}
.bundle-card__products {
  display: flex;
  align-items: center;
  gap: 28px;
}
.bundle-product {
  text-align: center;
  flex: 1;
}
.bundle-product__img {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}
.bundle-product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.bundle-product__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}
.bundle-product__price {
  font-size: 13px;
  color: var(--muted);
}
.bundle-plus {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}
.bundle-card__summary {
  min-width: 260px;
  padding-left: 48px;
  border-left: 1px solid var(--border);
}
.bundle-summary__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.bundle-summary__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.bundle-summary__original {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.bundle-summary__save {
  font-size: 13px;
  color: #22c55e;
  font-weight: 600;
}
.bundle-summary__total {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 16px 0 24px;
}
@media (max-width: 1100px) {
  .bundle-card { grid-template-columns: 1fr; }
  .bundle-card__summary {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 32px;
  }
}
@media (max-width: 640px) {
  .bundle-card { padding: 28px 20px; gap: 28px; }
  .bundle-card__products { gap: 12px; }
  .bundle-product__img { width: 80px; height: 80px; }
  .bundle-plus { font-size: 20px; }
}

/* ─── OREGON LOCAL ─────────────────────────────────────────────────────── */
.oregon-local {
  padding: var(--section) var(--px);
  border-top: 1px solid var(--border);
}
.oregon-local__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.oregon-local__milestones {
  margin-top: 40px;
}
.milestone {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.milestone:first-child { border-top: 1px solid var(--border); }
.milestone__year {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}
.milestone__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.oregon-local__visual {
  position: relative;
}
.oregon-local__visual > img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.oregon-local__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: white;
  padding: 24px 28px;
  text-align: center;
  min-width: 140px;
}
.oregon-local__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}
.oregon-local__badge-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 6px;
  line-height: 1.5;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .oregon-local__inner { grid-template-columns: 1fr; gap: 0; }
  .oregon-local__visual { margin-top: 56px; }
  .oregon-local__badge { right: 0; bottom: -16px; }
}

/* ─── PRESS STRIP ──────────────────────────────────────────────────────── */
.press-strip {
  padding: 52px var(--px);
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.press-strip__eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.press-logo {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 21px);
  font-weight: 800;
  color: rgba(237,233,227,0.15);
  letter-spacing: -0.5px;
  padding: 14px 28px;
  border-right: 1px solid var(--border);
  transition: color 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.press-logo:last-child { border-right: none; }
.press-logo:hover { color: rgba(237,233,227,0.65); }
@media (max-width: 640px) {
  .press-logo { padding: 10px 16px; font-size: 14px; }
}

/* ─── MAP SECTION ──────────────────────────────────────────────────────── */
.map-section {
  position: relative;
  border-bottom: 1px solid var(--border);
}
.map-section__header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 56px var(--px);
  text-align: center;
}
.map-section__header .label { margin-bottom: 12px; }
.map-section__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1;
}
.map-section__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
#hop-map {
  width: 100%;
  height: 460px;
  background: var(--surface-2);
  filter: grayscale(1) invert(1) hue-rotate(200deg) brightness(0.82);
}
.map-nearest-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px 32px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: 100%;
}
.map-nearest-btn:hover { opacity: 0.88; }
.map-nearest-btn:disabled { opacity: 0.5; cursor: default; }
.map-nearest-result {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 14px 20px;
  font-size: 13px;
  display: none;
  line-height: 1.6;
  color: var(--text);
  width: 100%;
  text-align: left;
}
.map-nearest-result strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  #hop-map { height: 320px; }
  .map-section__header { padding: 40px var(--px); }
}

/* ─── ETA ESTIMATOR ────────────────────────────────────────────────────── */
.eta-estimator {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 28px 36px;
  margin-top: 36px;
  max-width: 520px;
}
.eta-estimator__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eta-estimator__row {
  display: flex;
  gap: 0;
}
.eta-estimator__row input {
  flex: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 18px;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.eta-estimator__row input:focus { border-color: rgba(230,0,35,0.6); }
.eta-estimator__row input::placeholder { color: var(--muted); }
.eta-estimator__row .btn { flex-shrink: 0; border-radius: 0; }
.eta-result {
  margin-top: 14px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.65;
  border-left: 3px solid;
  display: none;
}
.eta-result a { color: var(--accent); text-decoration: underline; }
.eta-result--success { background: rgba(34,197,94,0.07); border-color: #22c55e; }
.eta-result--warning { background: rgba(251,191,36,0.07); border-color: #FBBC05; }
.eta-result--error   { background: rgba(230,0,35,0.07);   border-color: var(--accent); }
.eta-result--info    { background: var(--surface); border-color: var(--border); color: var(--muted); }
@media (max-width: 600px) {
  .eta-estimator { padding: 22px 18px; }
  .eta-estimator__row { flex-direction: column; }
  .eta-estimator__row input { border-right: 1px solid var(--border); border-bottom: none; }
}

/* ─── INSTAGRAM TICKER — MOBILE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .ig-ticker-wrap::before,
  .ig-ticker-wrap::after { width: 60px; }
  .ig-ticker { animation-duration: 16s; }
}

/* ─── DELIVERY BADGES ─────────────────────────────────────────── */
.delivery-hook__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 40px;
}
.delivery-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 2px;
}
.delivery-badge:first-child {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── MOBILE STICKY CTA ────────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 16px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.mobile-sticky-cta__btn--primary {
  background: var(--accent);
  color: #fff;
}
.mobile-sticky-cta__btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.mobile-sticky-cta__btn:hover { opacity: 0.85; }

@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  /* Add bottom padding to page so sticky bar doesn't overlap content */
  .footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ─── FOOTER SMS CAPTURE ──────────────────────────────────────── */
.footer__sms { margin-top: 24px; }
.footer__sms-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.footer__sms-row {
  display: flex;
  gap: 0;
  max-width: 320px;
}
.footer__sms-input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  border-radius: 0;
}
.footer__sms-input::placeholder { color: var(--muted); }
.footer__sms-input:focus { border-color: var(--accent); }
.footer__sms-btn {
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.footer__sms-btn:hover { background: var(--accent-h); }
.footer__sms-fine {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* ── Locations: hours callout ── */
.locations-hours-callout {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}
.locations-hours-callout strong { color: var(--white); }
.locations-hours-callout svg { flex-shrink: 0; color: var(--accent); }

/* ── Locations: phone callout ── */
.locations-phone-callout {
  text-align: center;
  padding: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.locations-phone-callout a { color: var(--accent); text-decoration: none; }
.locations-phone-callout a:hover { text-decoration: underline; }

/* ── Delivery: ETA cutoff note ── */
.eta-cutoff-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

/* ── About: milestone timeline ── */
.about-timeline {
  max-width: 560px;
  margin: 48px auto;
  text-align: center;
}
.about-timeline__title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}
.about-timeline__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: none;
  padding-left: 0;
}
.about-timeline__item {
  padding: 20px 0;
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.about-timeline__item:last-child {
  border-bottom: none;
}
.about-timeline__item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 auto 12px;
}
.about-timeline__year {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-align: center;
}
.about-timeline__desc {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

/* ── About: Instagram CTA ── */
.about-instagram {
  text-align: center;
  padding: 80px 0;
  background: var(--surface);
}

/* Scroll hint — hidden on desktop, shown on mobile via media query below */
.scroll-hint { display: none; }

/* ─── MOBILE LAYOUT REFINEMENTS ────────────────────────── */
@media (max-width: 768px) {

  /* Horizontal scroll product tabs (no stacking on mobile) */
  .product-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin-left: calc(-1 * var(--px));
    margin-right: calc(-1 * var(--px));
    padding-left: var(--px);
    padding-right: var(--px);
    margin-bottom: 32px;
    /* fade edge hint that content scrolls */
    mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 32px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 32px), transparent 100%);
  }
  .product-tabs::-webkit-scrollbar { display: none; }
  .product-tab {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 11px;
  }

  /* Center titles + labels + body across pages */
  .about-mission__text,
  .about-puffco__text,
  .about-culture__text {
    text-align: center;
  }
  .about-mission__text .label,
  .about-puffco__text .label,
  .about-culture__text .label {
    display: block;
  }

  /* Section headers center their content */
  .section-header { text-align: center; }
  .section-header__title { margin-left: auto; margin-right: auto; }

  /* Puffco home section */
  .puffco__inner > div:first-child { text-align: center; }
  .puffco__label,
  .puffco__headline,
  .puffco__body { text-align: center; }
  .puffco__products { margin-left: auto; margin-right: auto; }

  /* Story / glass-art / inner-page text columns */
  .story__text,
  .glass-art__text { text-align: center; }

  /* Center buttons that appear inside left-aligned text blocks */
  .about-mission__text .btn,
  .about-puffco__text .btn,
  .about-culture__text .btn,
  .puffco__inner .btn,
  .story__text .btn,
  .glass-art__text .btn,
  .cat-section-header__cta {
    margin-left: auto;
    margin-right: auto;
  }
  .cat-section-header__cta { display: flex; justify-content: center; }

  /* CTA button groups stack and center */
  .delivery__hero-ctas,
  .about-cta__btns,
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .delivery__hero-ctas .btn,
  .about-cta__btns .btn,
  .hero__ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Category section headers (products page) */
  .cat-section-header {
    text-align: center;
  }
  .cat-section-header > div:first-child {
    text-align: center;
  }

  /* Page hero stays centered (already is) — reinforce */
  .page-hero { text-align: center; }
  .page-hero .label,
  .page-hero h1,
  .page-hero p { margin-left: auto; margin-right: auto; }

  /* ── SCROLL HINT (above every horizontal scroll strip) ─── */
  .scroll-hint {
    display: block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin: 8px 0 12px;
    opacity: 0.9;
    animation: scroll-hint-pulse 1.8s ease-in-out infinite;
  }
  @keyframes scroll-hint-pulse {
    0%, 100% { transform: translateX(0); opacity: 0.85; }
    50% { transform: translateX(4px); opacity: 1; }
  }

  /* ── HORIZONTAL SCROLL CARD STRIPS ─────────────────────── */
  /* Glass art section */
  .glass-art__grid {
    display: flex !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    height: auto !important;
    margin-left: calc(-1 * var(--px));
    margin-right: calc(-1 * var(--px));
    padding: 4px var(--px) 16px;
    scroll-snap-type: x mandatory;
  }
  .glass-art__grid::-webkit-scrollbar { display: none; }
  .glass-art__item {
    flex: 0 0 70%;
    scroll-snap-align: start;
    aspect-ratio: 1 !important;
  }
  .glass-art__item:first-child {
    grid-row: auto !important;
    grid-column: auto !important;
  }

  /* Home page: category cards */
  .cat-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    margin-left: calc(-1 * var(--px));
    margin-right: calc(-1 * var(--px));
    padding: 4px var(--px) 16px;
    scroll-snap-type: x mandatory;
  }
  .cat-grid::-webkit-scrollbar { display: none; }
  .cat-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
  }
  .cat-card--large { grid-row: auto !important; }

  /* Home page: Puffco product thumbnails */
  .puffco__products {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin-left: calc(-1 * var(--px));
    margin-right: calc(-1 * var(--px));
    padding: 4px var(--px) 12px;
    scroll-snap-type: x mandatory;
  }
  .puffco__products::-webkit-scrollbar { display: none; }
  .puffco__product {
    flex: 0 0 55%;
    scroll-snap-align: start;
  }

  /* Products page: compact 2-up grid so users scan more in less space */
  .product-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }
  .product-card {
    font-size: 13px;
  }
  .product-card__name { font-size: 14px; }
  .product-card__price { font-size: 13px; }
  .product-card__body { padding: 14px 12px 16px; }
  /* Category section headers span both columns */
  .cat-section-header {
    grid-column: 1 / -1;
    padding: 24px 0 8px;
  }
}
