@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,800&family=Inter:wght@400;500;600;700;800&display=swap");

/* =========================================
   VARIABLES
========================================= */

:root {
  --color-bg: #e0b24f;
  --color-surface: #f3e1b6;
  --color-surface-2: #ecd29a;
  --color-text: #1e1c18;
  --color-text-soft: rgba(30, 28, 24, 0.72);
  --color-mustard: #e0b24f;
  --color-olive: #b76d28;
  --color-rust: #ef7a34;
  --color-rust-dark: #d86524;
  --color-charcoal: #181818;
  --color-white: #ffffff;
  --color-border: rgba(30, 28, 24, 0.08);
  --color-border-light: rgba(30, 28, 24, 0.04);

  --bg-striped-a: #f3d7a0;
  --bg-striped-b: #e0b24f;
  --bg-main: rgb(187, 191, 97);
  --bg-header: rgb(130, 194, 195);
  --bg-hero-copy: #f8f4eb;
  --bg-flavor: #f8f1df;

  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.16);
  --shadow-bottle: 0 24px 44px rgba(0, 0, 0, 0.18);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  --container: 1240px;
  --container-narrow: 820px;
  --header-height: 88px;
  --shopify-cart-width: 380px;
  --transition: 220ms ease;
}

/* =========================================
   RESET / BASE
========================================= */

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: repeating-linear-gradient(
    90deg,
    var(--bg-striped-a) 0,
    var(--bg-striped-a) 90px,
    var(--bg-striped-b) 90px,
    var(--bg-striped-b) 180px
  );
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  flex: 1;
  overflow: clip;
  background: var(--bg-main);
  backdrop-filter: blur(4px);
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/* =========================================
   LAYOUT
========================================= */

.container {
  width: min(100% - clamp(2rem, 5vw, 4rem), var(--container));
  margin-inline: auto;
}

.narrow-copy {
  width: min(100%, var(--container-narrow));
  margin-inline: auto;
}

.section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

section.full-bleed {
  width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

/* =========================================
   ACCESSIBILITY
========================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--color-white);
  background: var(--color-text);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: var(--color-text);
  line-height: 1;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.7rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  margin: 0 0 1rem;
}

.eyebrow,
.flavor-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-rust);
}

.flavor-kicker {
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.btn:focus-visible,
button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(239, 122, 52, 0.28);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-rust);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-rust-dark);
}

.btn-secondary {
  color: #111;
  background: transparent;
  border-color: #111;
}

.btn-secondary:hover {
  color: var(--color-white);
  background: #111;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  font-weight: 800;
  color: var(--color-rust);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-text::after {
  content: "→";
  transition: transform var(--transition);
}

.btn-text:hover::after {
  transform: translateX(4px);
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  width: clamp(120px, 14vw, 180px);
  height: auto;
  max-width: none;
  max-height: none;
}

.site-nav {
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
}

.nav-list a,
.footer-nav a {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition:
    color var(--transition),
    background-color var(--transition);
}

.nav-list a {
  color: #111;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--color-rust);
  background: rgba(239, 122, 52, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cart {
  position: relative;
  transition: transform var(--transition);
}

.header-cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--color-white);
  background: var(--color-rust);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition:
    right 160ms ease,
    top 160ms ease,
    transform 160ms ease,
    background-color var(--transition);
}

.header-cart a:hover {
  background: var(--color-rust-dark);
}

.header-cart img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.header-cart a:hover img {
  transform: scale(1.06);
}

.mobile-nav-toggle {
  display: none;
}

/* =========================================
   HERO / PAGE HERO
========================================= */

.hero,
.page-hero {
  position: relative;
  padding: 0;
}

.hero-grid,
.page-hero-inner,
.section-grid,
.product-hero-grid {
  display: grid;
  gap: 0;
  align-items: stretch;
}

.hero-grid,
.page-hero-inner {
  grid-template-columns: 0.92fr 1.08fr;
  min-height: calc(100vh - var(--header-height));
}

.hero-copy,
.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(1.25rem, 5vw, 5rem);
}

.hero-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    var(--bg-hero-copy);
}

.page-hero-copy {
  background: linear-gradient(135deg, #f7ead0 0%, #f2d598 100%);
}

.section-copy,
.product-details {
  max-width: 650px;
}

.hero-text,
.product-lead {
  font-size: 1.08rem;
  color: var(--color-text-soft);
}

.hero-actions,
.final-cta-actions,
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.final-cta-actions {
  justify-content: center;
}

.hero-media,
.page-hero-media,
.section-media {
  min-height: 100%;
}

.hero-media,
.page-hero-media {
  position: relative;
  overflow: hidden;
}

.hero-media {
  background: var(--color-bg);
}

.page-hero-media {
  background: #e7b951;
}

.hero-media img,
.page-hero-media img,
.section-media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02) brightness(1.01);
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.page-hero-compact {
  text-align: center;
  padding: 2rem 0 0.25rem;
}

.page-hero-compact .narrow-copy {
  max-width: 780px;
}

/* =========================================
   FULL BLEED SECTIONS
========================================= */

.hero.full-bleed .hero-grid,
.about-preview.full-bleed .container,
.final-cta.full-bleed .container {
  width: 100%;
  max-width: none;
}

.hero.full-bleed .hero-copy,
.final-cta.full-bleed .final-cta-inner {
  padding-left: clamp(1.25rem, 5vw, 5rem);
  padding-right: clamp(1.25rem, 5vw, 5rem);
}

.about-preview.full-bleed,
.final-cta.full-bleed {
  padding-left: 0;
  padding-right: 0;
}

.about-preview.full-bleed {
  padding-top: 0;
  padding-bottom: 0;
}

.about-preview.full-bleed .container,
.final-cta.full-bleed .container {
  padding-left: 0;
  padding-right: 0;
}

.about-preview.full-bleed .section-grid {
  width: 100%;
  max-width: none;
  gap: 0;
}

.about-preview.full-bleed .section-copy {
  padding: 4rem clamp(1.25rem, 5vw, 5rem);
  max-width: none;
}

.about-preview.full-bleed .section-media img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.final-cta.full-bleed {
  padding-bottom: 0;
}

.final-cta.full-bleed .final-cta-inner {
  width: 100%;
  max-width: none;
  border-left: 0;
  border-right: 0;
}

/* =========================================
   ABOUT
========================================= */

.about-preview {
  padding: 0;
  background: #f0ac2e;
}

.about-preview .section-grid {
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 720px;
}

.about-preview .section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(1.25rem, 5vw, 5rem);
  max-width: none;
  background: linear-gradient(135deg, #f6ebcf 0%, #f1ddb1 100%);
}

.about-content {
  position: relative;
  padding: 6rem 0;
  background: transparent;
  isolation: isolate;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fff2d8 0%, #f1ddb1 100%);
  z-index: -1;
}

.about-content .container,
.about-content .narrow-copy {
  position: relative;
  z-index: 1;
}

/* =========================================
   FLAVOR CAROUSEL
========================================= */

.heat-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0;
  background: var(--bg-main);
}

.heat-carousel .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.carousel-shell {
  position: relative;
  padding-top: 2rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(28, 27, 24, 0.12);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  color: var(--color-text);
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.carousel-arrow-prev {
  left: 1rem;
}

.carousel-arrow-next {
  right: 1rem;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(28, 27, 24, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(calc(-50% - 2px));
}

.flavor-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) minmax(460px, 1.2fr) minmax(
      200px,
      0.85fr
    );
  align-items: start;
  gap: 1.5rem;
  min-height: 780px;
  padding: 4rem 5.5rem 2rem;
  overflow: hidden;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.28),
      rgba(255, 255, 255, 0.08)
    ),
    var(--bg-flavor);
  border: 0;
  box-shadow: var(--shadow-md);
}

.flavor-carousel::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;
  left: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12 Q15 0 30 12 T60 12 T90 12 T120 12' fill='none' stroke='%23ef7a34' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E")
      top center / 120px 24px repeat-x,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12 Q15 24 30 12 T60 12 T90 12 T120 12' fill='none' stroke='%23d96525' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E")
      bottom center / 120px 24px repeat-x;
  pointer-events: none;
  z-index: -1;
}

.flavor-card {
  text-align: center;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 520ms ease;
  will-change: transform, opacity, filter;
}

.flavor-card-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.flavor-card-side {
  opacity: 0.35;
  padding-top: 1rem;
  transform: translateY(20px) scale(0.86) rotate(-3deg);
  filter: blur(1px);
}

.flavor-card-side:last-child {
  transform: translateY(20px) scale(0.86) rotate(3deg);
}

.flavor-card-side img {
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-bottle));
}

.flavor-card-side h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.flavor-card-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  transform: translateY(0) scale(1);
  animation: featuredSaucePop 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flavor-card-featured .flavor-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flavor-card-featured img {
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.22));
  transition: transform 420ms ease;
  animation: bottleFloatIn 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flavor-card-featured:hover img {
  transform: translateY(-6px);
}

.flavor-card-content {
  max-width: 540px;
  margin-top: 0.5rem;
  text-align: center;
}

.carousel-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.carousel-actions .shopify-button-wrapper,
.carousel-actions .btn {
  min-width: 220px;
}

.carousel-actions .shopify-button-wrapper {
  min-height: 56px;
  margin-top: 0;
}

@keyframes featuredSaucePop {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
    filter: blur(3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes bottleFloatIn {
  0% {
    transform: translateY(28px) rotate(-2deg) scale(0.96);
  }

  60% {
    transform: translateY(-8px) rotate(1deg) scale(1.02);
  }

  100% {
    transform: translateY(0) rotate(0) scale(1);
  }
}

/* =========================================
   PRODUCTS
========================================= */

.products-section {
  padding-top: 2rem;
  background: linear-gradient(180deg, #f8f1df 0%, var(--color-surface) 100%);
}

.product-grid,
.related-links-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.related-product-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.38),
    rgba(255, 255, 255, 0.16)
  );
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(3px);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card-image {
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: 2.5rem 1rem 1rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 45%),
    #f4e3bb;
}

.product-card-image img {
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.16));
  transition: transform var(--transition);
}

.product-card:hover .product-card-image img,
.related-product-card:hover img {
  transform: translateY(-5px);
}

.product-card-body {
  padding: 0 1.5rem 1.75rem;
}

.product-heat {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  background: rgba(224, 178, 79, 0.24);
}

/* =========================================
   PRODUCT PAGE
========================================= */

.product-hero {
  padding-top: 2rem;
  padding-bottom: 0;
  background: transparent;
}

.product-hero-grid {
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 3rem;
}

.product-image {
  display: grid;
  place-items: center;
  min-height: 720px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 45%),
    var(--color-surface-2);
}

.product-image img {
  max-height: 720px;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.16));
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.product-page .product-heat {
  width: fit-content;
  align-self: flex-start;
  padding: 0.45rem 0.75rem;
}

.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  font-size: 0.94rem;
  color: var(--color-text-soft);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  color: rgba(31, 35, 34, 0.4);
}

.product-content,
.product-pairings {
  padding-top: 1rem;
}

.related-products {
  background: linear-gradient(180deg, #f8f1df 0%, #f6ebcf 100%);
}

.related-products .section-header {
  text-align: left;
  margin-inline: 0;
}

.related-product-card {
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.related-product-card:hover {
  background: rgba(255, 255, 255, 0.82);
}

.related-product-card a {
  display: block;
  padding: 1.5rem;
  text-align: center;
}

.related-product-card img {
  max-height: 240px;
  margin: 0 auto 1rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition);
}

/* =========================================
   STORE LOCATOR
========================================= */

.page-store-locator .locator-section {
  padding: 1rem 0 4rem;
}

.locator-section {
  background: linear-gradient(180deg, #f6ebcf 0%, #f3d7a0 100%);
}

.locator-search {
  max-width: 860px;
  margin: 0 auto 2rem;
}

.locator-search label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.locator-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
}

.locator-search input {
  min-height: 56px;
  padding: 0 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: none;
}

.locator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.locator-results {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.locator-map {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.locator-map iframe {
  width: 100%;
  height: 600px;
  border: 0;
}

.store-results-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.store-card {
  padding: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.48),
    rgba(255, 255, 255, 0.18)
  );
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.store-card h3 {
  margin-bottom: 0.5rem;
}

.store-products {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-olive);
}

/* =========================================
   FINAL CTA
========================================= */

.final-cta {
  background: #f3d7a0;
}

.final-cta-inner {
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  color: var(--color-white);
  background: linear-gradient(135deg, #bbbf61, #cacf6b);
  border: 0;
}

.final-cta-inner h2,
.final-cta-inner p,
.final-cta-inner .eyebrow {
  color: var(--color-white);
}

/* =========================================
   NEWSLETTER
========================================= */

.newsletter-section {
  padding-top: 0;
  padding-bottom: 3rem;
}

.newsletter-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 3rem;
  align-items: start;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
}

.newsletter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.newsletter-copy,
.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-copy {
  max-width: 640px;
}

.newsletter-copy h2 {
  margin-bottom: 1rem;
}

.newsletter-copy p:last-child {
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
  width: 100%;
}

.newsletter-form input {
  width: 100%;
  height: 56px;
  padding: 0 1rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.newsletter-form input:focus {
  border-color: var(--color-rust);
}

.newsletter-form .btn {
  width: 100%;
  min-width: 0;
}

.newsletter-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.newsletter-consent {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(28, 27, 24, 0.68);
  text-align: left;
}

.newsletter-message {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
}

.newsletter-message.success {
  color: #2f7a3f;
}

.newsletter-message.error {
  color: #b13b2e;
}

/* =========================================
   SHOPIFY
========================================= */

.shopify-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  margin-top: 0;
}

.shopify-button-wrapper .shopify-buy__btn {
  min-height: 56px !important;
  padding: 0 1.35rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: var(--color-white) !important;
  background: var(--color-rust) !important;
  border: 1px solid transparent !important;
  border-radius: 0 !important;
  box-shadow: var(--shadow-sm) !important;
  transition:
    transform var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.shopify-button-wrapper .shopify-buy__btn:hover {
  background: var(--color-rust-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.shopify-button-wrapper .shopify-buy__btn:active {
  transform: translateY(0);
}

.shopify-buy__cart-toggle {
  opacity: 0 !important;
  transform: scale(0) !important;
}

.shopify-buy-frame--toggle {
  display: none !important;
}

body.cart-open .header-cart {
  transform: translateX(
    calc(-1 * (var(--shopify-cart-width, 380px) + 0.01rem))
  );
}

.shopify-button-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* =========================================
   IMAGE MARQUEE
========================================= */

.image-marquee-section {
  overflow: hidden;
  width: 100%;
  padding: 0;
}

.image-marquee {
  overflow: hidden;
  width: 100%;
}

.image-marquee-track {
  display: flex;
  width: max-content;
  animation: imageMarquee 34s linear infinite;
}

.image-marquee-track img {
  width: clamp(240px, 24vw, 420px);
  height: clamp(260px, 32vw, 520px);
  object-fit: cover;
  flex: 0 0 auto;
}

@keyframes imageMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0;
  color: var(--color-white);
  background: linear-gradient(135deg, #ef7a34, #d96525);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand img,
.mayke-logo,
.header-cart img {
  filter: brightness(0) invert(1);
}

.footer-brand img {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.92);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav a,
.footer-meta a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-nav a {
  padding-left: 0;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: #ffe7c1;
  background: transparent;
}

.footer-meta p + p {
  margin-top: 0.75rem;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
}

.mayke-logo {
  height: 28px;
  width: auto;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.footer-credit a:hover .mayke-logo {
  opacity: 1;
  transform: translateY(-1px);
}

/* =========================================
   PAGE SPECIFIC
========================================= */

.page-home .hero-copy h1 {
  max-width: 9ch;
}

.page-about .page-hero-copy h1 {
  max-width: 10ch;
}

.page-shop .page-hero h1,
.page-store-locator .page-hero h1 {
  max-width: 12ch;
  margin-inline: auto;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1180px) and (min-width: 861px) {
  .container {
    width: min(100% - 3rem, var(--container));
  }

  .hero-grid,
  .page-hero-inner,
  .about-preview .section-grid,
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero-copy,
  .about-preview .section-copy,
  .product-details {
    max-width: none;
    padding: 4rem 2rem;
  }

  .hero-media,
  .page-hero-media,
  .section-media,
  .product-image {
    order: -1;
  }

  .hero-media img,
  .page-hero-media img,
  .section-media img {
    min-height: 520px;
  }

  .flavor-carousel {
    grid-template-columns: minmax(160px, 0.8fr) minmax(320px, 1.1fr) minmax(
        160px,
        0.8fr
      );
    min-height: 650px;
    padding: 2rem 4.5rem 1rem;
  }

  .flavor-card-featured img {
    max-height: 620px;
  }

  .flavor-card-side img {
    max-height: 420px;
  }

  .locator-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
  }

  .locator-map iframe {
    height: 520px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {
  .locator-layout {
    grid-template-columns: 1fr;
  }

  .locator-map {
    display: none;
  }

  .locator-results {
    max-height: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: auto;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    justify-items: stretch;
    gap: 1rem;
    padding: 1rem 0;
  }

  .site-logo {
    grid-column: 1;
    justify-self: start;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--color-border);
  }

  .mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin-inline: auto;
    background: var(--color-text);
    transition:
      transform var(--transition),
      opacity var(--transition);
  }

  .mobile-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    background: rgba(248, 245, 238, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
  }

  .nav-list a {
    justify-content: center;
    padding: 1rem;
  }

  .hero-grid,
  .page-hero-inner,
  .section-grid,
  .product-hero-grid,
  .about-preview .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero-copy,
  .about-preview .section-copy,
  .product-details {
    max-width: none;
    padding: 3rem 1.25rem;
  }

  .hero-media,
  .page-hero-media,
  .section-media,
  .product-image {
    order: -1;
  }

  .hero-media {
    width: 100%;
    min-height: 460px;
    height: 460px;
  }

  .hero-carousel,
  .hero-slide {
    width: 100%;
    height: 100%;
    min-height: 460px;
  }

  .hero-media img,
  .page-hero-media img,
  .section-media img {
    min-height: 460px;
  }

  .section {
    padding: 4rem 0;
  }

  .carousel-shell {
    padding-top: 1rem;
  }

  .carousel-arrow {
    display: none;
  }

  .flavor-carousel {
    grid-template-columns: 0.58fr 1fr 0.58fr;
    gap: 0.25rem;
    min-height: auto;
    padding: 2rem 0.25rem 1rem;
  }

  .flavor-card-side {
    display: block;
    opacity: 0.35;
    padding-top: 3rem;
    transform: translateY(6px) scale(0.9);
  }

  .flavor-card-side:first-child {
    transform: translateX(-30%) translateY(6px) scale(0.9) rotate(-3deg);
  }

  .flavor-card-side:last-child {
    transform: translateX(30%) translateY(6px) scale(0.9) rotate(3deg);
  }

  .flavor-card-side img {
    max-height: 360px;
  }

  .flavor-card-side h3 {
    display: none;
  }

  .flavor-card-featured img {
    max-height: 520px;
  }

  .flavor-card-content {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-inline: 1rem;
  }

  .flavor-card-content p {
    max-width: none;
  }

  .carousel-actions {
    width: 100vw;
    flex-direction: column;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-inline: 1rem;
  }

  .carousel-actions .btn,
  .carousel-actions .shopify-button-wrapper {
    width: 100%;
    max-width: none;
  }

  .product-grid,
  .related-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .locator-search-row,
  .newsletter-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    gap: 2rem;
  }

  .newsletter-copy {
    max-width: none;
  }

  body.cart-open .header-cart {
    top: 1rem;
    right: 1rem;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .btn {
    width: 100%;
  }

  .final-cta-actions .btn {
    width: auto;
  }

  .hero-actions,
  .final-cta-actions,
  .about-cta {
    flex-direction: column;
  }

  .product-grid,
  .related-links-grid {
    grid-template-columns: 1fr;
  }

  .product-card-image {
    min-height: 320px;
  }

  .product-card-image img {
    max-height: 300px;
  }

  .product-image {
    min-height: 460px;
  }

  .product-image img {
    max-height: 560px;
  }

  .flavor-card-side img {
    max-height: 300px;
  }

  .flavor-card-featured img {
    max-height: 420px;
  }

  .hero-media {
    min-height: 320px;
    height: 320px;
  }

  .hero-carousel,
  .hero-slide,
  .hero-media img,
  .page-hero-media img,
  .section-media img {
    min-height: 320px;
  }
}
