:root {
  --green-900: #17330f;
  --green-800: #284b13;
  --green-700: #4f7d14;
  --green-600: #638f18;
  --green-100: #eef4e4;
  --cream: #fbf9f1;
  --paper: #fffdf7;
  --line: #d7ddc9;
  --text: #17210f;
  --muted: #5d6454;
  --shadow: 0 18px 44px rgba(33, 54, 14, 0.12);
  --radius: 8px;
}

/* Keep the floating WhatsApp action in one consistent position site-wide. */
body .floating-whatsapp {
  right: 30px !important;
  left: auto !important;
}

@media (max-width: 740px) {
  body .floating-whatsapp {
    right: 18px !important;
    left: auto !important;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
.button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.topbar {
  background: linear-gradient(90deg, #31520f, #557817 48%, #31520f);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.topbar-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 8vw, 86px);
  white-space: nowrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: 0.96;
}

.icon {
  width: 19px;
  height: 19px;
  display: inline-block;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #edf0e5;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}

.brand-logo {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 48px);
  font-size: 14px;
  font-weight: 900;
}

.primary-nav a,
.primary-nav button {
  position: relative;
  padding: 42px 0 34px;
}

.primary-nav button {
  background: transparent;
  color: inherit;
  font: inherit;
  border: 0;
}

.primary-nav a.active {
  color: var(--green-700);
}

.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  height: 2px;
  background: var(--green-700);
}

.nav-menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-chevron {
  font-size: 14px;
  line-height: 1;
  transition: transform 160ms ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 18px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  border: 1px solid #e2e8d7;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(25, 45, 13, 0.16);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 30;
}

.dropdown-menu a,
.dropdown-menu .dropdown-link {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #223318;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  white-space: nowrap;
}

.dropdown-item {
  position: relative;
}

.dropdown-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-link:hover,
.dropdown-link:focus {
  background: var(--green-100);
  color: var(--green-700);
  outline: 0;
}

.dropdown-submenu {
  position: absolute;
  left: calc(100% + 4px);
  top: 0;
  min-width: 210px;
  padding: 8px;
  border: 1px solid #e2e8d7;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(25, 45, 13, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 35;
}

.dropdown-submenu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: #223318;
  font-size: 12px;
  font-weight: 800;
}

.dropdown-item:hover .dropdown-submenu,
.dropdown-item:focus-within .dropdown-submenu,
.dropdown-item.open .dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-item.open > .dropdown-link .dropdown-chevron,
.dropdown-link.open .dropdown-chevron {
  transform: rotate(90deg);
}

.nav-menu-item:hover .dropdown-menu,
.nav-menu-item:focus-within .dropdown-menu,
.nav-menu-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-menu-item:hover .dropdown-chevron,
.nav-menu-item:focus-within .dropdown-chevron,
.nav-menu-item.open .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  min-width: 240px;
}

.icon-button {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #171d12;
  background: transparent;
  border-radius: 50%;
  position: relative;
}

.icon-button:hover {
  background: var(--green-100);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #77a725;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.whatsapp-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(79, 125, 20, 0.24);
}

.menu-toggle {
  display: none;
}

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

.mobile-nav {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  background: #fff;
  border-top: 1px solid #edf0e5;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav-inner {
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.mobile-nav a,
.mobile-nav .mobile-products-title {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 14px;
  color: #17210f;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.mobile-nav a:hover,
.mobile-nav a:focus,
.mobile-nav a.active,
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  background: var(--green-100);
  color: var(--green-700);
  outline: 0;
}

.mobile-products-group {
  display: grid;
  gap: 6px;
}

.mobile-products-panel,
.mobile-submenu-panel {
  display: grid;
  gap: 6px;
  margin-left: 14px;
  padding-top: 4px;
}

.mobile-nav-toggle {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 14px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #17210f;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.mobile-nav-toggle .dropdown-chevron,
.mobile-submenu-toggle .dropdown-chevron {
  transition: transform 160ms ease;
}

.mobile-nav-toggle.open .dropdown-chevron,
.mobile-submenu-toggle.open .dropdown-chevron {
  transform: rotate(90deg);
}

.mobile-nav .mobile-product-link {
  min-height: 34px;
  margin-left: 14px;
  padding-left: 18px;
  border-left: 2px solid #d6dcc8;
  color: #3d4734;
  font-size: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fbf9f1 0%, #fbf9f1 47%, #f1e7d8 100%);
  min-height: 338px;
}

.hero::after {
  content: "";
  position: absolute;
  left: -48px;
  bottom: -8px;
  width: 170px;
  height: 250px;
  background:
    radial-gradient(ellipse at 60% 15%, rgba(99, 143, 24, 0.42) 0 12%, transparent 13%),
    radial-gradient(ellipse at 38% 32%, rgba(99, 143, 24, 0.34) 0 12%, transparent 13%),
    radial-gradient(ellipse at 62% 50%, rgba(99, 143, 24, 0.34) 0 12%, transparent 13%),
    radial-gradient(ellipse at 39% 67%, rgba(99, 143, 24, 0.32) 0 12%, transparent 13%);
  opacity: 0.8;
  transform: rotate(-16deg);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 338px;
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(16px, calc((100vw - 1240px) / 2))
    minmax(420px, 510px)
    minmax(0, 1fr);
  align-items: center;
}

.hero-copy {
  grid-column: 2;
  width: 100%;
  padding: 32px 0 36px;
}

.hero-media {
  grid-column: 3;
  align-self: stretch;
  min-height: 338px;
  position: relative;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 24%;
  background: linear-gradient(90deg, #fbf9f1 0%, rgba(251, 249, 241, 0.72) 44%, rgba(251, 249, 241, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(40px, 4.3vw, 54px);
  line-height: 1.05;
  font-weight: 950;
}

.hero h1 span {
  color: var(--green-700);
}

.leaf-divider {
  width: 230px;
  height: 26px;
  margin: 14px 0 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--green-700);
}

.leaf-divider::before,
.leaf-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b9c88d, transparent);
}

.leaf-pair {
  display: inline-flex;
  gap: 3px;
}

.leaf {
  width: 12px;
  height: 18px;
  display: inline-block;
  border-radius: 12px 0 12px 0;
  background: var(--green-700);
  transform: rotate(-34deg);
}

.leaf + .leaf {
  transform: rotate(34deg) scaleX(-1);
}

.hero p {
  max-width: 460px;
  margin: 0 0 18px;
  color: #28331e;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.45;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button-primary,
.button-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 14px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.button-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 12px 24px rgba(79, 125, 20, 0.28);
}

.button-secondary {
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.74);
  border: 1.5px solid var(--green-700);
}

main {
  background: #fff;
}

.benefits {
  width: min(1240px, calc(100% - 32px));
  margin: 8px auto 16px;
  background: #f8f4e9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #ece8dc;
}

.benefit {
  min-height: 98px;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 32px;
  position: relative;
}

.benefit > div {
  min-width: 0;
}

.benefit + .benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: #cdd5b8;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border: 2px solid #7a9e2a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-700);
  background: #fffdf7;
}

.benefit h3 {
  margin: 0 0 5px;
  color: #182313;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.benefit p {
  margin: 0;
  color: #39422f;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 500;
  overflow-wrap: break-word;
}

.section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 16px 0 14px;
  color: var(--green-900);
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, #d6dcc8, transparent);
}

.section-title span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-title .leaf-pair {
  transform: scale(0.75);
}

.smart-cookies-categories {
  margin: 0 0 18px;
}

.subcategory-group {
  padding: 14px 16px;
  border: 1px solid #e7ebdc;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #f8f4e9 0%, #fcfbf5 100%);
  box-shadow: 0 6px 16px rgba(50, 66, 29, 0.06);
}

.subcategory-group h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.subcategory-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.subcategory-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #dfe4d3;
  border-radius: 999px;
  background: #fff;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.subcategory-pill:hover,
.subcategory-pill:focus {
  background: var(--green-100);
  color: var(--green-800);
  outline: 0;
}

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

.category-page {
  padding: 28px 0 42px;
}

.category-hero {
  margin: 0 0 22px;
  padding: 24px 0;
  border-bottom: 1px solid #e8ebde;
}

.category-hero h1 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 950;
}

.category-hero p {
  margin: 0;
  color: #475233;
  font-size: 16px;
  line-height: 1.5;
}

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

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 44%) minmax(320px, 56%);
  gap: 28px;
  align-items: start;
  margin-top: 26px;
}

.product-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: #f8f4e9;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 24px;
  max-width: 440px;
}

.product-image-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.product-image-main img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 240px;
  max-height: 300px;
}

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

.gallery-item {
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.gallery-item:hover,
.gallery-item:focus,
.gallery-item.active {
  border-color: var(--green-700);
  background: #f2f6df;
  transform: translateY(-1px);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.gallery-item span {
  display: none;
}

.product-detail-info {
  display: grid;
  gap: 22px;
}

.product-detail-header {
  display: grid;
  gap: 18px;
}

.product-meta-panel {
  display: grid;
  gap: 18px;
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.quantity-control {
  width: 100%;
  margin: 0;
}

.purchase-panel .product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.purchase-panel .product-actions a {
  min-width: 0;
  width: 100%;
}

@media (max-width: 899px) {
  .purchase-panel {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }
}

.product-category {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef5e2;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-info h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
}

.product-tagline {
  margin: 0;
  color: #465336;
  font-size: 16px;
  line-height: 1.7;
  max-width: 46rem;
}

.price-panel {
  display: grid;
  gap: 12px;
}

.price-block {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.product-price {
  color: var(--green-900);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 950;
}

.product-weight {
  color: #3d4b34;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #5d6454;
  font-size: 13px;
  font-weight: 600;
}

.button-secondary {
  color: #fff;
  background: #182313;
  border: 1px solid #182313;
}

.product-detail-panels {
  display: grid;
  gap: 14px;
}

.product-detail-panels details {
  border: 1px solid #e5e7dd;
  border-radius: var(--radius);
  background: #fbf8ef;
  padding: 16px 18px;
}

.product-detail-panels summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  font-weight: 950;
  color: var(--green-900);
  cursor: pointer;
  list-style: none;
}

.product-detail-panels summary::-webkit-details-marker {
  display: none;
}

.product-detail-panels summary::after {
  content: "+";
  font-size: 18px;
  line-height: 1;
  color: #5d6454;
  transition: transform 160ms ease;
}

.product-detail-panels details[open] summary::after {
  content: "−";
}

.product-detail-panels p {
  margin: 14px 0 0;
  color: #3d4b34;
  font-size: 14px;
  line-height: 1.75;
}

.product-detail-panels details[open] {
  background: #fff;
}

.product-detail-image {
  max-width: 100%;
}

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

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

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

.product-card {
  overflow: hidden;
  border: 1px solid #e5e7dd;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 6px 16px rgba(50, 66, 29, 0.07);
}

.blog-image {
  background-image: url("Homepage_Layout.jpeg");
  background-size: 1536px 1024px;
  background-repeat: no-repeat;
  background-color: #eee8da;
}

.product-image {
  aspect-ratio: 1.55 / 1;
  border-bottom: 1px solid #ecede4;
  background: #f5f1e7;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.product-body {
  padding: 10px 12px 12px;
}

.product-card h3 {
  min-height: 38px;
  margin: 0 0 9px;
  color: #182313;
  font-size: 14px;
  line-height: 1.16;
  font-weight: 950;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 9px;
  color: #3c4b2c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #f4f1e8;
  border: 1px solid #dfe4d3;
}

.product-detail-link {
  display: block;
  width: fit-content;
  margin: -1px auto 9px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.product-detail-link:hover,
.product-detail-link:focus {
  color: var(--green-900);
}

.quantity-control {
  width: min(128px, 100%);
  min-height: 32px;
  margin: 0 auto 10px;
  padding: 3px 5px 3px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid #d9e0cb;
  border-radius: 999px;
  background: #faf8f0;
  color: #324522;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quantity-input {
  width: 48px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--green-900);
  font: inherit;
  text-align: center;
  outline: 1px solid transparent;
}

.quantity-input:focus {
  outline-color: var(--green-700);
}

.shop-button {
  min-width: 132px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-button.added-to-cart {
  background: var(--green-900);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 42px;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  min-height: 124px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fbf7ee;
  border: 1px solid #eeeadf;
  box-shadow: 0 10px 24px rgba(50, 66, 29, 0.07);
}

.blog-image {
  min-height: 124px;
}

.blog-image.one { background-position: -146px -890px; }
.blog-image.two {
  background-image: url("assets/blog-healthy-snacks-kids.jpg");
  background-size: cover;
  background-position: center;
}

.blog-image.three {
  background-image: url("assets/blog-millets-refined-flour.jpg");
  background-size: cover;
  background-position: center;
}
.blog-image.protein {
  background-image: url("assets/Protein%20Powder.png");
  background-size: cover;
  background-position: center;
}

.blog-body {
  padding: 13px 16px;
}

.blog-card h3 {
  margin: 0 0 8px;
  color: #1d2817;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 950;
}

.blog-card p {
  margin: 0 0 8px;
  color: #3d4536;
  font-size: 13px;
  line-height: 1.38;
}

.read-more {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 30;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp .icon {
  width: 40px;
  height: 40px;
  stroke-width: 1.8;
}

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 88px;
  }

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu-toggle {
    display: inline-grid;
  }

  .nav-tools {
    min-width: unset;
  }

  .whatsapp-button {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 16px minmax(0, 470px) minmax(0, 1fr);
  }

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

  .benefit + .benefit::before {
    top: 0;
    bottom: auto;
    left: 30px;
    right: 30px;
    width: auto;
    height: 1px;
  }

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

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

@media (max-width: 740px) {
  .topbar {
    display: none;
  }

  .nav-shell {
    width: min(calc(100% - 24px), 640px);
    gap: 12px;
  }

  .mobile-nav {
    width: min(calc(100% - 24px), 640px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 218px;
  }

  .nav-tools {
    gap: 8px;
  }

  .hero {
    min-height: 0;
    background: #fbf8f0;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    width: min(calc(100% - 28px), 640px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
    padding-bottom: 22px;
  }

  .hero-copy {
    grid-column: 1;
    width: 100%;
    padding-top: 34px;
    padding-bottom: 0;
  }

  .hero-media {
    grid-column: 1;
    min-height: 245px;
    border-radius: var(--radius);
  }

  .hero-media::before {
    width: 100%;
    height: 34%;
    background: linear-gradient(180deg, #fbf8f0 0%, rgba(251, 248, 240, 0) 100%);
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    max-width: 390px;
    font-size: 16px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
    max-width: 310px;
  }

  .benefits,
  .section {
    width: min(calc(100% - 24px), 640px);
  }

  .benefit {
    grid-template-columns: 60px 1fr;
    padding: 18px;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
  }

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

      .category-products-grid {
        grid-template-columns: 1fr;
      }

      .subcategory-links {
        gap: 7px;
      }

      .subcategory-pill {
        min-height: 30px;
        padding: 0 10px;
        font-size: 10px;
      }

      .blog-image {
    background-size: 1220px 813px;
  }

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

  .blog-image {
    aspect-ratio: 1.8 / 1;
  }

  .blog-image.two,
  .blog-image.three {
    background-position: center;
  }

  .floating-whatsapp {
    left: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}

.site-footer {
  background: #f5f2e6;
  border-top: 1px solid #e8e2d6;
  color: #2f3d2a;
  padding: 42px 0 24px;
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 28px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #3d4b33;
  font-size: 13px;
  line-height: 1.7;
}

.footer-column a:hover,
.footer-column a:focus {
  color: var(--green-700);
}

.footer-column h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #3d4b33;
  font-size: 13px;
  line-height: 1.7;
}

.footer-column a:hover,
.footer-column a:focus {
  color: var(--green-700);
}

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: #5d6a4f;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 740px) {
  .footer-inner {
    width: min(calc(100% - 24px), 640px);
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 190px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .leaf-divider {
    width: 190px;
  }

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

  .product-card h3 {
    min-height: auto;
  }
}

/* Shared premium footer */
.home-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(192, 218, 126, 0.17), transparent 30%),
    linear-gradient(145deg, #173c27 0%, #245536 55%, #183d29 100%);
  color: #f7f4e8;
}

.home-footer::before,
.home-footer::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(226, 237, 193, 0.12);
  border-radius: 55% 45% 60% 40%;
  pointer-events: none;
}

.home-footer::before {
  top: -155px;
  right: -70px;
  transform: rotate(28deg);
}

.home-footer::after {
  bottom: -180px;
  left: -95px;
  transform: rotate(-18deg);
}

.home-footer-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.home-footer-main {
  display: grid;
  grid-template-columns: minmax(290px, 1.55fr) repeat(3, minmax(150px, 0.72fr));
  gap: clamp(28px, 4vw, 64px);
  padding: 54px 0 42px;
}

.home-footer-brand {
  max-width: 430px;
}

.home-footer-logo {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 14px;
  background: #fffdf6;
  box-shadow: 0 12px 30px rgba(4, 23, 13, 0.22);
}

.home-footer-logo img {
  display: block;
  width: min(260px, 65vw);
  height: auto;
}

.home-footer-tagline {
  margin: 21px 0 8px;
  color: #fffdf5;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 900;
  line-height: 1.25;
}

.home-footer-copy {
  max-width: 390px;
  margin: 0;
  color: #dce8d5;
  font-size: 14px;
  line-height: 1.75;
}

.home-footer-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 22px;
}

.home-footer-promises span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(223, 235, 192, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #edf3df;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.home-footer-promises span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bdd76f;
  box-shadow: 0 0 0 3px rgba(189, 215, 111, 0.12);
}

.home-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f0b323;
  color: #173820;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(7, 30, 16, 0.2);
  transition: transform 160ms ease, background 160ms ease;
}

.home-footer-cta:hover,
.home-footer-cta:focus {
  color: #173820;
  background: #ffc63c;
  transform: translateY(-2px);
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

.home-footer-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-footer .footer-column {
  align-content: start;
  gap: 8px;
  padding-top: 9px;
}

.home-footer .footer-column h3 {
  position: relative;
  margin: 0 0 13px;
  padding-bottom: 11px;
  color: #f6d77d;
  font-size: 12px;
  letter-spacing: 0.11em;
}

.home-footer .footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #a7c957;
}

.home-footer .footer-column a,
.home-footer .footer-column p {
  width: fit-content;
  color: #dce8d5;
  font-size: 13px;
  line-height: 1.65;
}

.home-footer .footer-column a {
  transition: color 150ms ease, transform 150ms ease;
}

.home-footer .footer-column a:hover,
.home-footer .footer-column a:focus {
  color: #fff2bc;
  transform: translateX(3px);
  outline: 0;
}

.home-footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-footer-contact-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-footer-social {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.home-footer-social-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #edf3df !important;
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-footer-social-label span {
  padding: 2px 6px;
  border: 1px solid rgba(240, 201, 95, 0.35);
  border-radius: 999px;
  color: #f6d77d;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.home-footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-footer-social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px !important;
  height: 34px;
  border: 1px solid rgba(223, 235, 192, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #dce8d5 !important;
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
  transform: none !important;
}

.home-footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-footer-social-link .social-fill {
  fill: currentColor;
  stroke: none;
}

.home-footer .footer-bottom {
  width: 100%;
  margin: 0;
  min-height: 78px;
  padding: 20px 0 24px 88px;
  border-top: 1px solid rgba(231, 239, 208, 0.15);
  color: #bfcfba;
  font-size: 12px;
}

.home-footer-signoff {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-footer-signoff::before {
  content: "✦";
  color: #f0c95f;
}

@media (max-width: 980px) {
  .home-footer-main {
    grid-template-columns: minmax(280px, 1.5fr) repeat(2, minmax(150px, 1fr));
  }

  .home-footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 680px) {
  .home-footer-shell {
    width: min(calc(100% - 28px), 560px);
  }

  .home-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
    padding: 42px 0 32px;
  }

  .home-footer-brand {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .home-footer .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .home-footer .footer-bottom {
    align-items: flex-start;
    gap: 8px;
    padding-left: 76px;
  }
}

@media (max-width: 430px) {
  .home-footer-main {
    grid-template-columns: 1fr;
  }

  .home-footer .footer-column:last-child {
    grid-column: auto;
  }

  .home-footer-cta {
    width: 100%;
  }
}

/* Shared collection page design */
.millet-page {
  background:
    radial-gradient(circle at 95% 8%, rgba(210, 224, 161, 0.34), transparent 26%),
    linear-gradient(180deg, #fbfaf4 0%, #fff 42%, #f8f6ed 100%);
}

.millet-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 56px;
  border-bottom: 1px solid #e5e9d8;
}

.millet-hero::before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(81, 117, 37, 0.1);
  border-radius: 45% 55% 38% 62%;
  transform: rotate(22deg);
  pointer-events: none;
}

.millet-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.millet-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #657151;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.millet-breadcrumb a {
  color: var(--green-700);
}

.millet-breadcrumb span {
  color: #a6ad94;
}

.millet-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.millet-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: #7b5414;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.millet-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #d6a735;
}

.millet-hero h1 {
  max-width: 660px;
  margin: 0;
  color: #183f29;
  font-size: clamp(46px, 6.5vw, 78px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.millet-hero h1 span {
  display: block;
  color: #668c2d;
}

.millet-hero-copy {
  max-width: 650px;
  margin: 23px 0 0;
  color: #4c5840;
  font-size: 17px;
  line-height: 1.75;
}

.millet-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.millet-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.millet-action-primary {
  background: #527b25;
  color: #fff;
  box-shadow: 0 12px 25px rgba(47, 84, 29, 0.2);
}

.millet-action-primary:hover,
.millet-action-primary:focus {
  background: #3f671a;
  color: #fff;
  transform: translateY(-2px);
}

.millet-action-secondary {
  border: 1px solid #ced7b8;
  background: rgba(255, 255, 255, 0.7);
  color: #31591f;
}

.millet-action-secondary:hover,
.millet-action-secondary:focus {
  border-color: #78984a;
  background: #fff;
  color: #31591f;
}

.millet-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.millet-facts li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #e2e6d5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #50603d;
  font-size: 11px;
  font-weight: 850;
}

.millet-facts li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7aa35;
}

.millet-hero-visual {
  position: relative;
  min-height: 450px;
}

.millet-hero-main,
.millet-hero-small {
  position: absolute;
  overflow: hidden;
  border: 7px solid #fff;
  background: #eee8d9;
  box-shadow: 0 24px 55px rgba(39, 61, 29, 0.17);
}

.millet-hero-main {
  inset: 0 44px 38px 0;
  border-radius: 32px 90px 32px 32px;
}

.millet-hero-small {
  right: 0;
  bottom: 0;
  width: 43%;
  aspect-ratio: 1 / 1;
  border-width: 5px;
  border-radius: 50%;
}

.millet-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.millet-hero-seal {
  position: absolute;
  top: 22px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 12px;
  border: 6px solid #fbfaf4;
  border-radius: 50%;
  background: #efbd45;
  color: #24401f;
  text-align: center;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  transform: rotate(7deg);
  box-shadow: 0 12px 25px rgba(60, 62, 23, 0.18);
}

.millet-products {
  padding: 70px 0;
}

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

.millet-section-heading h2 {
  margin: 0;
  color: #193f29;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.millet-section-heading p {
  max-width: 470px;
  margin: 0;
  color: #66705b;
  font-size: 14px;
  line-height: 1.65;
}

.millet-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.millet-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #e3e7d8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(51, 69, 35, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.millet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(51, 69, 35, 0.14);
}

.millet-card-media {
  position: relative;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #eee8da;
}

.millet-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.millet-card:hover .millet-card-media img {
  transform: scale(1.035);
}

.millet-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(25, 63, 41, 0.92);
  color: #fff;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.millet-card-badge.warm {
  background: rgba(219, 164, 42, 0.94);
  color: #263618;
}

.millet-product-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 28px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.85), transparent 30%),
    linear-gradient(145deg, #e8e1c7, #d8e3b8);
  color: #4e6a2d;
  text-align: center;
}

.millet-product-placeholder svg {
  width: 76px;
  height: 76px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.millet-product-placeholder span {
  display: block;
  margin-top: 12px;
  color: #536044;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.millet-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.millet-card-kicker {
  margin: 0 0 7px;
  color: #7d8f58;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.millet-card h2 {
  margin: 0;
  color: #1c3f28;
  font-size: 23px;
  font-weight: 950;
  line-height: 1.18;
}

.millet-card-description {
  margin: 12px 0 0;
  color: #5d6852;
  font-size: 13px;
  line-height: 1.65;
}

.millet-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.millet-ingredients li {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f2f4e9;
  color: #52643d;
  font-size: 10px;
  font-weight: 800;
}

.millet-card-purchase {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
}

.millet-pack {
  display: block;
  margin-bottom: 3px;
  color: #7b846d;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.millet-price {
  color: #244b2d;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.millet-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 18px;
}

.millet-card-actions.two-actions {
  grid-template-columns: 0.85fr 1.15fr;
}

.millet-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid #cfd8ba;
  border-radius: 12px;
  color: #315c25;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
}

button.millet-card-link {
  cursor: pointer;
  font-family: inherit;
}

.millet-card-link.primary {
  border-color: #4d7827;
  background: #4d7827;
  color: #fff;
}

.millet-card-link:hover,
.millet-card-link:focus {
  border-color: #365f1a;
  background: #365f1a;
  color: #fff;
  outline: 0;
}

.millet-ordering {
  padding: 0 0 70px;
}

.millet-page .floating-whatsapp {
  right: 20px;
  left: auto;
}

.millet-page .home-footer .footer-bottom {
  padding-right: 88px;
  padding-left: 0;
}

.millet-order-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 188, 91, 0.18), transparent 35%),
    #1f4a31;
  color: #fff;
  box-shadow: 0 20px 45px rgba(28, 64, 41, 0.16);
}

.millet-order-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 950;
  line-height: 1.05;
}

.millet-order-panel > div > p {
  margin: 13px 0 0;
  color: #d8e4d3;
  font-size: 13px;
  line-height: 1.65;
}

.millet-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.millet-steps li {
  min-height: 125px;
  padding: 18px;
  border: 1px solid rgba(224, 236, 211, 0.15);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
}

.millet-step-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 13px;
  border-radius: 50%;
  background: #efbd45;
  color: #274221;
  font-size: 11px;
  font-weight: 950;
}

.millet-steps strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.millet-steps p {
  margin: 0;
  color: #d8e4d3;
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .millet-hero-grid,
  .millet-order-panel {
    grid-template-columns: 1fr;
  }

  .millet-hero-visual {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

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

  .millet-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .millet-hero {
    padding: 22px 0 42px;
  }

  .millet-hero h1 {
    font-size: clamp(42px, 16vw, 60px);
  }

  .millet-hero-copy {
    font-size: 15px;
  }

  .millet-hero-actions,
  .millet-action {
    width: 100%;
  }

  .millet-hero-visual {
    min-height: 350px;
  }

  .millet-hero-main {
    right: 30px;
  }

  .millet-hero-seal {
    width: 82px;
    height: 82px;
    font-size: 8px;
  }

  .millet-products {
    padding: 52px 0;
  }

  .millet-section-heading {
    display: grid;
  }

  .millet-product-grid {
    grid-template-columns: 1fr;
  }

  .millet-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .millet-steps {
    grid-template-columns: 1fr;
  }

  .millet-steps li {
    min-height: 0;
  }

  .millet-page .home-footer .footer-bottom {
    padding-right: 76px;
    padding-left: 0;
  }
}
