:root {
  --navy: #061b43;
  --navy-2: #082b66;
  --blue: #075cff;
  --blue-2: #0b73ff;
  --light-blue: #eef5ff;
  --text: #0b1f45;
  --muted: #5f6f86;
  --border: #dfe6f1;
  --soft: #f7f9fc;
  --cream: #f6f1e9;
  --white: #ffffff;
  --green: #2e8b57;
  --gold: #f5a623;
  --shadow: 0 14px 34px rgba(8, 34, 80, .10);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.utility {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}

.utility .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.utility-left,
.utility-right {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.header-main {
  min-height: 88px;
  display: grid;
  grid-template-columns: 250px 1fr 230px;
  gap: 26px;
  align-items: center;
}

.logo img { width: 220px; display: block; }

.search {
  display: flex;
  border: 1px solid #cfd9e8;
  border-radius: 8px;
  overflow: hidden;
  height: 48px;
  background: #fff;
}

.search input {
  flex: 1;
  border: 0;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
}

.search button {
  width: 58px;
  border: 0;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  font-size: 13px;
}

.icon-link {
  display: grid;
  justify-items: center;
  gap: 3px;
  position: relative;
  color: #121a2a;
}

.icon {
  font-size: 24px;
  line-height: 1;
}

.badge {
  position: absolute;
  top: -6px;
  right: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.nav {
  border-top: 1px solid var(--border);
  background: #fff;
}

.nav .container {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 54px;
  font-weight: 700;
  font-size: 14px;
}

.all-categories {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

/* ==========================================================================
   Hero Section: Restored Premium Full-Height Canvas Fix
   ========================================================================== */
.approved-hero {
  background-color: #ffffff; 
  width: 100%;
  border-bottom: 1px solid var(--border);
}

/* Attaching background to the inner container keeps it completely static relative to text columns */
.hero-container {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image: url("../assets/hero-image.png");
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-copy {
  max-width: 530px;
  padding: 40px 0;
  z-index: 2;
}

.approved-hero h1 {
  font-size: 54px;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -1.5px;
  color: #000000;
  font-weight: 800;
}

.approved-hero h1 span {
  display: block;
  color: var(--blue);
}

.approved-hero .lead {
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--text);
}

.approved-hero p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.actions {
  display: flex;
  gap: 14px;
  margin: 22px 0 0 0;
}

.btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 700;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

.btn.primary:hover {
  background: var(--blue-2);
}

.btn.secondary {
  border: 1px solid var(--blue);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.85);
}

.btn.secondary:hover {
  background: var(--light-blue);
}

/* Trust Ribbon Strip Style */
.mini-trust-band {
  background: #fdfcfb;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  width: 100%;
}

.mini-trust-grid {
  display: flex;
  gap: 48px;
}

.mini-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.trust-check-icon {
  font-size: 13px;
  border: 1px solid var(--text);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-weight: bold;
}

.mini-trust-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 1px;
}

.mini-trust-item span {
  color: var(--muted);
}

/* ==========================================================================
   Rest of Site Sections (Unchanged Layout Properties)
   ========================================================================== */



.feature-band {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
}

.feature-band .container {
  padding-top: 10px;
  padding-bottom: 0;
}

.feature-band-title {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.2px;
  margin: 0 0 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  min-height: 120px;
  padding: 18px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
}

.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 114px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.06) 8%,
    rgba(255,255,255,0.17) 22%,
    rgba(255,255,255,0.24) 50%,
    rgba(255,255,255,0.17) 78%,
    rgba(255,255,255,0.06) 92%,
    rgba(255,255,255,0) 100%
  );
  border-radius: 999px;
}

.feature:first-child::before { display: none; }

.feature-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.85;
  display: block;
}

.feature strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.feature span:last-child {
  color: #d7e5ff;
  font-size: 13px;
  line-height: 1.35;
}


.section {
  padding: 34px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 3px;
}

.section h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -.4px;
}

.section h2 span { color: var(--blue); }

.view-link {
  color: var(--blue);
  font-weight: 800;
  font-size: 15px;
}

.product-carousel {
  position: relative;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  min-width: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-image {
  background: #f8fafd;
  height: 172px;
  display: grid;
  place-items: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.product-image img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center;
}

.label {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  background: var(--light-blue);
  color: var(--blue);
  border: 1px solid #c7dcff;
}

.label.used {
  color: var(--green);
  background: #edf9f1;
  border-color: #bfe8cd;
}

.product-info {
  padding: 14px;
}

.product-title {
  min-height: 44px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
}

.price {
  font-size: 20px;
  font-weight: 900;
  margin: 10px 0 4px;
}

.msrp {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 7px;
}

.stars {
  color: var(--gold);
  font-size: 13px;
}

.arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--navy);
}

.arrow.left { left: -20px; }
.arrow.right { right: -20px; }

.three-sections {
  padding-top: 0;
}

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

.merch-panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
  min-height: 64px;
}

.panel-head .eyebrow { margin-bottom: 0; }
.panel-head h3 {
  margin: 3px 0 0;
  font-size: 21px;
  letter-spacing: -.2px;
}

.mini-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  flex: 1;
  align-items: stretch;
}

.mini-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mini-card .product-image {
  height: 118px;
  border: 1px solid var(--border);
  border-radius: 9px;
}

.mini-card .product-image img {
  width: 92%;
  height: 92%;
}

.mini-card h4 {
  margin: 10px 0 4px;
  font-size: 13px;
  line-height: 1.25;
  min-height: 49px;
}

.mini-card .price {
  font-size: 17px;
  margin: 0 0 9px;
}

.cart-btn {
  display: block;
  text-align: center;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  padding: 9px 8px;
  font-weight: 800;
  font-size: 13px;
  margin-top: auto;
}

.cta-strip {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  border-radius: 13px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.cta-item {
  padding: 26px 34px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.cta-item:first-child { border-left: 0; }

.cta-item .big-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
}

.cta-item .big-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
}

.cta-item h3 { margin: 0 0 7px; font-size: 21px; }
.cta-item p { margin: 0 0 8px; color: #dbe8ff; line-height: 1.4; }
.cta-item a { color: #fff; font-weight: 800; }

.newsletter {
  background: linear-gradient(90deg, #085bff, #0067ff);
  color: #fff;
  padding: 26px 0;
  border-radius: 54px 54px 0 0;
  overflow: hidden;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 300px minmax(420px, 1fr) 260px;
  align-items: center;
  gap: 34px;
}

.newsletter-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-title .big-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 34px;
}

.newsletter-title .big-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.85;
}

.newsletter-title strong { font-size: 22px; display: block; }
.newsletter-title span { font-size: 13px; color: #dceaff; }

.signup {
  display: flex;
  height: 48px;
}

.signup input {
  flex: 1;
  border: 0;
  padding: 0 18px;
  border-radius: 7px 0 0 7px;
  outline: none;
  font-size: 15px;
}

.signup button {
  min-width: 128px;
  border: 1px solid rgba(255,255,255,.35);
  background: var(--blue);
  color: #fff;
  border-radius: 0 7px 7px 0;
  font-weight: 900;
}

.privacy {
  font-size: 11px;
  text-align: center;
  margin-top: 7px;
  color: #dbe8ff;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.social strong {
  margin: 0;
  white-space: nowrap;
  font-size: 18px;
  line-height: 1.1;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  color: #fff;
  flex: 0 0 28px;
  font-size: 14px;
}

.social a i {
  line-height: 1;
}

.footer {
  background: var(--navy);
  color: #dbe8ff;
  padding: 38px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 34px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 16px;
}

.footer p {
  margin: 0;
  line-height: 1.55;
  max-width: 300px;
}

.footer h4 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 16px;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer li {
  margin: 7px 0;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 26px;
}

@media (max-width: 992px) {
  .header-main { grid-template-columns: 1fr; gap: 16px; padding: 18px 0; }
  .header-icons { justify-content: flex-start; }
  .nav .container { overflow-x: auto; white-space: nowrap; }
  .hero-container { background-image: none; min-height: auto; }
  .hero-copy { max-width: 100%; padding: 24px 0; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 24px, 1180px); }
  .utility .container, .utility-left, .utility-right { flex-direction: column; gap: 8px; align-items: flex-start; }
  .mini-trust-grid { flex-direction: column; gap: 16px; }
}

/* Final hero fix:
   Keep the approved hero image full-width, add left padding for text,
   and remove the empty space above/below the hero image. */
@media (min-width: 981px) {
  .hero-container {
    min-height: 0;
    height: auto;
    aspect-ratio: 1055 / 353;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero-copy {
    padding-left: 72px;
  }
}


/* Move the small trust/value words onto the hero image under the hero buttons */
.mini-trust-band {
  display: none;
}

.hero-trust-grid {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
  max-width: 620px;
  white-space: nowrap;
}

.hero-trust-grid .mini-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hero-trust-grid .trust-check-icon {
  width: 22px;
  height: 22px;
  border: 1px solid #8da0bf;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 13px;
  line-height: 1;
  flex: 0 0 auto;
}

.hero-trust-grid strong {
  display: block;
  font-size: 13px;
  line-height: 1.1;
  color: var(--text);
  font-weight: 800;
}

.hero-trust-grid span span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.1;
}

@media (max-width: 980px) {
  .hero-trust-grid {
    flex-wrap: wrap;
    gap: 14px 20px;
    white-space: normal;
  }
}


/* Hero trust-row polish to match mockup */
.hero-trust-grid {
  align-items: flex-start;
  gap: 28px;
  margin-top: 18px;
  max-width: 560px;
}

.hero-trust-grid .mini-trust-item {
  gap: 8px;
}

.hero-trust-grid .trust-check-icon {
  width: 18px;
  height: 18px;
  border: 1px solid #6f83aa;
  color: #174fbf;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.hero-trust-grid strong {
  font-size: 12px;
  line-height: 1.05;
  margin-bottom: 1px;
}

.hero-trust-grid span span {
  font-size: 10.5px;
  line-height: 1.05;
  color: #5f6f89;
}


/* Refined hero trust-row to match mockup spacing */
.hero-trust-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1.12fr;
  column-gap: 30px;
  align-items: start;
  margin-top: 16px;
  width: 640px;
  max-width: 100%;
  white-space: normal;
}

.hero-trust-grid .mini-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.hero-trust-grid .trust-check-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #6f83aa;
  border-radius: 999px;
  color: #174fbf;
  background: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.hero-trust-grid .trust-pin-icon svg {
  width: 10px;
  height: 10px;
  display: block;
}

.hero-trust-grid strong {
  display: block;
  font-size: 12px;
  line-height: 1.08;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 1px;
}

.hero-trust-grid .mini-trust-item > div > span {
  display: block;
  font-size: 10.5px;
  line-height: 1.1;
  color: #5f6f89;
}

@media (max-width: 980px) {
  .hero-trust-grid {
    grid-template-columns: 1fr;
    row-gap: 10px;
    width: 100%;
  }
}


/* Final hero trust-row spacing override */
.hero-trust-grid {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-start;
  gap: 42px;
  margin-top: 16px;
  width: 700px;
  max-width: 100%;
  white-space: nowrap;
}

.hero-trust-grid .mini-trust-item {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: max-content;
}

.hero-trust-grid .mini-trust-item > div {
  white-space: nowrap;
}

.hero-trust-grid strong {
  display: block;
  font-size: 12px;
  line-height: 1.05;
  margin-bottom: 1px;
}

.hero-trust-grid .mini-trust-item > div > span {
  display: block;
  font-size: 10.5px;
  line-height: 1.05;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-trust-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    row-gap: 10px;
    width: 100%;
    white-space: normal;
  }

  .hero-trust-grid .mini-trust-item > div,
  .hero-trust-grid .mini-trust-item > div > span {
    white-space: normal;
  }
}


/* Lucide hero trust icons */
.hero-trust-grid {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-start;
  gap: 42px;
  margin-top: 16px;
  width: 700px;
  max-width: 100%;
  white-space: nowrap;
}

.hero-trust-grid .mini-trust-item {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  min-width: max-content;
}

.hero-trust-grid .mini-trust-item > div,
.hero-trust-grid .mini-trust-item > div > span {
  white-space: nowrap;
}

.hero-trust-grid .trust-icon {
  color: #486387;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin-top: -1px;
}

.hero-trust-grid .trust-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.75;
  display: block;
}

.hero-trust-grid strong {
  display: block;
  font-size: 12px;
  line-height: 1.05;
  margin-bottom: 1px;
}

.hero-trust-grid .mini-trust-item > div > span {
  display: block;
  font-size: 10.5px;
  line-height: 1.05;
  color: #5f6f89;
}

@media (max-width: 980px) {
  .hero-trust-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    row-gap: 10px;
    width: 100%;
    white-space: normal;
  }

  .hero-trust-grid .mini-trust-item > div,
  .hero-trust-grid .mini-trust-item > div > span {
    white-space: normal;
  }
}


@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature {
    min-height: 112px;
  }
}

@media (max-width: 640px) {
  .feature-band-title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature::before {
    display: none;
  }

  .feature {
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .feature:first-child {
    border-top: 0;
  }
}


/* Newsletter responsive polish */
@media (max-width: 980px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .social {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .newsletter {
    border-radius: 32px 32px 0 0;
  }

  .signup {
    height: auto;
    flex-direction: column;
    gap: 10px;
  }

  .signup input,
  .signup button {
    width: 100%;
    min-height: 46px;
    border-radius: 7px;
  }

  .privacy {
    text-align: left;
  }
}

/* ==========================================================================
   Mobile layout polish
   ========================================================================== */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .utility {
    font-size: 12px;
  }

  .utility .container {
    padding: 8px 0;
    gap: 6px;
  }

  .utility-left,
  .utility-right {
    gap: 6px;
  }

  .header-main {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 0 12px;
  }

  .logo img {
    width: 190px;
    margin: 0 auto;
  }

  .search {
    height: 44px;
  }

  .search input {
    font-size: 14px;
    min-width: 0;
  }

  .search button {
    width: 52px;
  }

  .header-icons {
    justify-content: center;
    gap: 34px;
  }

  .nav .container {
    width: 100%;
    padding: 0 16px;
    min-height: 48px;
    gap: 22px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav .container::-webkit-scrollbar {
    display: none;
  }

  .all-categories {
    min-width: max-content;
  }

  .approved-hero h1 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .approved-hero .lead {
    font-size: 18px;
  }

  .approved-hero p {
    font-size: 15px;
  }

  .actions {
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn {
    min-height: 42px;
    padding: 0 18px;
  }

  .hero-trust-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 18px;
    white-space: normal;
  }

  .hero-trust-grid .mini-trust-item,
  .hero-trust-grid .mini-trust-item > div,
  .hero-trust-grid .mini-trust-item > div > span {
    min-width: 0;
    white-space: normal;
  }

  .feature-band {
    padding: 24px 0;
  }

  .feature-band-title {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
    padding: 22px 18px;
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .feature:first-child {
    border-top: 0;
  }

  .feature::before {
    display: none;
  }

  .section {
    padding: 28px 0;
  }

  .section-heading {
    align-items: flex-start;
    gap: 12px;
  }

  .section h2 {
    font-size: 26px;
    line-height: 1.1;
  }

  .view-link {
    white-space: nowrap;
    font-size: 14px;
  }

  .product-carousel {
    margin-right: -16px;
  }

  .product-row {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 8px 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .product-row::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 188px;
    scroll-snap-align: start;
  }

  .product-image {
    height: 150px;
  }

  .product-info {
    padding: 12px;
  }

  .product-title {
    min-height: 52px;
    font-size: 13px;
  }

  .price {
    font-size: 19px;
  }

  .arrow {
    display: none;
  }

  .three-sections {
    padding-top: 0;
  }

  .merch-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .merch-panel {
    padding: 16px;
  }

  .panel-head {
    min-height: auto;
    margin-bottom: 14px;
  }

  .panel-head h3 {
    font-size: 22px;
    line-height: 1.15;
  }

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

  .mini-card .product-image {
    height: 98px;
  }

  .mini-card h4 {
    min-height: 54px;
    font-size: 12.5px;
    line-height: 1.22;
  }

  .mini-card .price {
    font-size: 16px;
  }

  .cart-btn {
    padding: 8px 5px;
    font-size: 12px;
  }

  .cta-strip {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .cta-item {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 22px 20px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .cta-item:first-child {
    border-top: 0;
  }

  .cta-item .big-icon {
    width: 42px;
    height: 42px;
  }

  .cta-item .big-icon svg {
    width: 32px;
    height: 32px;
  }

  .cta-item h3 {
    font-size: 20px;
  }

  .newsletter {
    border-radius: 32px 32px 0 0;
    padding: 24px 0;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .newsletter-title strong {
    font-size: 22px;
  }

  .signup {
    height: auto;
    flex-direction: column;
    gap: 10px;
  }

  .signup input,
  .signup button {
    width: 100%;
    min-height: 46px;
    border-radius: 7px;
  }

  .privacy {
    text-align: left;
  }

  .social {
    align-items: flex-start;
    gap: 10px;
  }

  .footer {
    padding: 30px 0 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 150px;
  }

  .footer p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }
}

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

  .approved-hero h1 {
    font-size: 38px;
  }

  .section-heading {
    flex-direction: column;
  }

  .product-card {
    flex-basis: 178px;
  }

  .mini-products {
    gap: 8px;
  }

  .mini-card .product-image {
    height: 92px;
  }

  .mini-card h4 {
    font-size: 12px;
    min-height: 58px;
  }

  .cart-btn {
    font-size: 11.5px;
    padding-inline: 4px;
  }

  .footer-grid {
    gap: 24px 20px;
  }
}

/* Mobile utility bar cleanup */
@media (max-width: 768px) {
  .utility {
    font-size: 11px;
  }

  .utility .container {
    width: 100%;
    max-width: 100%;
    padding: 8px 14px;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .utility-left {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    overflow: visible;
    white-space: nowrap;
  }

  .utility-left span {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    line-height: 1.2;
  }

  .utility-left span:first-child {
    font-size: 0;
  }

  .utility-left span:first-child::after {
    content: "Proudly serving our community";
    font-size: 11px;
  }

  .utility-left span:nth-child(2) {
    font-size: 0;
  }

  .utility-left span:nth-child(2)::after {
    content: "Local pickup & delivery available";
    font-size: 11px;
  }

  .utility-left span + span::before {
    content: "•";
    font-size: 11px;
    margin-right: 8px;
    opacity: 0.65;
  }

  .utility-right {
    display: none;
  }
}

@media (max-width: 380px) {
  .utility {
    font-size: 10px;
  }

  .utility .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .utility-left {
    gap: 6px;
  }

  .utility-left span:first-child::after,
  .utility-left span:nth-child(2)::after,
  .utility-left span + span::before {
    font-size: 10px;
  }

  .utility-left span + span::before {
    margin-right: 6px;
  }
}

/* Mobile top-picks heading spacing */
@media (max-width: 768px) {
  .top-picks .section-heading {
    display: block;
    position: relative;
    margin-bottom: 20px;
  }

  .top-picks .section-heading .eyebrow {
    margin-bottom: 14px;
    line-height: 1;
  }

  .top-picks .section-heading > div {
    width: 100%;
    max-width: 100%;
  }

  .top-picks .section-heading .view-link {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    white-space: nowrap;
  }

  .top-picks .section-heading h2 {
    margin-top: 0;
    font-size: clamp(24px, 6.4vw, 26px);
    line-height: 1.08;
    white-space: nowrap;
    letter-spacing: -0.35px;
  }
}
