/* Zuri Maison — shared styles */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap");

@font-face {
  font-family: "din-next-w01-light";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w01-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "brandon-grot-w01-light";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.parastorage.com/fonts/v2/fe0edf38-314c-46d5-b570-a37546d197e4/v1/brandon-grot-w01-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "didot-w01-italic";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.parastorage.com/fonts/v2/6a8685bf-8255-4762-98b8-54a1192acc7c/v1/didot-w01-italic.woff2") format("woff2");
  font-display: swap;
}

:root {
  --bg: #150a09;
  --white: #ffffff;
  --gray: #cccccc;
  --muted: #999999;
  --header-height: 80px;
  --header-gap: 4px;
  --header-total: calc(1px + var(--header-height) + 1px + var(--header-gap) + 1px);
  --max-width: 980px;
  --line: #ffffff;
  --font-nav: "din-next-w01-light", sans-serif;
  --font-menu: normal 400 16px/1.4em var(--font-nav);
  --font-heading: "brandon-grot-w01-light", "Helvetica Neue", Arial, sans-serif;
  --font-tagline: "didot-w01-italic", Georgia, "Times New Roman", serif;
  --font-body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-about-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  opacity: 0.85;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.site-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-top: var(--header-gap);
}

.header-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1.45fr auto 0.85fr;
  align-items: center;
  gap: 16px;
}

/* Full-width horizontal line at bottom of header row */
.header-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--line);
  pointer-events: none;
}

.header-inner nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-main {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 100%;
}

.nav-main li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-main a {
  font: var(--font-menu);
  letter-spacing: normal;
  color: var(--white);
  text-decoration: none;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.nav-main a:hover,
.nav-main a:focus,
.nav-main a:active,
.nav-main a.active {
  text-decoration: none;
  opacity: 1;
}

.nav-main a:hover {
  opacity: 0.85;
}

.logo-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 0 32px;
}

.logo-frame::before,
.logo-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.logo-frame::before {
  left: 0;
}

.logo-frame::after {
  right: 0;
}

.logo-frame img {
  height: 56px;
  width: auto;
}

.social-header {
  display: flex;
  gap: 16px;
  justify-self: end;
  align-items: center;
  height: 100%;
}

.social-header a img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
}

/* ── Hero (home) ── */
.hero {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-total) + 36px) 24px 20px;
  background: var(--bg) url("../images/hero-chili.jpg") center / cover no-repeat;
}

main.main-home {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main.main-home .hero {
  flex: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 140px) 12px;
}

/* Full-width horizontal lines (edge to edge, not centered short lines) */
.hero-line {
  border: none;
  border-top: 1px solid #ffffff;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.hero-line-bottom {
  border-top: 2px solid #ffffff;
  margin-top: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw + 0.75rem, 3rem);
  font-weight: 400;
  line-height: 1.3;
  margin: 20px 0 8px;
  letter-spacing: normal;
  color: var(--white);
}

.hero .tagline {
  font-family: var(--font-tagline);
  font-size: clamp(1.1rem, 2vw + 0.75rem, 3rem);
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: normal;
  color: var(--white);
}

.hero-content .btn-outline {
  margin-bottom: 0;
}

.btn-outline {
  display: inline-block;
  padding: 10px 26px;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bg);
  opacity: 1;
}

/* ── Page banner (inner pages) ── */
.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-total) + 48px) 24px 48px;
  background: var(--bg) center / cover no-repeat;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 10, 9, 0.35);
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: normal;
  margin: 0;
  color: var(--white);
}

.page-banner.about {
  background-color: #150909;
  background-image: url("../images/about-banner.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: clamp(440px, 50vh, 540px);
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: center;
}

.page-banner.about::before {
  display: none;
}

.page-banner.about .page-banner-content {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-total) + 32px) 24px 48px;
}

.page-banner.about h1 {
  font-family: var(--font-tagline);
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  letter-spacing: 0.01em;
}

.page-about .about-content {
  background: #ffffff;
  color: rgb(0, 6, 37);
  width: 100%;
  padding: 56px 0 96px;
  position: relative;
  z-index: 2;
}

.about-content-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.page-about .about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: rgb(0, 6, 37);
  margin: 0 0 28px;
  letter-spacing: normal;
  white-space: nowrap;
}

.about-divider {
  border: none;
  border-top: 1px solid rgb(0, 6, 37);
  width: 100%;
  max-width: 980px;
  margin: 0 auto 36px;
}

.page-about .about-content p:not(.about-gap) {
  font-family: var(--font-about-body);
  font-size: 17px;
  font-weight: 200;
  color: rgb(0, 6, 37);
  margin: 0 auto 28px;
  line-height: 1.4;
  text-align: center;
  max-width: min(620px, 72%);
}

.page-about .about-content p:last-child {
  margin-bottom: 0;
}

.page-about .about-content p.about-gap {
  margin: 0 auto;
  line-height: 1.4;
  font-size: 17px;
  visibility: hidden;
}

.page-banner.products {
  background-color: #150909;
  background-image: url("../images/products-hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 2 / 1;
  min-height: clamp(320px, 50vw, 490px);
  max-height: 560px;
  padding: 0;
  display: block;
}

.page-banner.products::before {
  display: none;
}

.page-banner.products .page-banner-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Products page ── */
/* Manual tuning knobs — edit these values in styles.css */
.page-products {
  --products-hero-padding-top: calc(var(--header-total) + 24px); /* space below menu */
  --products-hero-img-width: clamp(520px, 68vw, 980px); /* hero photo width (height follows 2:1 ratio) */
  --products-hero-title-top: 10%; /* title position within the photo — increase to move down */
  --products-showcase-img-max: 680px;          /* width of the jar collage image */
}

.products-hero {
  background: #150909;
  width: 100%;
  padding-top: var(--products-hero-padding-top);
  padding-bottom: 8px;
  line-height: 0;
}

.products-hero-frame {
  position: relative;
  width: var(--products-hero-img-width);
  max-width: 100%;
  margin: 0 auto;
}

.products-hero-img {
  display: block;
  width: 100%;
  height: auto;
}

.products-hero-title {
  position: absolute;
  top: var(--products-hero-title-top);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font-tagline);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 78px);
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

.products-intro-section {
  background: #ffffff;
  width: 100%;
  padding: 56px 0 64px;
  text-align: left;
}

.products-intro-inner {
  margin: 0;
  padding: 0 40px;
  text-align: left;
}

.page-products .products-intro-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: rgb(0, 6, 37);
  margin: 0 0 32px;
  text-align: left;
}

.page-products .products-intro-inner p {
  font-family: var(--font-about-body);
  font-size: 16px;
  font-weight: 200;
  color: rgb(0, 6, 37);
  line-height: 1.8;
  margin: 0;
  max-width: 915px;
  text-align: left;
}

.products-showcase {
  position: relative;
  background-color: #150909;
  width: 100%;
  padding: 40px 24px 56px;
  overflow: hidden;
}

.products-showcase-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.products-pepper {
  position: absolute;
  background-image: url("../images/chili-lineart.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
}

/* Left-side peppers (in the gutter beside the centred collage) */
.products-pepper--1  { top: 3%;  left: 3%;  width: 80px; height: 74px; transform: rotate(-15deg); }
.products-pepper--2  { top: 15%; left: 17%; width: 56px; height: 52px; transform: rotate(35deg); }
.products-pepper--3  { top: 28%; left: 6%;  width: 96px; height: 88px; transform: rotate(160deg); }
.products-pepper--4  { top: 42%; left: 19%; width: 50px; height: 46px; transform: rotate(200deg); }
.products-pepper--5  { top: 55%; left: 4%;  width: 78px; height: 72px; transform: rotate(15deg); }
.products-pepper--6  { top: 68%; left: 16%; width: 60px; height: 55px; transform: rotate(-35deg); }
.products-pepper--7  { top: 82%; left: 7%;  width: 88px; height: 81px; transform: rotate(120deg); }
.products-pepper--8  { top: 92%; left: 20%; width: 52px; height: 48px; transform: rotate(-10deg); }

/* Right-side peppers */
.products-pepper--9  { top: 4%;  right: 4%;  width: 82px; height: 76px; transform: rotate(20deg); }
.products-pepper--10 { top: 16%; right: 17%; width: 54px; height: 50px; transform: rotate(-25deg); }
.products-pepper--11 { top: 30%; right: 5%;  width: 92px; height: 85px; transform: rotate(190deg); }
.products-pepper--12 { top: 45%; right: 19%; width: 50px; height: 46px; transform: rotate(120deg); }
.products-pepper--13 { top: 58%; right: 3%;  width: 80px; height: 74px; transform: rotate(-20deg); }
.products-pepper--14 { top: 70%; right: 16%; width: 62px; height: 57px; transform: rotate(45deg); }
.products-pepper--15 { top: 84%; right: 6%;  width: 86px; height: 79px; transform: rotate(150deg); }
.products-pepper--16 { top: 93%; right: 19%; width: 52px; height: 48px; transform: rotate(-30deg); }

.products-showcase-inner {
  position: relative;
  z-index: 1;
  max-width: var(--products-showcase-img-max);
  margin: 0 auto;
}

.products-showcase-inner img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.page-banner.retailers {
  background-image: url("../images/retailers-hero.png");
}

.page-banner.contact {
  background-color: #150909;
  background-image: url("../images/contact-bg.png");
  background-position: center 35%;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: clamp(340px, 42vh, 480px);
}

/* ── Main content ── */
main {
  padding-top: 0;
}

.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.content-section h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 32px 0 16px;
}

.content-section p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--gray);
  margin: 0 0 20px;
  line-height: 1.75;
}

.content-section .subtitle {
  font-family: var(--font-tagline);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.about-grid img {
  border-radius: 2px;
}

.products-intro {
  text-align: center;
  margin-bottom: 48px;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 40px 0;
}

.flavor-card {
  border: 1px solid var(--line);
  padding: 20px 12px;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products-image {
  margin: 48px auto 0;
  max-width: 700px;
}

.products-image img {
  width: 100%;
  border-radius: 2px;
}

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

.retailers-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.retailers-list li:last-child {
  border-bottom: none;
}

.retailers-list li::before {
  content: "▸";
  color: #c0392b;
  margin-right: 12px;
}

/* ── Our Retailers page ── */
/* Manual tuning knobs — edit these values in styles.css */
.page-retailers {
  --retailers-map-height: 542px; /* map height — match Wix */
  --retailers-hero-height: clamp(440px, 28vw, 320px); /* banner height — lower = shorter hero */
  --retailers-hero-img-position: center 42%; /* crop focus within photo — 2nd value moves crop up/down */
  --retailers-hero-title-top: 50%; /* title vertical position inside banner */
  --retailers-hero-title-size: clamp(28px, 4vw, 67px); /* title font size */
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.retailers-hero {
  background: #150909;
  width: 100%;
  padding-top: calc(var(--header-total) + 24px);
  padding-bottom: 8px;
  line-height: 0;
}

.retailers-hero-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: var(--retailers-hero-height);
  margin: 0 auto;
  overflow: hidden;
}

.retailers-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--retailers-hero-img-position);
}

.retailers-hero-title {
  position: absolute;
  top: var(--retailers-hero-title-top);
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: var(--font-tagline);
  font-style: italic;
  font-weight: 400;
  font-size: var(--retailers-hero-title-size);
  line-height: 1;
  color: var(--white);
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

.retailers-content {
  background: #150909;
  width: 100%;
  padding: 48px 0 56px;
}

.retailers-content-inner {
  margin: 0;
  padding: 0 40px;
  max-width: none;
}

.page-retailers .retailers-content-inner p {
  font-family: var(--font-about-body);
  font-size: 17px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

.page-retailers .retailers-content-inner p.retailers-gap {
  line-height: 1.8;
  font-size: 17px;
  visibility: hidden;
}

.retailers-map {
  width: 100%;
  line-height: 0;
  background: #150909;
}

.retailers-map-canvas {
  width: 100%;
  height: var(--retailers-map-height);
}

.retailers-map-canvas .leaflet-tile-pane {
  filter: grayscale(100%) contrast(0.92) brightness(1.08);
}

.retailers-map-canvas .leaflet-container {
  width: 100%;
  height: 100%;
  font-family: Roboto, Arial, sans-serif;
}

.retailers-map-type-control {
  display: inline-flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  margin: 10px !important;
}

.retailers-map-type-control button {
  border: 0;
  background: #ffffff;
  color: #565656;
  font: 500 16px/1 Roboto, Arial, sans-serif;
  padding: 5px 11px;
  cursor: pointer;
}

.retailers-map-type-control button.is-active {
  color: #000000;
  font-weight: 700;
}

.retailers-map-type-control span {
  display: flex;
  align-items: center;
  color: #70757a;
  font: 400 16px/1 Roboto, Arial, sans-serif;
  padding: 0 1px;
  user-select: none;
}

.retailers-map-canvas .leaflet-popup-content-wrapper {
  border-radius: 2px;
}

.retailers-map-canvas .leaflet-popup-content {
  margin: 12px 14px;
  font: 400 14px/1.5 Roboto, Arial, sans-serif;
  color: #3c4043;
}

.retailers-map-canvas .leaflet-popup-content a {
  color: #1a73e8;
}

.retailers-map-canvas .leaflet-control-zoom {
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin: 0 10px 24px 0 !important;
}

.retailers-map-canvas .leaflet-control-zoom a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  color: #666666;
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.retailers-map-canvas .leaflet-control-zoom a:last-child {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  text-align: center;
}

.contact-item > img {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-item .footer-social a img {
  filter: brightness(0) invert(1);
}

.contact-item h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-weight: 500;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: var(--gray);
}

.contact-item a:hover {
  color: var(--white);
}

.contact-location {
  text-align: center;
  margin-top: 48px;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* ── 404 page ── */
.error-section {
  min-height: calc(100vh - var(--header-total) - 280px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 80px;
}

.error-code {
  margin: 0 0 8px;
  font-family: var(--font-tagline);
  font-style: italic;
  font-size: clamp(72px, 14vw, 120px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
}

.error-section h1 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
}

.error-message {
  margin: 0 0 32px;
  max-width: 420px;
  font-family: var(--font-about-body);
  font-size: 17px;
  font-weight: 200;
  line-height: 1.7;
  color: var(--gray);
}

/* ── Footer ── */
.site-footer {
  background: var(--bg);
  position: relative;
}

.footer-chilis-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.footer-chilis {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  clip-path: inset(0 0 4.2% 0);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 5% 14px;
  background: var(--bg);
}

.footer-signature {
  margin: 0;
  font-family: var(--font-nav);
  font-size: clamp(9px, 0.62vw, 11px);
  font-weight: 400;
  color: #8a8a8a;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.footer-back-top {
  font-family: var(--font-nav);
  font-size: clamp(9px, 0.62vw, 11px);
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-back-top:hover {
  opacity: 0.85;
}

/* Invisible hit areas over baked-in footer icons (footer-chilis.png) */
.footer-social-overlay {
  position: absolute;
  inset: 0;
}

.footer-social-hit {
  position: absolute;
  display: block;
  background: transparent;
  transform: translate(-50%, -50%);
  min-width: 36px;
  min-height: 36px;
}

.footer-social-hit--instagram {
  left: 49.1%;
  top: 60.4%;
  width: 2.5%;
  height: 9%;
}

.footer-social-hit--facebook {
  left: 51.4%;
  top: 60.2%;
  width: 2.5%;
  height: 9%;
}

.footer-social-hit:hover {
  background: transparent;
}

/* Contact page inline social icons */
.footer-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.footer-social a img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .header-inner {
    padding: 0 16px;
    gap: 10px;
  }

  .nav-main a {
    padding: 0 6px;
    font-size: 14px;
  }

  .logo-frame {
    padding: 0 20px;
  }

  .social-header {
    gap: 12px;
  }

  .page-banner h1 {
    font-size: clamp(1.75rem, 4vw, 42px);
  }

  .content-section {
    padding: 48px 20px;
  }
}

@media (max-width: 900px) {
  .about-content-inner {
    padding: 0 16px;
  }

  .products-intro-inner {
    padding: 0 24px;
  }

  .retailers-content-inner {
    padding: 0 24px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .header-inner nav {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
  }

  .nav-main {
    display: none;
    position: fixed;
    top: var(--header-total);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    z-index: 99;
    max-height: calc(100dvh - var(--header-total));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-main.open {
    display: flex;
  }

  .nav-main li {
    width: 100%;
    height: auto;
    justify-content: center;
  }

  .nav-main a {
    width: 100%;
    justify-content: center;
    padding: 14px 0;
    font-size: 18px;
    height: auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
    justify-self: start;
    align-self: center;
  }

  .logo-frame {
    grid-column: 2;
    justify-self: center;
    padding: 0 12px;
  }

  .social-header {
    display: flex;
    grid-column: 3;
    justify-self: end;
    gap: 10px;
  }

  .social-header a img {
    width: 20px;
    height: 20px;
  }

  .page-banner.about {
    min-height: clamp(340px, 42vh, 440px);
  }

  .page-banner.about .page-banner-content {
    padding: calc(var(--header-total) + 20px) 16px 32px;
  }

  .page-banner.about h1 {
    font-size: clamp(36px, 9vw, 56px);
  }

  .page-about .about-content {
    padding: 40px 0 72px;
  }

  .page-about .about-content h2 {
    white-space: normal;
    font-size: clamp(28px, 7vw, 44px);
  }

  .about-content-inner {
    padding: 0 16px;
  }

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

  .about-grid img {
    max-width: 280px;
    margin: 0 auto;
  }

  main.main-home .hero {
    min-height: 360px;
    padding: calc(var(--header-total) + 28px) 16px 16px;
  }

  .page-banner.contact {
    min-height: clamp(280px, 38vh, 400px);
    background-position: center 30%;
  }

  .page-banner {
    min-height: 260px;
    padding: calc(var(--header-total) + 32px) 16px 32px;
  }

  .page-banner h1 {
    font-size: clamp(1.5rem, 6vw, 36px);
  }

  .content-section {
    padding: 40px 16px;
  }

  .content-section p {
    font-size: 16px;
  }

  .products-intro-section {
    padding: 40px 0 48px;
  }

  .products-intro-inner {
    margin-left: 0;
    padding: 0 20px;
  }

  .page-products .products-intro-inner p {
    max-width: none;
  }

  .products-hero-title {
    white-space: normal;
    max-width: 90%;
  }

  .products-showcase {
    padding: 24px 12px 40px;
  }

  .products-showcase-inner {
    max-width: 88%;
  }

  /* Keep only a few corner peppers on small screens to avoid overlap */
  .products-pepper {
    display: none;
  }

  .products-pepper--1,
  .products-pepper--9,
  .products-pepper--7,
  .products-pepper--15 {
    display: block;
    opacity: 0.45;
  }

  .products-pepper--1 { top: 1%;  left: -2%; }
  .products-pepper--9 { top: 1%;  right: -2%; }
  .products-pepper--7 { top: 90%; left: -2%; }
  .products-pepper--15 { top: 90%; right: -2%; }

  .retailers-hero-title {
    white-space: normal;
    max-width: 90%;
  }

  .retailers-content-inner {
    margin-left: 0;
    padding: 0 20px;
  }

  .page-retailers .retailers-map-canvas {
    height: min(var(--retailers-map-height), 70vw);
  }

  .page-about .about-content p:not(.about-gap) {
    max-width: none;
  }

  .flavors-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .footer-meta {
    padding: 8px 16px 12px;
  }

  .footer-signature {
    font-size: clamp(9px, 2.5vw, 11px);
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .products-hero-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .retailers-hero-title {
    font-size: clamp(24px, 6vw, 44px);
  }

  .page-products {
    --products-hero-img-width: min(100%, 680px);
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 72px;
  }

  .logo-frame img {
    height: 48px;
  }

  .hero-line-bottom {
    margin-top: 18px;
  }

  .btn-outline {
    font-size: 12px;
    padding: 8px 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-social-hit {
    min-width: 44px;
    min-height: 44px;
  }

  .footer-meta {
    padding: 6px 12px 10px;
  }

  .footer-signature {
    font-size: clamp(8px, 2.2vw, 10px);
    max-width: 65%;
  }
}
