/*
Theme Name: Chozzy Farm
Theme URI: http://localhost:8082
Author: Chozzy Farm
Description: Custom one-page WordPress theme for Chozzy Farm.
Version: 1.0.4
Text Domain: chozzyfarm
*/

:root {
  --green: #073c25;
  --green-2: #2e4f29;
  --cream: #fff7ed;
  --cream-2: #f2eadf;
  --orange: #ff7f1f;
  --yellow: #eab529;
  --pink: #ffb6ad;
  --ink: #211d1d;
  --muted: #667267;
  --line: rgba(7, 60, 37, 0.24);
}

@font-face {
  font-family: "ChozzySlab";
  src: url("assets/fonts/BerlingskeSlab-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ChozzyFine";
  src: url("assets/fonts/GTSectraFine-Book.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ChozzyCondensed";
  src: url("assets/fonts/UbuntuSans-wdth-wght.ttf") format("truetype");
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  line-height: 1.5;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-page {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 60, 37, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(7, 60, 37, 0.025) 1px, transparent 1px),
    var(--cream);
  background-size: 72px 72px;
}

.site-page > :not(.peanut-background):not(.site-header) {
  position: relative;
  z-index: 2;
}

.peanut-background {
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.peanut-background img {
  position: absolute;
  left: var(--peanut-left);
  top: var(--peanut-top);
  width: var(--peanut-size);
  opacity: var(--peanut-opacity);
  mix-blend-mode: multiply;
  filter: saturate(0.82);
  transform: translate(-50%, -50%) rotate(var(--peanut-rotation));
  transform-origin: center;
  user-select: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(22px, 3vw, 36px);
  min-height: 72px;
  padding: 12px clamp(28px, 5vw, 64px);
  background: transparent;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 247, 237, 0.94);
  color: var(--green);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px rgba(7, 60, 37, 0.08);
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chozzy-logo-mask {
  display: block;
  background: currentColor;
  mask: url("assets/img/chozzy-logo-large.svg") center / contain no-repeat;
  -webkit-mask: url("assets/img/chozzy-logo-large.svg") center / contain no-repeat;
}

.chozzy-logo-nav {
  width: clamp(176px, 17vw, 260px);
  aspect-ratio: 1405 / 306;
  color: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(34px, 5.4vw, 92px);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 15px;
  font-stretch: 82%;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav-left {
  justify-content: flex-start;
}

.site-nav-right {
  justify-content: flex-end;
}

.language-pill {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 32px;
  padding: 0 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.site-header.is-scrolled .language-pill {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

.site-nav a {
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled .site-nav a {
  text-shadow: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  display: none;
}

.pill-link,
.hero-cta,
.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 3px 4px 0 rgba(7, 60, 37, 0.9);
}

.hero {
  position: relative;
  min-height: 56vh;
  height: clamp(430px, 56vw, 620px);
  display: grid;
  align-items: center;
  color: var(--cream);
  background: var(--ink);
  margin-top: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 60, 37, 0.12);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-title,
.product-title,
.offer-title {
  font-family: "ChozzySlab", Georgia, serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-copy {
  display: none;
  max-width: 680px;
  margin: 28px auto 0;
  color: rgba(255, 247, 237, 0.9);
  font-size: clamp(18px, 2.1vw, 26px);
}

.hero-actions {
  display: none;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-cta {
  background: var(--cream);
  color: var(--green);
}

.hero-cta.alt {
  background: transparent;
  color: var(--cream);
  box-shadow: 4px 5px 0 rgba(255, 247, 237, 0.4);
}

.market-strip {
  padding: 46px clamp(18px, 4vw, 56px) 58px;
  border-bottom: 16px solid var(--yellow);
  background: var(--cream);
}

.market-inner {
  width: min(1300px, 100%);
  margin: 0 auto;
}

.market-pill {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 8px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4dcc8;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.market-pill strong {
  margin-right: 18px;
  text-transform: uppercase;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(1040px, 100%);
  margin: 70px auto 0;
}

.price-card {
  min-height: 132px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f4dcc8;
}

.price-card h3 {
  margin: 0 0 8px;
  font-family: "ChozzySlab", Georgia, serif;
  font-size: 17px;
  text-transform: uppercase;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #273d2b;
}

.price-value strong {
  font-family: "ChozzySlab", Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.price-value span {
  color: rgba(7, 60, 37, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.price-value em {
  margin-left: auto;
  padding: 6px 11px;
  border: 1px solid rgba(139, 63, 62, 0.55);
  border-radius: 999px;
  color: #8b3f3e;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.price-card footer {
  margin-top: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(7, 60, 37, 0.12);
  color: rgba(7, 60, 37, 0.54);
  font-size: 12px;
  text-transform: uppercase;
}

.marquee {
  display: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: chozzy-marquee 24s linear infinite;
}

.marquee-track span {
  margin: 14px 26px;
  padding: 9px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4dcc8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--green);
}

.featured-product {
  background: var(--yellow);
  color: var(--green);
  padding: clamp(24px, 2.5vw, 30px) clamp(18px, 5vw, 72px) clamp(44px, 5vw, 58px);
}

.featured-product-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 376px;
  align-items: center;
  gap: clamp(56px, 7vw, 82px);
}

.featured-product-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 24px;
}

.featured-product h2 {
  margin: 0;
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(38px, 4.4vw, 52px);
  font-weight: 400;
  line-height: 0.98;
}

.featured-product p {
  width: min(260px, 100%);
  margin: 26px 0 22px;
  color: rgba(7, 60, 37, 0.75);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
}

.featured-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(240px, 100%);
  min-height: 30px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  box-shadow: 0 5px 0 var(--green);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 13px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.featured-product-arrows {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 146px;
  height: 30px;
  margin-top: 54px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: transparent;
}

.featured-product-arrows button {
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.featured-product-arrows span {
  width: 1px;
  height: 22px;
  background: var(--green);
}

.featured-product-image {
  width: 376px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
}

@keyframes chozzy-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro {
  background: var(--cream);
}

.story-section {
  padding-top: clamp(82px, 9vw, 124px);
  padding-bottom: clamp(76px, 9vw, 120px);
}

.story-section .section-inner {
  width: min(1180px, 100%);
}

.story-head {
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.story-head h2 {
  margin: 0;
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 400;
  line-height: 1.05;
}

.story-head p {
  margin: 24px auto 0;
  color: rgba(33, 29, 29, 0.68);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.45;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: center;
}

.story-image {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  border-radius: 8px;
}

.story-copy {
  max-width: 690px;
  padding-top: clamp(40px, 9vw, 150px);
}

.story-copy h3 {
  margin: 0 0 26px;
  color: var(--ink);
  font-family: "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.story-copy p {
  margin: 0;
  color: rgba(33, 29, 29, 0.66);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.55;
}

.about-page-shell {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
}

.about-page-shell .site-header {
  color: var(--green);
  background: rgba(255, 247, 237, 0.92);
  border-bottom-color: transparent;
}

.about-page-shell .site-header.is-scrolled,
.about-page-shell .site-header.is-menu-open {
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px rgba(7, 60, 37, 0.08);
}

.about-hero {
  padding: clamp(76px, 7.5vw, 88px) 18px 0;
  text-align: center;
}

.about-hero-inner {
  width: min(850px, 100%);
  margin: 0 auto;
}

.about-hero h1 {
  margin: 0;
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(44px, 4.7vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.about-hero p {
  margin: 16px auto 0;
  color: rgba(33, 29, 29, 0.66);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 15px;
  line-height: 1.5;
}

.about-story {
  padding: 0 18px clamp(62px, 7vw, 86px);
}

.about-story-inner {
  width: min(850px, 100%);
  margin: 0 auto;
}

.about-story-row {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr);
  gap: clamp(46px, 6vw, 88px);
  align-items: center;
  margin-top: clamp(38px, 4.5vw, 52px);
}

.about-story-row-image-right {
  grid-template-columns: minmax(0, 1fr) 264px;
}

.about-story-row-image-right .about-story-media {
  order: 2;
}

.about-story-row-image-right .about-story-copy {
  order: 1;
  text-align: center;
}

.about-story-media {
  margin: 0;
}

.about-story-media img {
  width: 100%;
  min-height: 176px;
  object-fit: cover;
  border-radius: 8px;
}

.about-story-copy {
  color: var(--ink);
}

.about-story-copy h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-story-copy p {
  margin: 0;
  color: rgba(33, 29, 29, 0.66);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
}

.about-closing {
  padding: 8px 18px 0;
  background: var(--cream);
  text-align: center;
}

.about-closing-inner {
  width: min(850px, 100%);
  margin: 0 auto;
}

.about-closing h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.about-closing > .about-closing-inner > p {
  margin: 22px auto 0;
  color: rgba(33, 29, 29, 0.66);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
}

.about-closing .brand-footer {
  padding: clamp(58px, 7vw, 78px) 0 0;
  background: transparent;
}

.about-closing .brand-footer-inner {
  width: 100%;
}

.about-closing .footer-mascots {
  margin-bottom: 22px;
}

.about-closing .brand-footer-word {
  margin-top: 0;
}

.about-closing .brand-footer-heading {
  margin-top: 18px;
  margin-bottom: 28px;
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

.about-closing .brand-footer-reasons {
  max-width: 930px;
}

.about-closing .brand-footer-cta {
  margin-top: 42px;
  margin-bottom: 22px;
}

.contacts-page-shell {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
}

.contacts-page-shell .peanut-background {
  display: none;
}

.contacts-page-shell .site-header {
  color: var(--green);
  background: rgba(255, 247, 237, 0.92);
  border-bottom-color: transparent;
}

.contacts-page-shell .site-header.is-scrolled,
.contacts-page-shell .site-header.is-menu-open {
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px rgba(7, 60, 37, 0.08);
}

.contacts-page {
  min-height: 100vh;
  padding: 0 clamp(18px, 4vw, 56px) clamp(72px, 8vw, 110px);
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: clamp(82px, 8vw, 96px);
}

.contacts-info,
.contacts-form-panel {
  min-height: calc(100vh - 96px);
}

.contacts-info {
  padding: 0 clamp(44px, 7vw, 96px) 0 0;
}

.contacts-form-panel {
  padding: 0 0 0 clamp(44px, 7vw, 96px);
  border-left: 1px solid var(--line);
}

.contacts-info h1,
.contacts-form-panel > h2 {
  margin: 0 0 clamp(38px, 5vw, 58px);
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.contact-detail {
  margin: 0 0 clamp(34px, 5vw, 58px);
}

.contact-detail h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 14px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  color: rgba(33, 29, 29, 0.74);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 16px;
  line-height: 1.55;
}

.contact-detail a {
  display: inline-flex;
  margin-bottom: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-detail p {
  margin: 0;
}

.contacts-form {
  display: grid;
  gap: 18px;
}

.contacts-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 14px;
  line-height: 1.2;
}

.contacts-form input,
.contacts-form select,
.contacts-form textarea {
  width: 100%;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(7, 60, 37, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.contacts-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contacts-form input:focus,
.contacts-form select:focus,
.contacts-form textarea:focus {
  border-color: var(--green-2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(46, 79, 41, 0.09);
}

.contacts-form button {
  justify-self: start;
  min-height: 38px;
  margin-top: 4px;
  padding: 0 24px;
  border: 2px solid var(--green-2);
  border-radius: 999px;
  background: transparent;
  color: var(--green-2);
  box-shadow: 0 5px 0 var(--green-2);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 13px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contacts-form button:hover,
.contacts-form button:focus-visible {
  background: rgba(46, 79, 41, 0.06);
  box-shadow: 0 3px 0 var(--green-2);
  transform: translateY(2px);
}

.contacts-map {
  width: min(1180px, 100%);
  margin: clamp(52px, 7vw, 86px) auto 0;
}

.contacts-map h2 {
  margin: 0 0 8px;
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.contacts-map-link {
  display: table;
  margin: 0 auto 22px;
  color: rgba(33, 29, 29, 0.74);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacts-map-frame {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-2);
  box-shadow: 8px 8px 0 rgba(7, 60, 37, 0.18);
}

.contacts-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: 8px;
  color: var(--green-2);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 14px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.contacts-map-fallback span {
  color: rgba(33, 29, 29, 0.62);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contacts-map-frame iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contacts-directions {
  width: min(1180px, 100%);
  margin: clamp(44px, 6vw, 72px) auto 0;
  padding: clamp(36px, 4.8vw, 52px) clamp(42px, 6vw, 72px) clamp(34px, 4.8vw, 50px);
  border: 1px solid var(--green);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.5);
}

.contacts-directions h2 {
  margin: 0 0 clamp(42px, 5vw, 58px);
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.contacts-directions-list {
  display: grid;
  gap: clamp(34px, 5vw, 54px);
}

.contacts-directions article {
  max-width: 940px;
}

.contacts-directions h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 14px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.contacts-directions p {
  margin: 0;
  color: rgba(33, 29, 29, 0.7);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 15px;
  line-height: 1.45;
}

.contacts-visit {
  width: min(1180px, 100%);
  margin: clamp(46px, 6vw, 74px) auto 0;
  padding: clamp(18px, 2.4vw, 28px) clamp(8px, 1vw, 12px) 0;
}

.contacts-visit h2 {
  margin: 0 0 clamp(40px, 5.2vw, 58px);
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.contacts-visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 58px) clamp(48px, 7vw, 86px);
}

.contacts-visit h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 14px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.contacts-visit p {
  margin: 0;
  color: rgba(33, 29, 29, 0.7);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 15px;
  line-height: 1.45;
}

.wholesale-page-shell {
  background: var(--cream);
  color: var(--green-2);
}

.wholesale-page-shell .peanut-background {
  display: none;
}

.wholesale-page-shell .site-header {
  color: var(--green);
  background: rgba(255, 247, 237, 0.92);
  border-bottom-color: transparent;
}

.wholesale-page-shell .site-header.is-scrolled,
.wholesale-page-shell .site-header.is-menu-open {
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px rgba(7, 60, 37, 0.08);
}

.wholesale-hero {
  padding: clamp(86px, 8vw, 112px) clamp(18px, 4vw, 56px) clamp(72px, 8vw, 110px);
}

.wholesale-hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.wholesale-hero h1 {
  margin: 0;
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.96;
}

.wholesale-hero p {
  margin: 24px auto 30px;
  color: rgba(33, 29, 29, 0.72);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.wholesale-hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.wholesale-varieties {
  margin-top: clamp(54px, 6vw, 72px);
}

.wholesale-varieties h2 {
  margin: 0 0 clamp(42px, 5vw, 58px);
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.wholesale-varieties-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
  text-align: center;
}

.wholesale-varieties h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.wholesale-varieties p {
  max-width: 470px;
  margin: 0;
  color: rgba(33, 29, 29, 0.7);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 17px;
  line-height: 1.48;
}

.wholesale-varieties-list ul {
  display: grid;
  width: min(430px, 100%);
  gap: 10px;
  margin: 28px auto 0;
  padding: 0;
  color: var(--ink);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 17px;
  line-height: 1.36;
  list-style: none;
  text-align: left;
}

.wholesale-varieties-list li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 2px;
  align-items: start;
}

.wholesale-varieties-list li::before {
  content: "•";
  transform: translateY(-1px);
}

.wholesale-varieties-growth {
  display: grid;
  justify-items: center;
}

.wholesale-growth-card {
  width: min(430px, 100%);
  margin-top: 14px;
  margin-bottom: 20px;
  padding: 28px 34px;
  border: 1px solid rgba(7, 60, 37, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.wholesale-growth-card p {
  max-width: none;
}

.wholesale-varieties-growth > p {
  max-width: 510px;
}

.wholesale-products {
  width: min(1010px, 100%);
  margin: clamp(76px, 9vw, 118px) auto 0;
  text-align: center;
}

.wholesale-products h2 {
  margin: 0 0 clamp(34px, 4.8vw, 50px);
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.wholesale-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4.6vw, 44px);
  align-items: start;
}

.wholesale-product-card {
  display: block;
  color: var(--ink);
  outline-offset: 8px;
  transition: transform 180ms ease;
}

.wholesale-product-card:hover,
.wholesale-product-card:focus-visible {
  transform: translateY(-4px);
}

.wholesale-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}

.wholesale-product-card h3 {
  display: grid;
  gap: 2px;
  margin: 22px 0 12px;
  color: var(--ink);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 15px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.18;
  text-transform: uppercase;
}

.wholesale-product-card p {
  max-width: 286px;
  margin: 0 auto;
  color: rgba(33, 29, 29, 0.76);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 15px;
  line-height: 1.5;
}

.wholesale-audience {
  width: min(1010px, 100%);
  margin: clamp(78px, 8vw, 108px) auto 0;
  text-align: center;
}

.wholesale-audience h2 {
  margin: 0 0 clamp(34px, 4.6vw, 48px);
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.wholesale-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.wholesale-audience-card {
  min-height: 142px;
  padding: 28px 28px 24px;
  border: 1.5px solid var(--green-2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
}

.wholesale-audience-card h3 {
  display: grid;
  gap: 2px;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 14px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.18;
  text-transform: uppercase;
}

.wholesale-audience-card p {
  max-width: 245px;
  margin: 0 auto;
  color: rgba(33, 29, 29, 0.78);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 14px;
  line-height: 1.42;
}

.wholesale-final-cta {
  margin: clamp(64px, 7vw, 88px) auto 0;
  text-align: center;
}

.wholesale-final-cta h2 {
  margin: 0 0 28px;
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.wholesale-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 34px;
  padding: 6px 30px 5px;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 0 5px 0 var(--green);
  color: var(--ink);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 14px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wholesale-final-cta a:hover,
.wholesale-final-cta a:focus-visible {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--green);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.logo-panel {
  min-height: 460px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--cream);
  border-radius: 8px;
}

.logo-panel img {
  width: min(420px, 72%);
  border-radius: 0;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--green);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.94;
}

.intro-copy {
  margin: 26px 0 0;
  color: #244932;
  font-size: clamp(19px, 2vw, 25px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.stat strong {
  display: block;
  font-family: "ChozzySlab", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.products {
  background: var(--cream);
  color: var(--green);
}

.products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.product-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 12px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.icon-button {
  width: 54px;
  height: 38px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--cream);
}

.product-window {
  overflow: hidden;
}

.product-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  gap: 20px;
  transition: transform 240ms ease;
}

.product-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 8px 8px 0 rgba(7, 60, 37, 0.8);
  color: var(--green);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 rgba(7, 60, 37, 0.8);
}

.product-visual {
  min-height: 160px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--green);
  color: var(--cream);
}

.jar {
  position: relative;
  width: 110px;
  height: 140px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cream);
  border-radius: 18px 18px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.18), rgba(255, 247, 237, 0.04));
  font-family: "ChozzySlab", Georgia, serif;
  font-size: 23px;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
}

.jar::before {
  content: "";
  width: 68px;
  height: 18px;
  position: absolute;
  transform: translateY(-80px);
  border: 2px solid var(--cream);
  border-radius: 8px 8px 2px 2px;
  background: var(--orange);
}

.product-title {
  margin: 0;
  font-family: "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 0.95;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.product-meta span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.process {
  background: var(--cream);
  position: relative;
  padding-top: clamp(34px, 4.8vw, 62px);
}

.process-intro {
  max-width: 860px;
  margin: 0 auto 66px;
  text-align: center;
}

.process .section-title {
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.02;
  text-transform: none;
}

.pill-note {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 36px;
  padding: 14px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px clamp(72px, 15vw, 220px);
  min-height: 650px;
}

.process-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.process-art svg {
  position: absolute;
  overflow: visible;
  color: var(--green-2);
  transform-box: fill-box;
  transform-origin: center;
}

.soil-sprout {
  width: clamp(94px, 9vw, 138px);
}

.soil-sprout-left {
  top: -42px;
  left: 8%;
  animation: sprout-bob 5.5s ease-in-out infinite;
}

.soil-sprout-right {
  top: -24px;
  right: 8%;
  width: clamp(96px, 9vw, 136px);
  animation: sprout-bob 5.2s ease-in-out 0.65s infinite;
}

.plant-peanut {
  top: 56px;
  left: 50%;
  width: clamp(136px, 13vw, 190px);
  transform: translateX(-50%);
  animation: plant-sway 6.5s ease-in-out infinite;
}

.plant-line {
  stroke-dasharray: 430;
  stroke-dashoffset: 430;
  animation: line-grow 1.8s ease-out forwards, plant-line-pulse 5s ease-in-out 2s infinite;
}

.plant-line:nth-child(2) {
  animation-delay: 0.12s, 2.2s;
}

.plant-line:nth-child(3) {
  animation-delay: 0.24s, 2.4s;
}

.plant-line:nth-child(4) {
  animation-delay: 0.34s, 2.6s;
}

.plant-line:nth-child(5) {
  animation-delay: 0.44s, 2.8s;
}

.plant-line:nth-child(6) {
  animation-delay: 0.56s, 3s;
}

.peanut-body {
  animation: peanut-breathe 4.8s ease-in-out infinite;
}

.plant-dot {
  animation: leaf-pop 4.8s ease-in-out infinite;
}

.peanut-friends {
  top: 304px;
  left: 50%;
  width: clamp(170px, 20vw, 262px);
  transform: translateX(-50%);
}

.friend-one {
  animation: peanut-float 5s ease-in-out infinite;
}

.friend-two {
  animation: peanut-float 5.4s ease-in-out 0.25s infinite;
}

.friend-three {
  animation: peanut-float 4.8s ease-in-out 0.55s infinite;
}

.step {
  position: relative;
  z-index: 1;
  min-height: 248px;
  padding: 72px 0 24px;
  text-align: center;
}

.step h3 {
  margin: 0;
  font-family: "ChozzySlab", Georgia, serif;
  font-size: 19px;
}

.step time {
  display: inline-flex;
  margin: 8px 0 14px;
  padding: 3px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.step p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.step button {
  width: 22px;
  height: 22px;
  margin-top: 13px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 0 0 1px var(--green);
}

.step-detail {
  display: none;
  position: absolute;
  z-index: 4;
  top: 110px;
  right: 0;
  width: min(430px, 82vw);
  padding: 20px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #f6e5ac;
  color: var(--green);
  box-shadow: 0 22px 48px rgba(33, 29, 29, 0.18);
  text-align: left;
}

.step:nth-child(even) .step-detail {
  left: 0;
  right: auto;
}

.step.is-open .step-detail {
  display: block;
}

.step-detail strong {
  display: block;
  margin-bottom: 7px;
  font-family: "ChozzySlab", Georgia, serif;
  font-size: 20px;
}

@keyframes line-grow {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes plant-line-pulse {
  0%, 100% {
    stroke-width: 9;
  }
  50% {
    stroke-width: 10.5;
  }
}

@keyframes plant-sway {
  0%, 100% {
    transform: translateX(-50%) rotate(-1.5deg);
  }
  50% {
    transform: translateX(-50%) rotate(2deg);
  }
}

@keyframes sprout-bob {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.5deg);
  }
}

@keyframes peanut-breathe {
  0%, 100% {
    transform: scale(1) rotate(-1deg);
  }
  50% {
    transform: scale(1.025) rotate(1deg);
  }
}

@keyframes leaf-pop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes peanut-float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-9px) rotate(2deg);
  }
}

.offer {
  position: relative;
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
  padding-top: clamp(84px, 10vw, 140px);
  padding-bottom: clamp(84px, 10vw, 140px);
}

.offer::before {
  content: "";
  position: absolute;
  inset: 26px clamp(18px, 3vw, 46px);
  border: 1px solid rgba(255, 247, 237, 0.1);
  border-radius: 16px;
  pointer-events: none;
}

.offer::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -12vw;
  width: 34vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 127, 31, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.woocommerce-page-shell {
  min-height: 100vh;
  background: var(--cream);
  color: var(--green);
}

.woocommerce-page .site-header,
.post-type-archive-product .site-header,
.single-product .site-header {
  color: var(--green);
}

.woocommerce-page .site-header:not(.is-scrolled),
.post-type-archive-product .site-header:not(.is-scrolled),
.single-product .site-header:not(.is-scrolled) {
  background: rgba(255, 247, 237, 0.84);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}

.wc-hero {
  padding: clamp(120px, 14vw, 178px) clamp(18px, 4vw, 56px) clamp(42px, 6vw, 78px);
  background: var(--cream);
  text-align: center;
}

.wc-hero h1 {
  width: min(1120px, 100%);
  margin: 0 auto;
  color: var(--green);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.92;
}

.wc-content {
  padding: 0 clamp(18px, 4vw, 56px) clamp(84px, 10vw, 140px);
  background: var(--cream);
}

.wc-content .woocommerce {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.woocommerce-products-header {
  display: none;
}

.wc-content .page-title {
  display: none;
}

.woocommerce-result-count,
.woocommerce-breadcrumb {
  color: rgba(7, 60, 37, 0.72);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 12px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.woocommerce-ordering {
  display: none;
}

.woocommerce-ordering select {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font: inherit;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  box-sizing: border-box;
  float: none !important;
  width: 100% !important;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 8px 8px 0 rgba(7, 60, 37, 0.82);
}

.woocommerce ul.products li.product a {
  color: var(--green);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 18px 0 12px;
  padding: 0;
  color: var(--green);
  font-family: "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 0.98;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--green);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: 24px;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--orange);
  color: var(--green);
  box-shadow: 0 5px 0 var(--green);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 12px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--yellow);
  color: var(--green);
}

.woocommerce ul.products li.product img {
  aspect-ratio: 1.1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--green);
}

.woocommerce ul.products li.product .woocommerce-placeholder {
  border: 0;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(38px, 6vw, 82px);
}

.single-product-visual,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
}

.single-product-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  box-shadow: 10px 10px 0 rgba(7, 60, 37, 0.8);
}

.single-product-visual .product-visual {
  width: min(360px, 78%);
  min-height: 380px;
  margin: 0;
  background: transparent;
}

.single-product-visual .jar {
  width: 190px;
  height: 250px;
  font-size: 34px;
}

.single-product-visual .jar::before {
  width: 108px;
  height: 28px;
  transform: translateY(-143px);
}

.woocommerce div.product .product_title {
  color: var(--green);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.95;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .summary > p {
  color: rgba(7, 60, 37, 0.76);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: 20px;
  line-height: 1.45;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.woocommerce div.product form.cart .button {
  background: var(--orange);
  color: var(--green);
}

.woocommerce .quantity .qty {
  width: 78px;
  min-height: 38px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--orange);
  background: #f4dcc8;
  color: var(--green);
}

.offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(380px, 520px);
  justify-content: center;
  gap: clamp(46px, 5.5vw, 82px);
  align-items: center;
}

.offer-copy {
  max-width: 640px;
  min-width: 0;
}

.offer .section-kicker {
  border-color: rgba(255, 127, 31, 0.55);
  color: var(--orange);
  background: rgba(255, 127, 31, 0.08);
}

.offer-title {
  max-width: 640px;
  margin: 0;
  color: var(--cream);
  font-family: "ChozzyCondensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(44px, 4.9vw, 76px);
  font-stretch: 78%;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer p {
  max-width: 430px;
  margin: 26px 0 0;
  color: rgba(255, 247, 237, 0.84);
  font-family: "ChozzyFine", Georgia, serif;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
}

.offer-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--green);
  box-shadow: 0 5px 0 rgba(255, 247, 237, 0.85);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 13px;
  font-stretch: 82%;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-actions span {
  color: rgba(255, 247, 237, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-preview {
  position: relative;
  width: min(520px, 100%);
  justify-self: center;
}

.offer-preview::before,
.offer-preview::after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

.offer-preview::before {
  inset: 18px -18px -18px 18px;
  background: var(--orange);
}

.offer-preview::after {
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(255, 247, 237, 0.26);
  background: rgba(255, 247, 237, 0.04);
}

.offer-sheet {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 237, 0.42);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.offer-sheet:hover,
.offer-sheet:focus-visible {
  transform: translate(-4px, -4px);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.3);
}

.offer-sheet img {
  display: block;
  width: 100%;
}

.brand-footer {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(18px, 4vw, 56px) 12px;
  background: var(--cream);
  color: var(--green-2);
}

.brand-footer-inner {
  width: min(1300px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-mascots {
  height: clamp(142px, 15vw, 205px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(24px, 4vw, 62px);
  margin-bottom: clamp(12px, 1.7vw, 22px);
  transform: translateY(-4px);
}

.footer-mascots-image {
  width: min(780px, 72vw);
  max-height: 100%;
  object-fit: contain;
}

.footer-mascot {
  width: clamp(116px, 12vw, 176px);
  overflow: visible;
  color: var(--green-2);
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: footer-character-step 4.8s ease-in-out infinite;
}

.footer-mascot .mascot-body {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: footer-character-bounce 4.8s ease-in-out infinite;
}

.mascot-shades {
  margin-bottom: 4px;
  animation-delay: 0.15s;
}

.mascot-classic {
  width: clamp(128px, 13vw, 188px);
  animation-delay: 0.38s;
}

.mascot-bag {
  margin-bottom: 2px;
  animation-delay: 0.62s;
}

.brand-footer-word {
  display: flex;
  justify-content: center;
  width: min(100%, 1220px);
  margin: 0 auto;
  color: var(--green-2);
}

.chozzy-logo-benefits {
  width: min(100%, 1120px);
  aspect-ratio: 1405 / 306;
}

.brand-footer-heading {
  margin: clamp(12px, 1.9vw, 20px) 0 clamp(24px, 3vw, 34px);
  color: var(--green-2);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

.brand-footer-reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.8vw, 48px) clamp(38px, 6vw, 78px);
  max-width: 970px;
  margin: 0 auto;
  color: var(--green-2);
}

.brand-footer-reasons article {
  max-width: 250px;
  margin: 0 auto;
}

.brand-footer-reasons h3 {
  margin: 0 0 8px;
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.22;
  text-transform: uppercase;
}

.brand-footer-reasons p {
  margin: 0;
  color: rgba(46, 79, 41, 0.78);
  font-family: "ChozzySlab", Georgia, serif;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.38;
}

.brand-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(310px, 100%);
  min-height: 34px;
  margin-top: clamp(30px, 3.8vw, 46px);
  padding: 6px 26px;
  border: 2px solid var(--green-2);
  border-radius: 999px;
  background: transparent;
  color: var(--green-2);
  box-shadow: 0 6px 0 var(--green-2);
  font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
  font-size: 13px;
  font-stretch: 82%;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.brand-footer-cta:hover,
.brand-footer-cta:focus-visible {
  background: rgba(46, 79, 41, 0.06);
  box-shadow: 0 3px 0 var(--green-2);
  transform: translateY(3px);
}

@keyframes footer-character-step {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-7px) rotate(1.5deg);
  }
}

@keyframes footer-character-bounce {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.985);
  }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .site-nav {
    gap: clamp(22px, 3.4vw, 42px);
    font-size: 14px;
  }

  .chozzy-logo-nav {
    width: clamp(162px, 18vw, 210px);
  }
}

.site-footer {
  scroll-margin-top: 72px;
  padding: 56px 16px 24px;
  background: #33412b;
  color: #eadbc8;
  font-family: "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  font-size: 14px;
}

.site-footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 0.95fr);
  gap: 38px;
  min-height: 146px;
}

.footer-contact {
  padding-right: 30px;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 8px;
  max-width: 520px;
  margin-bottom: 24px;
}

.footer-newsletter input,
.footer-newsletter button {
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: #eadbc8;
  color: #33412b;
  font-family: "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  font-size: 13px;
}

.footer-newsletter input {
  width: 100%;
  padding: 0 14px;
  text-transform: uppercase;
}

.footer-newsletter input::placeholder {
  color: rgba(51, 65, 43, 0.72);
}

.footer-newsletter button {
  padding: 0 24px;
  cursor: pointer;
  white-space: nowrap;
}

.footer-contact address {
  display: grid;
  gap: 7px;
  margin: 0;
  color: #eadbc8;
  font-style: normal;
  line-height: 1.12;
}

.footer-contact address strong {
  font-weight: 400;
}

.footer-links {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.75fr;
  gap: clamp(36px, 5vw, 76px);
  padding-left: 38px;
  border-left: 1px solid rgba(234, 219, 200, 0.16);
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: #f4e7d7;
  font-family: "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer a {
  color: inherit;
}

.footer-links a,
.footer-contact a,
.footer-bottom a,
.footer-bottom span {
  text-decoration: none;
}

.footer-links a {
  font-size: 13px;
  line-height: 1.05;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(234, 219, 200, 0.28);
  color: #eadbc8;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom span {
  text-transform: uppercase;
}

.footer-logo-wave {
  --wave-x: 50%;
  --wave-y: 50%;
  --wave-power: 0;
  position: relative;
  min-height: clamp(190px, 25vw, 360px);
  margin: 38px -16px -24px;
  overflow: hidden;
  background: #073c25;
  cursor: default;
  isolation: isolate;
}

.footer-logo-word {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff0df;
}

.chozzy-logo-bottom {
  width: min(96%, 980px);
  aspect-ratio: 1405 / 306;
}

.footer-peanuts {
  position: absolute;
  inset: -5% -2%;
  z-index: 2;
  pointer-events: none;
}

.footer-peanut-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 62px;
    padding: 10px 16px;
    color: var(--cream);
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open {
    color: var(--green);
    background: rgba(255, 247, 237, 0.94);
    border-bottom-color: var(--line);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 26px rgba(7, 60, 37, 0.08);
  }

  .woocommerce-page .site-header,
  .post-type-archive-product .site-header,
  .single-product .site-header {
    color: var(--green);
    background: rgba(255, 247, 237, 0.94);
    border-bottom-color: var(--line);
    backdrop-filter: blur(14px);
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--green);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: 8px 8px 0 rgba(7, 60, 37, 0.8), 0 22px 60px rgba(7, 60, 37, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a,
  .mobile-menu span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    color: var(--green);
    font-family: "ChozzyCondensed", "Noto Sans", Arial, sans-serif;
    font-size: 17px;
    font-stretch: 82%;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .mobile-menu a::after {
    content: "→";
    font-size: 18px;
    letter-spacing: 0;
  }

  .mobile-menu span {
    border-bottom: 0;
    color: var(--orange);
  }

  .hero {
    min-height: 520px;
    min-height: 76svh;
    height: auto;
    padding: 86px 0 42px;
    align-items: end;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(7, 60, 37, 0.28) 0%, rgba(7, 60, 37, 0.18) 42%, rgba(7, 60, 37, 0.48) 100%),
      rgba(7, 60, 37, 0.12);
  }

  .hero-content {
    z-index: 4;
  }

  .intro-grid,
  .story-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 42px 16px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-contact {
    padding-right: 0;
  }

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

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid rgba(234, 219, 200, 0.16);
    border-left: 0;
  }

  .footer-logo-wave {
    min-height: clamp(150px, 26vw, 230px);
  }

  .offer {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .offer-grid {
    gap: 46px;
  }

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

  .offer-title {
    max-width: 620px;
    font-size: clamp(42px, 11vw, 68px);
  }

  .offer p {
    max-width: 560px;
  }

  .offer-preview {
    width: min(560px, calc(100% - 22px));
  }

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

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    min-height: 390px;
    padding: 22px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 22px;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-copy {
    max-width: none;
    padding-top: 0;
  }

  .story-image {
    max-width: 520px;
    margin: 0 auto;
  }

  .about-story-row,
  .about-story-row-image-right {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 54px;
  }

  .about-story-row-image-right .about-story-media,
  .about-story-row-image-right .about-story-copy {
    order: initial;
  }

  .about-story-copy,
  .about-story-row-image-right .about-story-copy {
    text-align: left;
  }

  .about-story-media {
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .about-story-copy {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    padding-top: 92px;
  }

  .contacts-info,
  .contacts-form-panel {
    min-height: 0;
    padding: 0;
  }

  .contacts-form-panel {
    margin-top: 16px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contacts-info h1,
  .contacts-form-panel > h2 {
    text-align: left;
  }

  .brand-footer-form,
  .brand-footer-cols {
    grid-template-columns: 1fr;
  }

  .brand-footer-form div {
    flex-direction: column;
  }

  .brand-footer-form input {
    width: 100%;
  }

  .footer-mascots {
    height: 132px;
    gap: 12px;
    margin-bottom: 4px;
  }

  .footer-mascot,
  .mascot-classic {
    width: 102px;
  }

  .brand-footer-word {
    width: 100%;
  }

  .chozzy-logo-benefits {
    width: min(100%, 720px);
  }

  .brand-footer-reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
    max-width: 640px;
  }

  .brand-footer-reasons article {
    max-width: 270px;
  }

  .featured-product-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .featured-product-image {
    width: min(376px, 100%);
    margin: 0 auto;
  }

  .featured-product-copy {
    order: 2;
    padding-top: 0;
  }

  .featured-product-image {
    order: 1;
  }

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

  .products-head {
    align-items: start;
    flex-direction: column;
  }

  .product-controls {
    width: 100%;
    justify-content: space-between;
  }

  .product-window {
    overflow: visible;
  }

  .product-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    transform: none !important;
  }

  .product-card {
    min-height: 0;
    padding: 22px;
  }

  .product-meta {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .process-art {
    position: relative;
    inset: auto;
    height: 360px;
    width: min(360px, 100%);
    margin: -10px auto 18px;
    order: -1;
  }

  .soil-sprout-left {
    top: 0;
    left: 0;
    width: 100px;
  }

  .soil-sprout-right {
    top: 18px;
    right: 0;
    width: 106px;
  }

  .plant-peanut {
    top: 54px;
    width: 138px;
  }

  .peanut-friends {
    top: 220px;
    width: 190px;
  }

  .step,
  .step:nth-child(odd) {
    padding: 24px 0;
    text-align: left;
  }

  .step p,
  .step:nth-child(odd) p {
    margin-left: 0;
  }

  .step-detail,
  .step:nth-child(even) .step-detail {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .market-pill {
    align-items: center;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 28px;
    line-height: 1.32;
  }

  .market-pill strong,
  .market-pill span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .market-pill strong {
    margin-right: 0;
  }
}

@media (max-width: 560px) {
  .chozzy-logo-nav {
    width: 132px;
  }

  .site-header {
    padding: 8px 16px;
  }

  .pill-link {
    min-height: 38px;
    padding: 8px 16px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 0;
    text-align: left;
  }

  .hero h1 {
    max-width: 10ch;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 10.6vw, 44px);
    line-height: 1.02;
  }

  .eyebrow {
    max-width: 24ch;
    font-size: 13px;
    line-height: 1.25;
  }

  .section {
    padding: 64px 16px;
  }

  .market-strip {
    padding: 30px 16px 42px;
  }

  .price-card {
    min-height: 0;
    padding: 20px;
  }

  .price-value {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .price-value em {
    margin-left: 0;
  }

  .logo-panel {
    min-height: 330px;
  }

  .story-head {
    text-align: left;
  }

  .story-head p br {
    display: none;
  }

  .about-hero {
    padding-top: 92px;
  }

  .about-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .about-hero p br,
  .about-closing > .about-closing-inner > p br {
    display: none;
  }

  .about-story {
    padding-top: 4px;
  }

  .about-story-row {
    margin-top: 46px;
  }

  .about-story-copy h2 {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .about-story-copy p,
  .about-hero p,
  .about-closing > .about-closing-inner > p {
    font-size: 14px;
  }

  .about-closing h2 {
    font-size: 20px;
  }

  .about-closing .brand-footer {
    padding-top: 42px;
  }

  .contacts-page {
    padding-right: 18px;
    padding-left: 18px;
  }

  .contacts-info h1,
  .contacts-form-panel > h2 {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .contact-detail {
    margin-bottom: 34px;
  }

  .contact-detail h2 {
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: 3px;
  }

  .contacts-form button {
    width: 100%;
  }

  .contacts-map {
    margin-top: 46px;
  }

  .contacts-map h2 {
    font-size: clamp(32px, 9.5vw, 42px);
    text-align: left;
  }

  .contacts-map-link {
    display: inline-flex;
    margin-right: 0;
    margin-left: 0;
  }

  .contacts-map-frame {
    min-height: 280px;
    box-shadow: 6px 6px 0 rgba(7, 60, 37, 0.18);
  }

  .contacts-map-frame iframe {
    height: 300px;
  }

  .contacts-directions {
    margin-top: 38px;
    padding: 30px 24px 28px;
    border-radius: 22px;
  }

  .contacts-directions h2 {
    margin-bottom: 32px;
    font-size: clamp(30px, 9vw, 38px);
    text-align: center;
  }

  .contacts-directions-list {
    gap: 30px;
  }

  .contacts-directions h3 {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .contacts-directions p {
    font-size: 14px;
  }

  .contacts-visit {
    margin-top: 38px;
    padding-top: 0;
  }

  .contacts-visit h2 {
    margin-bottom: 32px;
    font-size: clamp(30px, 9vw, 38px);
  }

  .contacts-visit-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contacts-visit h3 {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .contacts-visit p {
    font-size: 14px;
  }

  .wholesale-hero {
    padding: 92px 18px 58px;
  }

  .wholesale-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .wholesale-hero p {
    margin: 18px auto 24px;
    font-size: clamp(22px, 7vw, 30px);
  }

  .wholesale-hero img {
    min-height: 0;
  }

  .wholesale-varieties {
    margin-top: 42px;
  }

  .wholesale-varieties h2 {
    margin-bottom: 30px;
    font-size: clamp(30px, 9vw, 38px);
  }

  .wholesale-varieties-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .wholesale-varieties p {
    max-width: none;
    font-size: 14px;
  }

  .wholesale-varieties-list ul {
    width: min(318px, 100%);
    margin-top: 20px;
    font-size: 15px;
    gap: 9px;
  }

  .wholesale-growth-card {
    margin-top: 8px;
    margin-bottom: 16px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .wholesale-products {
    margin-top: 54px;
  }

  .wholesale-products h2 {
    margin-bottom: 28px;
    font-size: clamp(30px, 9vw, 38px);
  }

  .wholesale-products-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .wholesale-product-card {
    width: min(292px, 100%);
    margin: 0 auto;
  }

  .wholesale-product-card h3 {
    margin-top: 18px;
    font-size: 14px;
    letter-spacing: 3.4px;
  }

  .wholesale-product-card p {
    font-size: 14px;
  }

  .wholesale-audience {
    margin-top: 56px;
  }

  .wholesale-audience h2 {
    margin-bottom: 28px;
    font-size: clamp(30px, 9vw, 38px);
  }

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

  .wholesale-audience-card {
    min-height: 0;
    padding: 24px 20px 22px;
    border-radius: 9px;
  }

  .wholesale-audience-card h3 {
    font-size: 13px;
    letter-spacing: 3.4px;
  }

  .wholesale-audience-card p {
    max-width: 270px;
    font-size: 14px;
  }

  .wholesale-final-cta {
    margin-top: 48px;
  }

  .wholesale-final-cta h2 {
    margin-bottom: 22px;
    font-size: clamp(28px, 8.5vw, 36px);
  }

  .wholesale-final-cta a {
    min-width: min(250px, 100%);
    font-size: 13px;
    letter-spacing: 3.2px;
  }

  .offer::before {
    inset: 18px 12px;
    border-radius: 12px;
  }

  .offer::after {
    display: none;
  }

  .offer-title {
    font-size: clamp(38px, 10.5vw, 54px);
  }

  .offer-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .offer-preview::before {
    inset: 10px -10px -10px 10px;
  }

  .offer-preview::after {
    inset: -10px 10px 10px -10px;
  }

  .wc-hero {
    padding: 96px 18px 36px;
  }

  .wc-hero h1 {
    font-size: clamp(44px, 15vw, 62px);
  }

  .wc-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 28px;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    min-height: 0;
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    padding: 24px;
    box-shadow: 8px 8px 0 rgba(7, 60, 37, 0.82);
  }

  .woocommerce ul.products li.product .product-visual {
    width: min(180px, 100%);
    min-height: 180px;
  }

  .woocommerce ul.products li.product .jar {
    width: 112px;
    height: 146px;
    font-size: 18px;
  }

  .woocommerce ul.products li.product .jar::before {
    width: 70px;
    height: 20px;
    transform: translateY(-82px);
  }

  .single-product-visual {
    min-height: 430px;
    box-shadow: 8px 8px 0 rgba(7, 60, 37, 0.8);
  }

  .single-product-visual .product-visual {
    width: min(290px, 82%);
    min-height: 300px;
  }

  .single-product-visual .jar {
    width: 150px;
    height: 200px;
    font-size: 26px;
  }

  .single-product-visual .jar::before {
    width: 92px;
    height: 24px;
    transform: translateY(-116px);
  }

  .woocommerce div.product .product_title {
    font-size: clamp(40px, 12vw, 56px);
  }

  .woocommerce div.product .woocommerce-product-details__short-description,
  .woocommerce div.product .woocommerce-product-details__short-description p,
  .woocommerce div.product .summary > p {
    font-size: 17px;
  }

  .woocommerce div.product form.cart {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-head {
    gap: 18px;
    margin-bottom: 26px;
  }

  .product-controls {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .product-controls .icon-button {
    display: none;
  }

  .shop-link {
    width: 100%;
    min-height: 42px;
  }

  .product-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    width: 100%;
    padding: 22px;
    box-shadow: 6px 6px 0 rgba(7, 60, 37, 0.8);
  }

  .product-visual {
    min-height: 148px;
    margin-bottom: 20px;
  }

  .product-title {
    font-size: 21px;
    line-height: 1.05;
  }

  .product-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
    padding-top: 14px;
  }

  .product-meta div {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .brand-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .footer-mascots {
    height: 116px;
    gap: 8px;
  }

  .footer-mascot,
  .mascot-classic {
    width: 88px;
  }

  .brand-footer-word {
    width: 100%;
  }

  .chozzy-logo-benefits {
    width: min(100%, 360px);
  }

  .brand-footer-heading {
    font-size: clamp(27px, 7.5vw, 34px);
  }

  .brand-footer-reasons {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .brand-footer-reasons h3 {
    font-size: 13px;
    letter-spacing: 2.5px;
  }

  .brand-footer-reasons p {
    font-size: 14px;
  }

  .brand-footer-cta {
    min-width: min(300px, 100%);
    letter-spacing: 3px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    min-height: 42px;
  }

  .footer-contact address {
    gap: 10px;
    font-size: 15px;
    line-height: 1.32;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
  }

  .footer-links div {
    gap: 9px;
  }

  .footer-links h2 {
    margin-bottom: 4px;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1.25;
  }

  .footer-links a {
    font-size: 15px;
    line-height: 1.25;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 18px;
  }

  .footer-logo-wave {
    min-height: 118px;
    margin-top: 28px;
  }

  .chozzy-logo-bottom {
    width: min(88%, 310px);
  }

  .footer-peanuts {
    display: none;
  }

  .footer-logo-peanut {
    width: 13px;
    height: 7px;
  }
}
