/* Pawsta — Italian-American grocery aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800;12..96,900&family=Archivo:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --red: #CC0000;
  --red-dark: #A30000;
  --red-deep: #7A0000;
  --yellow: #FFCB31;
  --yellow-soft: #FFE08A;
  --navy: #001E43;
  --navy-dark: #00132B;
  --cream: #FAF3E3;
  --cream-warm: #F5E9CC;
  --paper: #FFF9E8;
  --ink: #1A1410;
  --green: #008C45; /* italian flag */
  --green-pasta: #E8C896;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: "Bricolage Grotesque", system-ui, sans-serif; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

/* === ANNOUNCEMENT BAR === */
.announce {
  background: var(--red);
  color: var(--cream);
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--navy-dark);
}
.announce-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  padding-left: 56px;
}
.announce-track span { display: inline-flex; align-items: center; gap: 14px; line-height: 1; }
.announce-track .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cream);
  display: block;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: none;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--yellow); }

.nav-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}
.nav-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--cream);
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.nav-icon-btn:hover { color: var(--yellow); }
.cart-count {
  background: var(--yellow);
  color: var(--navy);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 11px;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* === LOGO === */
.logo-oval {
  display: inline-block;
  background: var(--red);
  border: 4px solid var(--cream);
  outline: 2px solid var(--red);
  border-radius: 50%;
  padding: 10px 32px 12px;
  color: var(--cream);
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
  position: relative;
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
  transform: scaleX(1.15);
}
.logo-oval::after {
  content: "®";
  position: absolute;
  bottom: -2px;
  right: -10px;
  font-size: 10px;
  color: var(--navy);
  -webkit-text-stroke: 0;
  text-shadow: none;
}
.logo-wrap { display: flex; justify-content: center; align-items: center; }

/* === HERO === */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.hero-eyebrow .flag {
  display: inline-flex;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(250,243,227,0.3);
}
.hero-eyebrow .flag span { width: 6px; height: 100%; }
.hero-eyebrow .flag .g { background: var(--green); }
.hero-eyebrow .flag .w { background: var(--cream); }
.hero-eyebrow .flag .r { background: var(--red); }

.hero h1 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.92;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--cream);
  color: transparent;
}
.hero h1 .red { color: var(--red); }
.hero h1 .yellow { color: var(--yellow); }

.hero-sub {
  font-size: 19px;
  line-height: 1.45;
  max-width: 480px;
  color: rgba(250,243,227,0.85);
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(250,243,227,0.18);
  margin-top: 8px;
}
.hero-stat .num {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: 44px;
  line-height: 1;
  color: var(--yellow);
  display: block;
}
.hero-stat .label {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,243,227,0.7);
  margin-top: 6px;
  display: block;
}

/* Hero packshot — Kona on navy directly */
.hero-pack {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.hero-pack .kona {
  position: relative;
  width: 128%;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
  z-index: 1;
}

/* checkered border */
.checker-border {
  height: 32px;
  background-image:
    linear-gradient(45deg, var(--red) 25%, transparent 25%),
    linear-gradient(-45deg, var(--red) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--red) 75%),
    linear-gradient(-45deg, transparent 75%, var(--red) 75%);
  background-size: 32px 32px;
  background-position: 0 0, 0 16px, 16px -16px, -16px 0;
  background-color: var(--cream);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 4px 0 var(--red-deep);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--red-deep); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--red-deep); }

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 0 #C99A00;
}
.btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #C99A00; }
.btn-yellow:active { transform: translateY(2px); box-shadow: 0 2px 0 #C99A00; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-ghost:hover { background: var(--cream); color: var(--navy); }

.btn-dark {
  background: var(--navy);
  color: var(--cream);
}
.btn-dark:hover { background: var(--navy-dark); }

/* === SECTION HEADER === */
.section {
  padding: 96px 0;
}
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 700px;
}

/* === COLLECTION TABS === */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.tab {
  padding: 10px 18px;
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s;
}
.tab:hover { background: var(--navy); color: var(--cream); }
.tab.active {
  background: var(--navy);
  color: var(--yellow);
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === FEATURED PRODUCT (single item) === */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--navy);
  border-radius: 20px;
  background: var(--paper);
  overflow: hidden;
}
.featured-media {
  position: relative;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--paper) 100%);
  border-right: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 24px;
}
.featured-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,30,67,0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.featured-media img {
  position: relative;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 36px rgba(0,30,67,0.28));
  z-index: 1;
}
.featured-media .card-badge { top: 20px; left: 20px; }
.featured-thumbs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.featured-thumb {
  width: 56px;
  height: 56px;
  border: 2px solid var(--navy);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.featured-thumb img { width: 100%; height: 100%; object-fit: contain; filter: none; }
.featured-thumb:hover { transform: translateY(-2px); }
.featured-thumb.active { box-shadow: 0 0 0 2px var(--yellow); border-color: var(--navy); }

.featured-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.featured-name {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 2px 0 0;
}
.featured-rating {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--ink);
  opacity: 0.8;
}
.featured-rating .stars { color: var(--yellow); letter-spacing: 1px; margin-right: 6px; }
.featured-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.9;
  margin: 4px 0 8px;
}
.featured-features {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  gap: 12px;
}
.featured-features li {
  display: flex;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
}
.featured-features strong { color: var(--navy); }
.featured-features .ff-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 5px;
}
.featured-buy {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--navy);
}
.featured-price {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.featured-ship {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0.65;
  margin-top: 2px;
}

.card {
  background: var(--paper);
  border: 2px solid var(--navy);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--navy);
}
.card-media {
  position: relative;
  background: transparent;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 2px solid var(--navy);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  filter: drop-shadow(0 14px 28px rgba(0,30,67,0.25));
}
.card-media .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-media .placeholder svg { width: 65%; height: 65%; }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
}
.card-badge.new { background: var(--red); color: var(--cream); }
.card-badge.small { background: var(--green); color: var(--cream); }

.card-quickadd {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.2s ease;
  z-index: 3;
}
.card:hover .card-quickadd { transform: scale(1); }
.card-quickadd:hover { background: var(--red); }

.card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-italian {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: 12px;
  color: var(--red);
  letter-spacing: 0.04em;
}
.card-name {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: 28px;
  line-height: 1;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
}
.card-price {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
}
.card-rating {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink);
  opacity: 0.7;
}

/* === STRIPE BANNER === */
.stripe {
  background: var(--red);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--navy);
  /* no border-bottom: the process section below brings its own top rule */
}
.stripe-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marquee 55s linear infinite;
  padding-left: 32px;
}
.stripe-track .item {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stripe-track .item.outline {
  -webkit-text-stroke: 0;
  color: var(--yellow);
}
.stripe-track .star {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* === SHAPES SECTION (process) === */
.process {
  background: var(--paper);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 40px 32px; /* aligns step numbers with the section header gutter */
  border-right: 1px dashed var(--navy);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: 64px;
  line-height: 1;
  color: var(--red);
  margin-bottom: 16px;
}
.process-name {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.8;
}

/* === REVIEWS === */
.reviews {
  background: var(--navy);
  color: var(--cream);
}
.reviews .section-title { color: var(--cream); }
.reviews .section-eyebrow { color: var(--yellow); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--navy-dark);
  border: 1px solid rgba(250,243,227,0.15);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; }
.review-stars .empty { color: rgba(255,203,49,0.25); }
.review-text {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: var(--cream);
  margin: 0;
  flex: 1; /* pushes author footers to a common baseline across cards */
}
.review-author {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(250,243,227,0.7);
  border-top: 1px solid rgba(250,243,227,0.15);
  padding-top: 16px;
}
.review-dog {
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* === STORY === */
.story {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.story-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--navy);
}
.story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.story-text h2 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--navy);
}
.story-text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 520px;
}

/* === MODAL === */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 30, 67, 0.7);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: fade 0.2s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream);
  border: 2px solid var(--navy);
  border-radius: 20px;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: rise 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--red); }

.modal-media {
  background: linear-gradient(135deg, var(--cream-warm), var(--paper));
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid var(--navy);
  position: relative;
  min-height: 480px;
}
.modal-media img { max-width: 100%; max-height: 460px; border-radius: 8px; }

.modal-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.modal-italian {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
    color: var(--red);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.modal-title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: 56px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.modal-tagline {
  font-size: 16px;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
}
.modal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}
.modal-price {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: 36px;
  color: var(--navy);
}
.modal-rating { font-family: "JetBrains Mono", monospace; font-size: 13px; }
.modal-rating .stars { color: var(--yellow); margin-right: 6px; }

.option-group { display: flex; flex-direction: column; gap: 10px; }
.option-label {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
}
.option-label .picked { color: var(--red); }
.option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill {
  padding: 8px 16px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  background: transparent;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: var(--navy);
  transition: all 0.15s;
}
.option-pill:hover { background: var(--cream-warm); }
.option-pill.active {
  background: var(--navy);
  color: var(--yellow);
}

.qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.qty-stepper button:hover { background: var(--navy); color: var(--cream); }
.qty-stepper .val {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
    font-size: 22px;
  width: 44px;
  text-align: center;
}

.modal-add {
  flex: 1;
  height: 56px;
  font-size: 15px;
}

.modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,30,67,0.15);
  font-size: 13px;
}
.modal-meta dt {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 2px;
}
.modal-meta dd { margin: 0 0 6px; color: var(--ink); }

.durability-bar { display: inline-flex; gap: 3px; align-items: center; }
.durability-bar .pip {
  width: 8px;
  height: 14px;
  background: var(--cream-warm);
  border: 1px solid var(--navy);
}
.durability-bar .pip.on { background: var(--red); }

/* === CART DRAWER === */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 30, 67, 0.5);
  z-index: 100;
  animation: fade 0.2s ease;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 460px;
  max-width: 100vw;
  background: var(--cream);
  z-index: 101;
  display: flex;
  flex-direction: column;
  animation: slidein 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-left: 2px solid var(--navy);
}
@keyframes slidein {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.cart-header {
  padding: 28px 32px 20px;
  border-bottom: 2px solid var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-weight: 900;
  font-size: 32px;
  margin: 0;
  color: var(--navy);
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 12px;
  border: 1.5px solid var(--navy);
  border-radius: 12px;
  background: var(--paper);
  align-items: center;
}
.cart-item .thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cream-warm), var(--paper));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  overflow: hidden;
}
.cart-item .thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-item .thumb svg { width: 70%; height: 70%; }
.cart-item .info { display: flex; flex-direction: column; gap: 4px; }
.cart-item .info .name {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
    font-size: 18px;
  color: var(--navy);
  line-height: 1;
}
.cart-item .info .opts {
  font-family: "Archivo", sans-serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.65;
}
.cart-item .info .qty-mini {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--navy);
  border-radius: 999px;
  margin-top: 6px;
  font-size: 12px;
  width: fit-content;
}
.cart-item .info .qty-mini button {
  width: 34px; height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.cart-item .info .qty-mini .v {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 13px;
  width: 26px;
  text-align: center;
}
.cart-item .price {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
    font-size: 18px;
  color: var(--navy);
  align-self: flex-start;
}
.cart-item .remove {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 0;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.cart-item .remove:hover { color: var(--red); }
.cart-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; height: 100%; }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  color: var(--navy);
}
.cart-empty .big {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: 36px;
  line-height: 1;
}
.cart-empty .sub { font-size: 14px; opacity: 0.7; max-width: 260px; }

.cart-footer {
  padding: 24px 32px 28px;
  border-top: 2px solid var(--navy);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.cart-row.total {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 900;
    font-size: 26px;
  color: var(--navy);
  border-top: 1px dashed var(--navy);
  padding-top: 10px;
  margin-top: 4px;
}
.cart-row .label { text-transform: uppercase; font-weight: 700; opacity: 0.7; }
.cart-row.total .label { opacity: 1; font-style: italic; }

.shipping-bar {
  background: var(--cream-warm);
  border: 1px dashed var(--navy);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shipping-bar .progress {
  height: 4px;
  background: var(--navy);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
  position: relative;
}
.shipping-bar .progress::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--red);
  width: var(--ship-progress, 30%);
  transition: width 0.3s;
}

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,243,227,0.15);
}
.footer h4 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.75;
  font-size: 14px;
}
.footer ul a:hover { opacity: 1; color: var(--yellow); }
.footer-tag {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-weight: 900;
  font-size: 28px;
  line-height: 1.1;
  margin: 16px 0 24px;
  color: var(--cream);
}
.newsletter {
  display: flex;
  gap: 0;
  border: 2px solid var(--cream);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  max-width: 360px;
}
.newsletter input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(250,243,227,0.5); }
.newsletter button {
  background: var(--yellow);
  color: var(--navy);
  border: none;
  padding: 0 24px;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletter button:hover { background: var(--cream); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(250,243,227,0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  z-index: 200;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--yellow);
  animation: toastIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
@keyframes toastIn {
  from { transform: translate(-50%, 30px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}
.toast .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  /* image-led hero on tablet and phone: dog first, centered copy */
  .hero-inner { display: flex; flex-direction: column; gap: 24px; }
  .hero-pack { order: -1; height: clamp(300px, 42vw, 400px); margin: 0; }
  .hero-pack .kona { width: auto; max-width: 100%; max-height: 100%; }
  .hero h1 { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; text-align: center; }
  .modal { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-media { border-right: none; border-bottom: 2px solid var(--navy); min-height: 320px; }
  .product-grid { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured-media { border-right: none; border-bottom: 2px solid var(--navy); min-height: 360px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
}

/* ============================================================
   RESPONSIVE SCALING
   Goal: identical proportions across large desktops — a 2560px
   screen looks like a scaled-up 1920px screen — plus real phone
   breakpoints. Every large-screen value is anchored so that at
   exactly 1920px it equals the base design (no jump at the seam),
   then scales up via 100vw/1920 and caps near the 2560 ratio.
   ============================================================ */

/* ---- Large desktops: ≥1920px scale up proportionally ---- */
@media (min-width: 1920px) {
  /* Containers grow with the viewport (1400 @1920 → ~1867 @2560) */
  .nav-inner, .hero-inner, .section-inner, .story-inner, .footer-inner {
    max-width: clamp(1400px, 72.9vw, 2100px);
    padding-left: clamp(32px, 1.667vw, 43px);
    padding-right: clamp(32px, 1.667vw, 43px);
  }
  .process-grid { max-width: clamp(1400px, 72.9vw, 2100px) !important; }

  /* Section rhythm */
  .section { padding: clamp(96px, 5vw, 128px) 0; }

  /* Hero */
  .hero { padding-top: clamp(64px, 3.333vw, 85px); }
  .hero-inner { gap: clamp(48px, 2.5vw, 64px); }
  .hero h1 { font-size: clamp(144px, 7.5vw, 192px); }
  .hero-sub { font-size: clamp(19px, 0.99vw, 25px); max-width: clamp(480px, 25vw, 640px); }
  .hero-stats { gap: clamp(48px, 2.5vw, 64px); }
  .hero-stat .num { font-size: clamp(44px, 2.292vw, 59px); }
  .hero-pack { height: clamp(640px, 33.333vw, 853px); }

  /* Section headers */
  .section-eyebrow { font-size: clamp(12px, 0.625vw, 16px); }
  .section-title { font-size: clamp(84px, 4.375vw, 112px); max-width: clamp(700px, 36.5vw, 935px); }

  /* Featured product */
  .featured-media { min-height: clamp(560px, 29.167vw, 747px); }
  .featured-body { padding: clamp(48px, 2.5vw, 64px) clamp(44px, 2.292vw, 59px); }
  .featured-name { font-size: clamp(52px, 2.708vw, 69px); }
  .featured-desc { font-size: clamp(15px, 0.781vw, 20px); }
  .featured-features li { font-size: clamp(14px, 0.729vw, 19px); }
  .featured-price { font-size: clamp(34px, 1.771vw, 45px); }

  /* Marquee stripe */
  .stripe-track .item { font-size: clamp(56px, 2.917vw, 75px); }
  .stripe-track .star { width: clamp(28px, 1.458vw, 37px); height: clamp(28px, 1.458vw, 37px); }

  /* Process */
  .process-num { font-size: clamp(64px, 3.333vw, 85px); }
  .process-name { font-size: clamp(16px, 0.833vw, 21px); }
  .process-desc { font-size: clamp(14px, 0.729vw, 19px); }

  /* Story */
  .story-inner { gap: clamp(80px, 4.167vw, 107px); }
  .story-text h2 { font-size: clamp(72px, 3.75vw, 96px); }
  .story-text p { font-size: clamp(17px, 0.885vw, 23px); max-width: clamp(520px, 27vw, 690px); }

  /* Reviews */
  .review-text { font-size: clamp(20px, 1.042vw, 27px); }

  /* Footer */
  .footer-tag { font-size: clamp(28px, 1.458vw, 37px); }

  /* Overlays scale too */
  .modal { max-width: clamp(1100px, 57vw, 1460px); }
  .modal-title { font-size: clamp(56px, 2.917vw, 75px); }
  .cart-drawer { width: clamp(460px, 24vw, 610px); }
}

/* ---- Tablet / small laptop refinements ---- */
@media (max-width: 900px) {
  .hero { padding-top: 40px; }
  .hero-inner { gap: 32px; }
  .hero h1 { font-size: clamp(48px, 9vw, 80px); } /* 80 at 900 meets ~81 at 901: no shrink seam */
  .hero-sub { font-size: 17px; }
  .hero-stats { gap: 28px 36px; flex-wrap: wrap; padding: 24px 0; }
  .section { padding: 64px 0; }
  .section-title { font-size: clamp(36px, 8vw, 64px); }
  .featured-body { padding: 32px 26px; }
  .featured-name { font-size: clamp(38px, 9vw, 52px); }
  .stripe-track .item { font-size: 40px; }
  .stripe { padding: 20px 0; }
  .story-inner { gap: 40px; }
  .story-text h2 { font-size: clamp(38px, 8vw, 60px); }
  .modal-title { font-size: 40px; }
}

/* ---- Phones ---- */
@media (max-width: 600px) {
  .nav-inner { padding: 12px 18px; gap: 12px; }
  .hero { padding-top: 28px; }
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: clamp(40px, 13vw, 60px); }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas { margin-bottom: 36px; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { gap: 20px 24px; }
  .hero-stat { flex: 0 0 40%; }
  .hero-stat .num { font-size: 34px; }
  .hero-pack { height: 300px; }
  .section-inner, .story-inner, .footer-inner { padding: 0 20px; }
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: clamp(32px, 9vw, 46px); }
  .featured { border-radius: 16px; }
  .featured-media { min-height: 300px; padding: 18px; }
  .featured-body { padding: 26px 20px; gap: 12px; }
  .featured-name { font-size: 40px; }
  .featured-buy { flex-wrap: wrap; }
  .featured-buy .btn { flex: 1 0 100% !important; }
  .stripe-track { gap: 20px; }
  .stripe-track .item { font-size: 30px; }
  .stripe-track .star { width: 20px; height: 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px dashed var(--navy); }
  .process-step:last-child { border-bottom: none; }
  .process-num { font-size: 52px; }
  .story-text h2 { font-size: clamp(30px, 9vw, 44px); }
  .story-text p { font-size: 15px; }
  .story-image { aspect-ratio: 3 / 4; }
  .review-grid { gap: 16px; }
  .footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-bottom { font-size: 11px; }
  .toast { width: calc(100vw - 32px); justify-content: center; text-align: center; }
}

/* ============================================================
   TYPOGRAPHY POLISH — widow/orphan prevention
   balance: even out heading line lengths; pretty: avoid
   single-word last lines in running text. Progressive
   enhancement — older browsers simply ignore these.
   ============================================================ */
.hero h1,
.section-title,
.story-text h2,
.featured-name,
.modal-title,
.footer-tag,
.cart-empty .big {
  text-wrap: balance;
}
.hero-sub,
.featured-desc,
.featured-ship,
.story-text p,
.review-text,
.process-desc,
.modal-tagline,
.cart-empty .sub {
  text-wrap: pretty;
}

/* ============================================================
   MOBILE FOOTER REFINEMENT
   Brand block (logo/tagline/newsletter) gets its own full-width
   row; link columns sit 2-up below it; bottom line stacks.
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer .logo-wrap { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .footer { padding: 48px 0 24px; }
  .footer-grid { gap: 32px 24px; padding-bottom: 36px; }
  .footer-tag { font-size: 22px; margin: 14px 0 20px; }
  .newsletter { max-width: 100%; }
  .newsletter input { min-width: 0; }
  .footer h4 { margin-bottom: 12px; }
  .footer ul { gap: 8px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 24px;
    font-size: 11px;
    line-height: 1.5;
  }
}

/* ============================================================
   STRESS-TEST FIXES (80-user chaos run)
   ============================================================ */

/* 320px screens: section titles with nbsp-joined words overflowed.
   Slightly smaller floor + break-word safety net. */
@media (max-width: 600px) {
  .section-title { font-size: clamp(26px, 8.2vw, 46px); overflow-wrap: break-word; }
  .section-header > div { min-width: 0; }
}

/* Footer links behave like links */
.footer ul a { cursor: pointer; }

/* Newsletter feedback */
.newsletter-done {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--yellow);
  border: 2px dashed var(--yellow);
  border-radius: 999px;
  padding: 12px 20px;
  max-width: 360px;
}
.newsletter.shake { animation: nlshake 0.4s ease; }
@keyframes nlshake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
}

/* Small screens: icon-only cart with corner badge — the text label +
   badge made the nav wider than 320px viewports when the cart filled */
@media (max-width: 600px) {
  .nav-inner { padding: 12px 16px; gap: 8px; }
  .nav-actions { gap: 4px; }
  .nav-icon-btn { padding: 8px 6px; }
  .nav-icon-btn span:not(.cart-count) { display: none; }
  .cart-count {
    position: absolute;
    top: -2px;
    right: -4px;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
    padding: 0 4px;
  }
}

/* ============================================================
   MOBILE HERO — image-led, centered
   Dog appears first under the nav so the product is visible on
   landing; headline, copy, and stats center to match the
   full-width buttons. Desktop layout unchanged.
   ============================================================ */
@media (max-width: 600px) {
  .hero-inner { display: flex; flex-direction: column; gap: 20px; }
  .hero-pack { order: -1; height: 280px; margin: 0; }
  .hero-pack .kona { width: auto; max-width: 100%; max-height: 100%; }
  .hero h1 { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-ctas { margin-bottom: 28px; }
  .hero-stats { justify-content: center; text-align: center; gap: 18px 0; }
  .hero-stat { flex: 0 0 50%; }
}

/* ============================================================
   LAUNCH POLISH — verified findings from the 6-dimension review
   ============================================================ */

/* Native smooth anchor navigation (keyboard accessible real links) */
html { scroll-behavior: smooth; }
#top, #shop, #story, #process, #reviews { scroll-margin-top: 88px; }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
.newsletter input:focus-visible { outline: 3px solid var(--yellow); outline-offset: -3px; }

/* Respect reduced-motion: stop the marquees */
@media (prefers-reduced-motion: reduce) {
  .stripe-track, .announce-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* Featured rating stars: readable amber on the light card */
.featured-rating .stars { color: #C77800; }

/* Product specs line under the trust line */
.featured-specs {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink);
  opacity: 0.55;
  margin-top: 6px;
}

/* Checkout email-fallback note */
.checkout-note {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: var(--ink);
  opacity: 0.65;
  margin-top: 10px;
}

/* Newsletter inline error */
.newsletter-err {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  margin-top: 8px;
}

/* Footer logo aligns with its left-aligned column at every width */
.footer .logo-wrap { justify-content: flex-start; }

/* Toast is a real button now (click = view basket) */
button.toast { cursor: pointer; font-family: "Archivo", sans-serif; }
.toast .toast-action {
  color: var(--yellow);
  font-weight: 800;
  margin-left: 4px;
  white-space: nowrap;
}

/* Sticky buy bar: appears after the buy box scrolls out of view */
.sticky-buy {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: var(--cream);
  border: 1.5px solid var(--yellow);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  max-width: calc(100vw - 24px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  animation: toastIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-buy .sb-name {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
}
.sticky-buy .sb-btn { padding: 12px 20px; font-size: 13px; box-shadow: none; }
@media (max-width: 480px) {
  .sticky-buy { gap: 10px; padding-left: 16px; }
  .sticky-buy .sb-name { font-size: 14px; }
}

/* --- 901-1280px: keep nav links on one line --- */
@media (min-width: 901px) and (max-width: 1280px) {
  .nav-inner { gap: 20px; }
  .nav-links { gap: 16px; font-size: 13px; }
  .nav-links a { white-space: nowrap; }
}

/* --- 901-1180px: buy row wraps instead of clipping --- */
.featured-body { min-width: 0; }
@media (min-width: 901px) and (max-width: 1180px) {
  .featured-body { padding: 36px 32px; }
  .featured-buy { flex-wrap: wrap; }
  .featured-buy .btn-primary { flex: 1 0 100%; }
}

/* --- 601-900px tablet band --- */
@media (min-width: 601px) and (max-width: 900px) {
  /* process 2x2: divide rows, no stray outer border */
  .process-step { border-bottom: 1px dashed var(--navy); }
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }
  /* story photo: don't let a portrait image become a full-width slab */
  .story-image { max-width: 540px; width: 100%; margin: 0 auto; }
  /* footer: brand row, then three tidy link columns (no orphan) */
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* Checkout email-address fallback line */
.checkout-note .checkout-addr { font-weight: 700; color: var(--head, var(--navy)); }
.checkout-note a { color: var(--red); font-weight: 700; }
