:root {
  --red: #b40026;
  --red-deep: #720018;
  --gold: #f2c76b;
  --gold-soft: #fff0be;
  --cream: #fff8ea;
  --sand: #d5b57b;
  --brown: #2d1609;
  --text: #24130d;
  --muted: #725f55;
  --line: #edd8aa;
  --white: #fff;
  --shadow: 0 18px 44px rgba(62, 21, 10, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fff8ea 0%, #fffdf7 42%, #fff8ea 100%);
  font-family: Inter, Arial, sans-serif;
}

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

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

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

.top-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 9px 6vw;
  color: var(--gold-soft);
  background: linear-gradient(
    90deg,
    var(--red-deep),
    var(--red),
    var(--red-deep)
  );
  font-size: 14px;
  font-weight: 700;
}

.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-contact a,
.top-message {
  color: var(--gold-soft);
}

.top-message {
  text-align: center;
}

.top-social {
  justify-content: flex-end;
}

.top-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 240, 190, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.top-social svg {
  width: 15px;
  height: 15px;
  fill: var(--gold-soft);
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 6vw;
  background: rgba(255, 252, 244, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 190px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8dd;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--red-deep);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.main-header.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

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

.main-header.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  color: #321912;
  font-size: 15px;
  font-weight: 800;
}

.mobile-menu-cta {
  display: none;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--red);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #fff8d9;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(180, 0, 38, 0.18);
}

.btn.light {
  color: var(--red-deep);
  background: #fff8dd;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 43%) 1fr;
  align-items: center;
  min-height: 510px;
  padding: 54px 6vw;
  background: #fff8ea;
  overflow: hidden;
}

.hero.compact {
  min-height: 360px;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--brown);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
}

.accent {
  color: var(--red);
}

.hero p {
  max-width: 560px;
  color: #4d3529;
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: none;
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: 390px;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(330px, 42%) 1fr;
  align-items: center;
  min-height: 440px;
  padding: 48px 6vw;
  background:
    radial-gradient(circle at 90% 10%, rgba(180, 0, 38, 0.13), transparent 28%),
    linear-gradient(100deg, #fff8ef 0%, #fff2e8 48%, #ffdfe4 100%);
  overflow: hidden;
}

.home-hero h1 {
  margin: 10px 0 18px;
  color: var(--brown);
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.05;
}

.home-hero p {
  max-width: 520px;
  color: #3f281e;
  font-size: 19px;
  line-height: 1.58;
}

.home-hero-visual img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  object-position: right bottom;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.home-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 22px 6vw;
  background: #fffdf8;
  border-block: 1px solid var(--line);
}

.home-feature-strip div {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.home-feature-strip div:last-child {
  border-right: 0;
}

.home-feature-strip strong,
.home-feature-strip span {
  display: block;
}

.home-feature-strip strong {
  color: var(--red-deep);
  font-weight: 900;
}

.home-feature-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.home-menu {
  padding-top: 34px;
}

.home-self-service {
  padding-top: 34px;
  padding-bottom: 34px;
  background: linear-gradient(135deg, #fffdf7, #fff4dd);
}

.self-service-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.35fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(242, 199, 107, 0.75);
  border-radius: 10px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.self-service-head h2 {
  margin: 8px 0 12px;
  color: var(--brown);
  font-size: 38px;
  line-height: 1.12;
}

.self-service-head p:not(.eyebrow) {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.6;
}

.self-service-steps {
  display: grid;
  gap: 14px;
}

.self-service-steps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.self-service-steps span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: #fff8dc;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  font-size: 26px;
  font-weight: 900;
}

.self-service-steps h3 {
  margin-bottom: 5px;
  color: var(--red-deep);
  font-size: 20px;
}

.self-service-steps p,
.self-service-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.self-service-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  background: #fff8dd;
}

.self-service-note strong {
  display: inline-grid;
  place-items: center;
  min-width: 74px;
  height: 38px;
  border-radius: 6px;
  color: #fff8dc;
  background: var(--red);
  font-size: 18px;
  font-weight: 900;
}

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

.home-category-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff2df, #fff8d6);
  box-shadow: var(--shadow);
}

.home-category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 14px;
}

.home-category-card div {
  display: grid;
  align-content: center;
  padding: 18px;
}

.home-category-card h3 {
  margin-bottom: 6px;
  color: var(--red-deep);
  font-size: 24px;
}

.home-category-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.mini-btn {
  justify-self: start;
  display: inline-flex;
  padding: 9px 17px;
  border-radius: 999px;
  color: #fff8dc;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  font-size: 13px;
  font-weight: 900;
}

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

.home-offer-card {
  display: grid;
  grid-template-columns: 1fr 42%;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff4e7, #fff8dc);
  box-shadow: var(--shadow);
}

.home-offer-card div {
  padding: 24px;
}

.home-offer-card h3 {
  margin-bottom: 8px;
  color: var(--brown);
  font-size: 27px;
}

.home-offer-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.home-offer-card a {
  color: var(--red);
  font-weight: 900;
}

.home-offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-product-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.home-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.home-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center center;
  padding: 12px;
  background: #fff;
}

.home-product-card div {
  padding: 13px;
}

.home-product-card h3 {
  margin-bottom: 4px;
  color: var(--brown);
  font-size: 16px;
}

.home-product-card p {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.home-snacks-box-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.96), rgba(255, 231, 199, 0.96)),
    radial-gradient(circle at 12% 10%, rgba(180, 0, 38, 0.12), transparent 32%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.slider-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #fff8dc;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  cursor: pointer;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(180, 0, 38, 0.16);
}

.snacks-box-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 25%);
  gap: 20px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.snacks-box-slide {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.snacks-box-slide h3 {
  min-height: 64px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  color: var(--red-deep);
  font-size: 18px;
  text-align: center;
}

.home-pink-band {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
  background: linear-gradient(110deg, var(--red), #f05d88);
  box-shadow: var(--shadow);
}

.home-pink-band h2 {
  color: #fff8dc;
  font-size: 39px;
  line-height: 1.12;
}

.home-pink-band p {
  color: #fff4e0;
  line-height: 1.6;
}

.home-band-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-band-products article {
  overflow: hidden;
  border-radius: 9px;
  background: #fffaf4;
}

.home-band-products img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center center;
  padding: 12px;
  background: #fff;
}

.home-band-products h3 {
  margin: 0;
  padding: 13px;
  color: var(--red-deep);
  font-size: 16px;
}

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

.home-testimonial,
.home-stat {
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.home-testimonial p {
  color: var(--muted);
  line-height: 1.65;
}

.home-stat {
  display: grid;
  place-items: center;
  text-align: center;
}

.home-stat strong {
  display: block;
  color: var(--red);
  font-size: 36px;
}

.home-stat span {
  color: var(--muted);
  font-weight: 800;
}

.home-why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf2;
  box-shadow: var(--shadow);
}

.home-why-row div {
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.home-why-row div:last-child {
  border-right: 0;
}

.home-why-row strong,
.home-why-row span {
  display: block;
}

.home-why-row strong {
  margin-bottom: 7px;
  color: var(--red-deep);
}

.home-why-row span {
  color: var(--muted);
  line-height: 1.5;
}

.distributor-hero {
  display: grid;
  grid-template-columns: minmax(340px, 43%) 1fr;
  align-items: center;
  min-height: 430px;
  padding: 28px 6vw 48px;
  background:
    linear-gradient(90deg, #fff8ef 0%, #fff8ef 43%, rgba(255, 248, 239, 0) 48%),
    url("../../img/distributor_page.png") right top / 62% auto no-repeat,
    #fff8ef;
  overflow: hidden;
}

.distributor-copy h1 {
  margin: 10px 0 18px;
  color: var(--brown);
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
}

.distributor-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #493027;
  font-size: 18px;
  line-height: 1.6;
}

.distributor-mini-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 560px;
  margin: 26px 0 0;
}

.distributor-mini-row div {
  padding: 0 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.distributor-mini-row div:first-child {
  padding-left: 0;
}

.distributor-mini-row div:last-child {
  border-right: 0;
}

.distributor-mini-row strong,
.distributor-mini-row span {
  display: block;
}

.distributor-mini-row strong {
  color: var(--red);
  font-size: 15px;
}

.distributor-mini-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.distributor-visual img {
  display: none;
}

.partner-reasons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.partner-reasons article,
.who-card,
.distributor-form,
.steps-card,
.partner-quote,
.network-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.partner-reasons article {
  min-height: 185px;
  padding: 22px 16px;
  text-align: center;
}

.partner-reasons span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: var(--red);
  background: linear-gradient(135deg, #fff8dd, #f6cf78);
  font-weight: 900;
}

.partner-reasons h3 {
  color: var(--red);
  font-size: 18px;
}

.partner-reasons p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.distributor-panel {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
}

.who-card {
  padding: 24px;
}

.who-card h2 {
  color: var(--brown);
  font-size: 27px;
}

.soft-note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 9px;
  color: var(--red-deep);
  background: #fff1d5;
  font-weight: 800;
  line-height: 1.5;
}

.distributor-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.distributor-benefits article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.distributor-benefits img {
  width: 100%;
  height: 135px;
  object-fit: contain;
  object-position: center center;
  padding: 10px;
  background: #fff;
}

.distributor-benefits div {
  padding: 16px;
}

.distributor-benefits h3 {
  color: var(--brown);
  font-size: 18px;
}

.distributor-benefits p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.apply-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 26px;
}

.steps-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px;
}

.steps-card article {
  padding: 0 16px;
  text-align: center;
}

.steps-card span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--red);
  background: #fff4d7;
  font-size: 28px;
  font-weight: 900;
}

.steps-card h3 {
  color: var(--brown);
  font-size: 16px;
}

.steps-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.distributor-form {
  padding: 26px;
  background: linear-gradient(135deg, #fff, #fff0d2);
}

.distributor-form h2 {
  color: var(--red);
  font-size: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  background: #fffdf8;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff8dc;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  font-weight: 900;
}

.distributor-form > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.partner-quote {
  padding: 24px;
}

.partner-quote p {
  color: var(--muted);
  line-height: 1.65;
}

.partner-quote strong {
  color: var(--brown);
}

.network-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  gap: 16px;
  padding: 26px;
  background: #fff1d5;
}

.network-card h3 {
  grid-column: 1 / -1;
  color: var(--red);
}

.network-card strong,
.network-card span {
  display: block;
}

.network-card strong {
  color: var(--red);
  font-size: 30px;
}

.network-card span {
  color: var(--muted);
  font-weight: 800;
}

.distributor-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 34px 6vw;
  color: #fff8dc;
  background: linear-gradient(100deg, var(--red), #ed5b83);
}

.distributor-cta h2 {
  margin-bottom: 6px;
  font-size: 34px;
}

.distributor-cta p {
  margin: 0;
  color: #fff4df;
}

.section {
  padding: 46px 6vw;
}

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

.section-title {
  margin-bottom: 14px;
  color: var(--brown);
  font-size: 38px;
  line-height: 1.1;
}

.section-title span {
  color: var(--red);
}

.center-title {
  margin-bottom: 28px;
  color: var(--brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  line-height: 1.15;
  text-align: center;
}

.center-title span {
  color: var(--red);
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.category-grid,
.showcase-grid,
.values-grid,
.contact-layout {
  display: grid;
  gap: 22px;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.showcase-grid {
  grid-template-columns: repeat(3, 1fr);
}

.menu-options {
  background:
    linear-gradient(
      180deg,
      rgba(255, 248, 234, 0.96),
      rgba(255, 252, 246, 0.96)
    ),
    radial-gradient(
      circle at 20% 0%,
      rgba(242, 199, 107, 0.28),
      transparent 34%
    );
}

.menu-options .section-heading {
  justify-content: center;
  text-align: center;
}

.menu-options .lead {
  margin-inline: auto;
}

.menu-options .showcase-card {
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.menu-options .showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(62, 21, 10, 0.17);
}

.showcase-card,
.value-card,
.contact-card,
.contact-form,
.detail-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.showcase-card {
  overflow: hidden;
}

.showcase-photo {
  height: 220px;
  background: var(--cream);
}

.showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.showcase-content {
  padding: 24px;
}

.showcase-content h3 {
  color: var(--red-deep);
  font-size: 24px;
}

.showcase-content p,
.detail-panel p,
.value-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.showcase-content ul,
.item-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.showcase-content li,
.item-list li {
  position: relative;
  padding-left: 22px;
  color: #3d2418;
  font-weight: 700;
}

.showcase-content li::before,
.item-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(180, 0, 38, 0.12);
}

.text-link {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 6vw;
  background: linear-gradient(90deg, #fff4d4, #fffaf0);
  border-block: 1px solid var(--line);
}

.feature-pill {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.feature-pill:last-child {
  border-right: 0;
}

.feature-pill strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red-deep);
}

.feature-pill span {
  color: var(--muted);
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.about-highlights div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.about-highlights span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--red);
  background: #fff8dd;
  font-weight: 900;
}

.story-layout,
.care-layout,
.founder-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
}

.story-layout {
  align-items: start;
}

.story-copy h2 {
  margin-top: 0;
}

.story-copy .story-main-title {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1.1;
}

.story-image img,
.founder-photo img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.story-copy h2,
.founder-copy h2 {
  color: var(--brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1.2;
}

.story-copy p,
.founder-copy p,
.care-list p {
  color: var(--muted);
  line-height: 1.7;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf0;
  overflow: hidden;
}

.mini-stats div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.mini-stats div:last-child {
  border-right: 0;
}

.mini-stats strong {
  display: block;
  color: var(--red);
  font-size: 26px;
}

.mini-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.about-values article {
  min-height: 190px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf4;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-values span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  color: var(--red);
  background: #fff0d1;
  font-weight: 900;
}

.about-values h3 {
  margin-bottom: 10px;
  color: var(--brown);
}

.about-values p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.care-layout {
  grid-template-columns: 0.8fr 1.2fr;
}

.care-list {
  display: grid;
  gap: 20px;
}

.care-list div {
  position: relative;
  padding-left: 68px;
}

.care-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff8dd, #f6d27c);
}

.quality-card {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quality-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center top;
}

.quality-card div {
  display: grid;
  align-content: center;
  padding: 28px;
  color: #fff8dc;
  background: linear-gradient(160deg, var(--red), var(--red-deep));
}

.quality-card h3 {
  font-size: 25px;
}

.quality-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.quality-card li {
  font-weight: 800;
}

.founder-layout {
  grid-template-columns: 1fr 1.1fr;
}

.founder-photo img {
  object-fit: contain;
  padding: 36px;
  background: linear-gradient(135deg, #fff6d6, #ead099);
}

blockquote {
  margin: 24px 0 0;
  padding: 24px;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  color: #4c2c1d;
  background: #fff2d9;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.detail-panel {
  padding: 30px;
}

.pricing-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(213, 181, 123, 0.55);
  border-radius: 8px;
  background: #fffaf4;
}

.pricing-row span {
  color: var(--brown);
  font-weight: 800;
}

.pricing-row strong {
  color: var(--red);
  white-space: nowrap;
}

.detail-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.simple-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.simple-product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  cursor: zoom-in;
}

.simple-product-image::after {
  content: "Click to zoom";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff8dc;
  background: rgba(45, 22, 9, 0.78);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.simple-product-image:hover::after,
.simple-product-image:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.simple-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 12px;
  transition: transform 0.25s ease;
}

.simple-product-card:hover img {
  transform: scale(1.04);
}

.simple-product-card h3 {
  min-height: 68px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px 14px 6px;
  color: var(--red-deep);
  font-size: 19px;
  text-align: center;
}

.simple-product-price {
  margin: 0 0 18px;
  padding: 0 14px;
  color: var(--red);
  text-align: center;
  font-weight: 900;
}

.sweets-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #fffaf2, #fff0c9);
}

.sweets-note p {
  max-width: 760px;
}

.image-zoom-modal {
  position: fixed !important;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 20px;
  background: rgba(36, 19, 13, 0.82);
  backdrop-filter: blur(3px);
}

.image-zoom-modal.is-open {
  display: flex !important;
}

.image-zoom-dialog {
  position: relative;
  width: fit-content;
  max-width: calc(100vw - 40px);
  max-height: 90vh;
  padding: 20px;
  border: 1px solid rgba(242, 199, 107, 0.45);
  border-radius: 10px;
  background: #fffaf4;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  transform: translateY(0);
}

.image-zoom-dialog img {
  width: auto;
  max-width: calc(100vw - 80px);
  max-height: calc(90vh - 88px);
  object-fit: contain;
  object-position: center center;
  border-radius: 8px;
  background: #fff8ea;
}

.image-zoom-dialog p {
  margin: 14px 0 0;
  color: var(--red-deep);
  text-align: center;
  font-weight: 900;
}

.image-zoom-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #fff8dc;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  cursor: pointer;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

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

.value-card {
  padding: 26px;
}

.value-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 34px;
}

.enquiry-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 6vw;
  color: #fff8db;
  background: linear-gradient(100deg, var(--red-deep), var(--red), #8e001f);
}

.enquiry-band h2 {
  max-width: 780px;
  margin: 0;
  font-size: 34px;
}

.site-footer {
  color: #fff5dc;
  background: linear-gradient(90deg, #210b05, #56120f);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
  gap: 34px;
  padding: 38px 6vw;
}

.footer-logo {
  width: 190px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}

.site-footer h3 {
  color: var(--gold);
}

.site-footer a,
.site-footer p {
  display: block;
  color: #f8dfbc;
  line-height: 1.75;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 6vw;
  border-top: 1px solid rgba(242, 199, 107, 0.22);
  color: #f5dcae;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
}

.whatsapp-float::before {
  content: "";
  width: 29px;
  height: 29px;
  background: #fff;
  clip-path: path("M14.5 0C6.5 0 0 6.1 0 13.7c0 2.4.7 4.8 2 6.8L.7 27l6.9-1.8c2.1 1.1 4.4 1.7 6.9 1.7 8 0 14.5-6.1 14.5-13.7S22.5 0 14.5 0Zm8.5 19.4c-.4 1.1-2.2 2.1-3.1 2.2-.8.1-1.8.2-5.7-1.4-4.8-2-7.9-6.7-8.1-7-.2-.3-1.9-2.4-1.9-4.5s1.1-3.2 1.5-3.6c.4-.4.8-.5 1.1-.5h.8c.3 0 .6 0 .9.7.3.8 1.1 2.8 1.2 3 .1.2.2.5 0 .8-.2.3-.3.5-.6.8-.3.3-.5.6-.8.8-.3.3-.6.6-.3 1.1.3.5 1.2 1.9 2.6 3.1 1.8 1.5 3.3 2 3.8 2.2.5.2.8.2 1.1-.1.3-.3 1.2-1.3 1.5-1.8.3-.5.6-.4 1-.2.4.1 2.7 1.2 3.2 1.4.5.2.8.4.9.6.1.2.1 1.2-.3 2.4Z");
}

.whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-card,
.contact-form {
  padding: 30px;
}

.contact-card strong {
  display: block;
  color: var(--red);
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  background: #fffdf8;
}

.contact-form textarea {
  min-height: 145px;
  padding-top: 14px;
}

.contact-form button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  color: #fff8dc;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  font-weight: 900;
}

@media (max-width: 1050px) {
  .main-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .category-grid,
  .showcase-grid,
  .values-grid,
  .about-values,
  .product-showcase-grid,
  .home-category-grid,
  .home-offer-grid,
  .home-product-row,
  .home-band-products,
  .home-info-grid,
  .home-why-row,
  .partner-reasons,
  .distributor-benefits,
  .partner-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-stats div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .top-strip {
    display: none;
  }

  .main-header,
  .section,
  .hero,
  .home-hero,
  .distributor-hero,
  .home-feature-strip,
  .feature-strip,
  .enquiry-band,
  .distributor-cta,
  .footer-grid,
  .copyright {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .main-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    grid-column: 1;
  }

  .brand img {
    width: 165px;
    height: 74px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    position: relative;
  }

  .nav-links {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: auto;
    max-height: 0;
    overflow: hidden;
    overscroll-behavior: contain;
    border: 0;
    border-radius: 10px;
    background: #fffaf4;
    box-shadow: 0 22px 50px rgba(45, 22, 9, 0.18);
    transition:
      max-height 0.24s ease,
      border-color 0.24s ease;
  }

  .main-header.menu-open .nav-links {
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    border: 1px solid var(--line);
  }

  .nav-links a {
    padding: 15px 18px;
    border-bottom: 1px solid rgba(237, 216, 170, 0.7);
    font-size: 15px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links .mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin: 14px 16px 18px;
    padding: 0 18px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: #fff8dc;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    box-shadow: 0 14px 28px rgba(180, 0, 38, 0.18);
  }

  .nav-links .mobile-menu-cta::after {
    content: none;
  }

  .nav-links a.active::after {
    left: 18px;
    right: auto;
    bottom: 8px;
    width: 36px;
  }

  .hero,
  .home-hero,
  .detail-layout,
  .story-layout,
  .care-layout,
  .founder-layout,
  .self-service-panel,
  .home-pink-band,
  .distributor-hero,
  .distributor-panel,
  .apply-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .home-feature-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .feature-pill,
  .home-feature-strip div,
  .home-why-row div {
    border-right: 0;
    padding: 0;
  }

  .enquiry-band,
  .copyright,
  .sweets-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .quality-card {
    grid-template-columns: 1fr;
  }

  .steps-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .distributor-mini-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .distributor-mini-row div {
    border-right: 0;
    padding: 0;
  }

  .distributor-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .slider-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .snacks-box-slider {
    grid-auto-columns: minmax(230px, 46%);
  }

  .pricing-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero p,
  .lead {
    font-size: 16px;
  }

  .category-grid,
  .showcase-grid,
  .values-grid,
  .about-values,
  .product-showcase-grid,
  .home-category-grid,
  .home-offer-grid,
  .home-product-row,
  .home-band-products,
  .home-info-grid,
  .home-why-row,
  .partner-reasons,
  .distributor-benefits,
  .steps-card,
  .partner-bottom-grid,
  .network-card,
  .home-feature-strip,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual img,
  .home-hero-visual img {
    height: 260px;
  }

  .home-category-card,
  .home-offer-card {
    grid-template-columns: 1fr;
  }

  .self-service-panel {
    padding: 22px;
  }

  .self-service-steps article,
  .self-service-note {
    grid-template-columns: 1fr;
  }

  .self-service-head h2 {
    font-size: 31px;
  }

  .snacks-box-slider {
    grid-auto-columns: 82%;
    gap: 16px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

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

  .pricing-panel {
    padding: 14px;
  }

  .pricing-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .main-header {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 150px;
    height: 68px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
