:root {
  --paper: #fffdf9;
  --cream: #fbf4ec;
  --linen: #f4eadf;
  --sage: #dbe6d7;
  --sage-deep: #2f6656;
  --cocoa: #4d392f;
  --coffee: #2c2420;
  --rose: #b76568;
  --copper: #b8774f;
  --gold: #d7aa5f;
  --ink: #2b2622;
  --muted: #6e625a;
  --line: rgba(77, 57, 47, 0.16);
  --shadow: 0 18px 45px rgba(44, 36, 32, 0.11);
  --shadow-soft: 0 10px 30px rgba(44, 36, 32, 0.08);
  --radius: 8px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 244, 236, 0.62) 0%, rgba(255, 253, 249, 0.94) 38%, #fffdf9 100%);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 4px rgba(47, 102, 86, 0.13);
}

textarea {
  resize: vertical;
}

::selection {
  background: rgba(183, 119, 79, 0.28);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--coffee);
  color: #fff;
  text-decoration: none;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(800px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(77, 57, 47, 0.12);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  border-radius: 50%;
}

.brand strong {
  display: block;
  color: var(--coffee);
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(47, 102, 86, 0.1);
  color: var(--sage-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--coffee);
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 80px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--linen);
  background-image: url("../images/hero-baking-placeholder.svg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0), var(--paper));
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.95) 0%, rgba(255, 253, 249, 0.82) 44%, rgba(255, 253, 249, 0.52) 68%, rgba(255, 253, 249, 0.38) 100%),
    linear-gradient(180deg, rgba(77, 57, 47, 0.12), rgba(47, 102, 86, 0.18));
  z-index: -1;
}

.hero-content {
  padding: 90px 0 82px;
}

.hero-content,
.page-hero-grid > div:first-child {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--coffee);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: 3.75rem;
}

h2 {
  font-size: 2.15rem;
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0;
}

.hero-copy,
.page-hero p,
.section-heading p {
  color: var(--muted);
}

.hero-copy {
  max-width: 690px;
  margin-top: 20px;
  font-size: 1.15rem;
}

.trust-line {
  max-width: 640px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 650;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button.primary {
  background: var(--sage-deep);
  color: #fff;
}

.button.secondary {
  border-color: rgba(77, 57, 47, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: var(--coffee);
}

.button.compact {
  margin-top: 22px;
}

.footer-button {
  min-height: 42px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 54px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 + p,
.section-heading p + h2 {
  margin-top: 8px;
}

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

.category-card,
.feature-item,
.step-card,
.faq-item,
.contact-form,
.contact-details,
.product-card,
.responsible-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.category-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 102, 86, 0.34);
  box-shadow: var(--shadow);
}

.category-card.static-card:hover {
  transform: none;
}

.category-card h3 {
  margin-top: 18px;
}

.category-card p {
  margin-top: 10px;
  color: var(--muted);
}

.helium-card,
.helium-category {
  border-color: rgba(47, 102, 86, 0.28);
  background: linear-gradient(180deg, rgba(219, 230, 215, 0.58), rgba(255, 255, 255, 0.86));
}

.celebration-category {
  border-color: rgba(183, 101, 104, 0.26);
  background: linear-gradient(180deg, rgba(183, 101, 104, 0.08), rgba(255, 255, 255, 0.88));
}

.category-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #fff 0 13%, transparent 14%),
    linear-gradient(135deg, var(--copper), var(--gold));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.baking-icon {
  background:
    radial-gradient(circle at 47% 40%, #fff8ef 0 18%, transparent 19%),
    linear-gradient(135deg, var(--copper), var(--rose));
}

.tools-icon {
  background:
    linear-gradient(45deg, transparent 42%, #fffdf9 43% 55%, transparent 56%),
    linear-gradient(135deg, var(--sage-deep), #8fa67e);
}

.packaging-icon {
  background:
    linear-gradient(90deg, transparent 40%, rgba(255,255,255,0.9) 41% 46%, transparent 47%),
    linear-gradient(135deg, #936f52, var(--gold));
}

.party-icon {
  background:
    radial-gradient(circle at 33% 30%, #fff 0 8%, transparent 9%),
    radial-gradient(circle at 64% 62%, #fff 0 7%, transparent 8%),
    linear-gradient(135deg, var(--rose), var(--gold));
}

.balloon-icon {
  background:
    radial-gradient(ellipse at 50% 38%, #fff 0 20%, transparent 21%),
    linear-gradient(135deg, var(--sage-deep), #7da7b1);
}

.sourcing-icon {
  background:
    linear-gradient(135deg, transparent 34%, rgba(255,255,255,0.88) 35% 45%, transparent 46%),
    linear-gradient(135deg, #5d536a, var(--sage-deep));
}

.intro-band,
.supply-band,
.sourcing-note-section {
  background: linear-gradient(135deg, rgba(219, 230, 215, 0.42), rgba(251, 244, 236, 0.72));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: start;
}

.split-layout p {
  color: var(--muted);
  font-size: 1.03rem;
}

.split-layout p + p {
  margin-top: 16px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-item {
  min-height: 180px;
  padding: 24px;
}

.feature-item p {
  margin-top: 10px;
  color: var(--muted);
}

.compact-list .feature-item {
  min-height: 150px;
}

.visual-section {
  position: relative;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.visual-grid.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.visual-panel,
.page-visual,
.product-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-panel img,
.page-visual img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel {
  min-height: 430px;
}

.celebration-panel {
  border-color: rgba(47, 102, 86, 0.25);
}

.visual-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.visual-copy .eyebrow {
  margin-top: 0;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage-deep);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--sage-deep);
  font-weight: 800;
  text-decoration-color: rgba(47, 102, 86, 0.35);
  text-underline-offset: 4px;
}

.business-band {
  background: var(--coffee);
  color: #fff;
}

.business-band h2,
.business-band .eyebrow {
  color: #fff;
}

.business-band p {
  color: rgba(255, 255, 255, 0.78);
}

.responsible-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.responsible-note {
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(219, 230, 215, 0.5));
}

.responsible-note p:last-child {
  max-width: 900px;
  margin-top: 14px;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(135deg, var(--cocoa), var(--sage-deep));
  color: #fff;
}

.cta-band h2,
.cta-band .eyebrow {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-content > div:first-child {
  max-width: 680px;
}

.cta-content .button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.page-hero {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(251, 244, 236, 0.9), rgba(219, 230, 215, 0.48));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 52px;
  align-items: center;
}

.page-hero h1 {
  font-size: 3.1rem;
}

.page-hero p {
  max-width: 700px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.page-visual {
  min-height: 360px;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.anchor-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: #fff;
  color: var(--sage-deep);
  font-weight: 800;
  text-decoration: none;
}

.catalogue-section {
  padding-top: 40px;
}

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

.product-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.product-image {
  min-height: 300px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.product-copy {
  padding: 28px;
}

.product-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(77, 57, 47, 0.14);
  border-radius: 999px;
  background: rgba(251, 244, 236, 0.7);
  color: var(--coffee);
  padding: 6px 11px;
  font-size: 0.9rem;
  font-weight: 650;
}

.category-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  border-left: 3px solid var(--sage-deep);
  background: rgba(219, 230, 215, 0.42);
  padding: 10px 13px;
  color: var(--coffee) !important;
  font-weight: 800;
}

.secondary-support {
  padding-top: 46px;
  background: rgba(251, 244, 236, 0.46);
  border-top: 1px solid var(--line);
}

.secondary-support .narrow {
  border-left: 3px solid var(--copper);
  padding-left: 24px;
}

.secondary-support p {
  margin-top: 12px;
  color: var(--muted);
}

.small-copy {
  font-size: 0.94rem;
}

.order-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.order-type {
  min-height: 74px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
  color: var(--coffee);
  font-weight: 800;
}

.process-section {
  background: rgba(255, 253, 249, 0.72);
}

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

.step-card {
  min-height: 230px;
  padding: 24px;
}

.step-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sage-deep);
  color: #fff;
  font-weight: 900;
}

.step-card h3 {
  margin-top: 20px;
}

.step-card p {
  margin-top: 12px;
  color: var(--muted);
}

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

.faq-section {
  background: rgba(251, 244, 236, 0.42);
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--coffee);
  font-weight: 850;
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact-section {
  background: rgba(251, 244, 236, 0.38);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.contact-details,
.contact-form {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.contact-list p {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--coffee);
}

.contact-list span {
  color: var(--muted);
}

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

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--coffee);
  font-weight: 800;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--coffee);
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.95fr));
  gap: 34px;
}

.footer-brand strong,
.footer-grid h2 {
  color: #fff;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.footer-grid a:not(.brand):not(.button) {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-grid a:not(.brand):not(.button):hover,
.footer-grid a:not(.brand):not(.button):focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-grid p {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sage-deep);
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(47, 102, 86, 0.28);
}

.floating-whatsapp::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 1040px) {
  .site-nav a {
    padding: 9px 8px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

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

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

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

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

  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 48px;
    justify-content: flex-start;
    padding: 12px 14px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.86) 58%, rgba(255, 253, 249, 0.68) 100%),
      linear-gradient(180deg, rgba(77, 57, 47, 0.1), rgba(47, 102, 86, 0.16));
  }

  .hero-content {
    padding: 70px 0 64px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-copy,
  .page-hero p {
    font-size: 1.02rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 42px 0;
  }

  .split-layout,
  .visual-grid,
  .visual-grid.reverse,
  .page-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .visual-panel,
  .page-visual {
    min-height: auto;
  }

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

  .product-image {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .cta-content {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    padding-left: 14px;
    padding-right: 14px;
  }

  .category-grid,
  .feature-list,
  .compact-grid,
  .order-type-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .feature-item,
  .step-card {
    min-height: auto;
  }

  .product-copy,
  .contact-details,
  .contact-form,
  .responsible-note {
    padding: 22px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 15px;
  }
}
