@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap");

:root {
  --pink: #e94d82;
  --pink-dark: #b9235b;
  --pink-soft: #fff0f5;
  --pink-pale: #fff8fb;
  --cream: #fffaf4;
  --brown: #3b1f1a;
  --brown-soft: #6f5047;
  --white: #ffffff;
  --green: #20b85a;
  --line: rgba(59, 31, 26, 0.12);
  --shadow: 0 22px 58px rgba(76, 32, 39, 0.13);
  --shadow-soft: 0 13px 34px rgba(76, 32, 39, 0.08);
  --radius: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--brown);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brown);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

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

h1, h2, h3 {
  margin-top: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}
h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.3vw, 5.5rem);
  letter-spacing: -0.045em;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  letter-spacing: -0.035em;
}
h3 { font-size: 1.5rem; }
p { margin-top: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.eyebrow.light { color: #ffd4e3; }

.button {
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 23px;
  color: var(--white);
  background: var(--pink-dark);
  border: 1px solid var(--pink-dark);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(185, 35, 91, 0.22);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover {
  background: #9f174d;
  box-shadow: 0 16px 32px rgba(185, 35, 91, 0.28);
  transform: translateY(-2px);
}
.button-small { min-height: 44px; padding: 10px 18px; font-size: 0.92rem; }
.button-secondary {
  color: var(--brown);
  background: transparent;
  border-color: rgba(59, 31, 26, 0.22);
  box-shadow: none;
}
.button-secondary:hover {
  color: var(--pink-dark);
  background: var(--white);
  border-color: var(--pink);
  box-shadow: none;
}
.button-light {
  color: var(--pink-dark);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 34px rgba(43, 18, 24, 0.2);
}
.button-light:hover { color: var(--brown); background: var(--cream); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-dark);
  font-weight: 800;
  text-decoration: none;
}
.text-link span { transition: transform 0.2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(59, 31, 26, 0.08);
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  text-decoration: none;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(233, 77, 130, 0.22);
}
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; }
.brand small { margin-top: 4px; color: var(--pink-dark); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--brown-soft); text-decoration: none; font-size: 0.93rem; font-weight: 700; }
.nav-links a:hover { color: var(--pink-dark); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--brown); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 8vw, 112px) 0 92px;
  background:
    radial-gradient(circle at 8% 16%, rgba(233, 77, 130, 0.13), transparent 27%),
    radial-gradient(circle at 94% 12%, rgba(255, 202, 219, 0.7), transparent 28%),
    var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -150px;
  border: 34px solid rgba(233, 77, 130, 0.07);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 62px;
}
.hero-text {
  max-width: 650px;
  margin: 0;
  color: var(--brown-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.27rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--brown-soft);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}
.hero-points li::before { content: "✓"; margin-right: 8px; color: var(--pink-dark); font-weight: 900; }

.hero-collage {
  position: relative;
  min-height: 540px;
  max-width: 540px;
  margin-left: auto;
}
.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 8px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.hero-photo-main { inset: 30px 85px 35px 0; transform: rotate(-2deg); }
.hero-photo-main figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(59, 31, 26, 0.88);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
}
.hero-photo-cookie { width: 175px; height: 175px; top: 0; right: 0; transform: rotate(5deg); }
.hero-photo-savory { width: 170px; height: 225px; right: 0; bottom: 0; transform: rotate(3deg); }
.hero-badge {
  position: absolute;
  z-index: 4;
  left: -15px;
  bottom: 17px;
  width: 108px;
  height: 108px;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--pink);
  border: 5px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(185, 35, 91, 0.25);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-8deg);
}
.hero-badge strong { font-size: 1.2rem; }

/* Trust strip */
.trust-strip { color: var(--white); background: var(--brown); }
.trust-grid { min-height: 116px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.trust-grid div { display: flex; flex-direction: column; justify-content: center; padding: 22px 28px; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { color: #ffd9e6; font-family: "Playfair Display", Georgia, serif; font-size: 1.05rem; }
.trust-grid span { color: rgba(255, 255, 255, 0.7); font-size: 0.82rem; }

/* Common sections */
.section { padding: clamp(78px, 9vw, 126px) 0; }
.section-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  align-items: end;
  gap: 68px;
  margin-bottom: 48px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin: 0 0 6px; color: var(--brown-soft); font-size: 1.02rem; }
.centered-heading { display: block; max-width: 820px; margin-inline: auto; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading > p { max-width: 720px; margin: 0 auto; }

/* Featured */
.featured-section { background: var(--white); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
.featured-card {
  grid-column: span 1;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.featured-card-large { grid-column: span 2; }
.featured-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.featured-image { position: relative; aspect-ratio: 1 / 0.86; overflow: hidden; background: var(--pink-soft); }
.featured-card-large .featured-image { aspect-ratio: 1.22 / 0.86; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.featured-card:hover img { transform: scale(1.035); }
.photo-label {
  position: absolute;
  left: 15px;
  top: 15px;
  padding: 7px 11px;
  color: var(--pink-dark);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.featured-copy { padding: 22px; }
.product-category { margin-bottom: 6px; color: var(--pink-dark); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.featured-copy h3 { margin-bottom: 10px; font-size: clamp(1.35rem, 2vw, 1.75rem); }
.featured-copy > p:not(.product-category) { margin-bottom: 17px; color: var(--brown-soft); font-size: 0.91rem; }
.featured-copy .text-link { font-size: 0.86rem; }

/* Catalog */
.catalog-section { background: var(--pink-pale); }
.section-heading-catalog { margin-bottom: 30px; }
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}
.filter-button {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--brown-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}
.filter-button:hover, .filter-button.active {
  color: var(--white);
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}
.catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.catalog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(185, 35, 91, 0.1);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(76, 32, 39, 0.065);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.catalog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.catalog-card[hidden] { display: none; }
.catalog-image { aspect-ratio: 1.12 / 0.9; overflow: hidden; background: #f8e9ef; }
.catalog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.catalog-card:hover .catalog-image img { transform: scale(1.035); }
.catalog-copy { padding: 20px; }
.catalog-copy > span { color: var(--pink-dark); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.catalog-copy h3 { margin: 7px 0 9px; font-size: 1.28rem; }
.catalog-copy p { min-height: 48px; margin-bottom: 14px; color: var(--brown-soft); font-size: 0.87rem; }
.catalog-copy a { color: var(--pink-dark); font-size: 0.82rem; font-weight: 800; text-decoration: none; }
.catalog-copy a:hover { text-decoration: underline; }

/* Offers */
.offers-section { overflow: hidden; color: var(--white); background: linear-gradient(125deg, #3b1f1a, #552e25); }
.offers-section .eyebrow { color: #ffc5d9; }
.offers-section h2 { color: var(--white); }
.offers-heading > p { color: rgba(255, 255, 255, 0.7); }
.offers-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 0.78fr);
  gap: 18px;
  overflow-x: auto;
  padding: 5px 3px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}
.offer-card {
  overflow: hidden;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 22px;
  box-shadow: 0 17px 38px rgba(0, 0, 0, 0.22);
  scroll-snap-align: start;
  transition: transform 0.22s ease;
}
.offer-card:hover { transform: translateY(-5px); }
.offer-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center; border-radius: 15px; }
.offer-card:first-child img { aspect-ratio: 1 / 1; }

/* Occasions */
.occasions-section { background: var(--cream); }
.occasion-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.occasion-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.occasion-card img { width: 100%; aspect-ratio: 1 / 0.95; object-fit: cover; }
.occasion-card div { padding: 22px; }
.occasion-card span { color: var(--pink-dark); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.11em; }
.occasion-card h3 { margin: 8px 0 10px; font-size: 1.35rem; }
.occasion-card p { margin-bottom: 0; color: var(--brown-soft); font-size: 0.9rem; }

/* Process */
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 72px; align-items: center; }
.process-copy > p:not(.eyebrow) { color: var(--brown-soft); font-size: 1.05rem; }
.process-copy ul { display: grid; gap: 10px; margin: 26px 0 28px; padding: 0; list-style: none; }
.process-copy li { color: var(--brown-soft); font-weight: 700; }
.process-copy li::before { content: "✓"; margin-right: 9px; color: var(--pink-dark); }
.process-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
}
.process-gallery figure { overflow: hidden; margin: 0; border-radius: 24px; box-shadow: var(--shadow-soft); }
.process-large { grid-row: 1 / 3; }
.process-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.process-gallery figure:hover img { transform: scale(1.035); }

/* Order */
.order-section { background: var(--pink-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.steps li {
  min-height: 215px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(185, 35, 91, 0.12);
  border-radius: 24px;
}
.steps > li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
}
.steps h3 { margin-bottom: 8px; font-size: 1.32rem; }
.steps p { margin-bottom: 0; color: var(--brown-soft); }
.order-banner {
  min-height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 26px;
  padding: 34px 40px;
  color: var(--white);
  background: linear-gradient(115deg, var(--pink-dark), var(--pink));
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(185, 35, 91, 0.22);
}
.order-banner span { color: #ffd9e6; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.11em; }
.order-banner h3 { margin: 7px 0 0; font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* FAQ */
.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 78px; align-items: start; }
.faq-grid > div:first-child > p:not(.eyebrow) { color: var(--brown-soft); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 20px 36px 20px 0;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 0; color: var(--pink-dark); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 0 0 20px; padding-right: 36px; color: var(--brown-soft); }

/* Final CTA and footer */
.final-cta { padding: 78px 0; color: var(--white); background: linear-gradient(115deg, var(--brown), #573027); }
.final-grid { display: grid; grid-template-columns: 1.08fr 0.45fr; gap: 40px; align-items: center; }
.final-grid h2 { max-width: 760px; }
.final-grid > div > p:not(.eyebrow) { max-width: 650px; color: rgba(255, 255, 255, 0.75); }
.final-grid > img { width: min(290px, 100%); margin-left: auto; border-radius: 50%; box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24); }
.final-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 25px; }
.final-actions > a:not(.button) { color: #ffd9e6; font-weight: 800; }

.site-footer { padding: 30px 0 92px; color: rgba(255, 255, 255, 0.72); background: #29140f; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 25px; }
.footer-brand { margin-right: 0; }
.footer-brand strong { color: var(--white); }
.footer-brand small { color: rgba(255, 255, 255, 0.58); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.site-footer p { margin-bottom: 0; }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(32, 184, 90, 0.27);
  font-weight: 800;
  text-decoration: none;
}
.whatsapp-float span { font-size: 0.8rem; }
.mobile-order-bar { display: none; }

@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr 0.9fr; gap: 36px; }
  .hero-collage { min-height: 480px; }
  .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-card, .featured-card-large { grid-column: span 1; }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .occasion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .header-order { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  body.menu-open { overflow: hidden; }

  .hero-grid, .process-grid, .faq-grid, .final-grid, .section-heading { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; }
  .hero-collage { width: min(100%, 520px); margin-inline: auto; }
  .section-heading { gap: 12px; }
  .section-heading > p { max-width: 680px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(3), .trust-grid div:nth-child(4) { border-bottom: 0; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid, .faq-grid { gap: 40px; }
  .final-grid > img { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 7px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(2.55rem, 12vw, 3.7rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero { padding-top: 54px; }
  .hero-collage { min-height: 410px; }
  .hero-photo-main { inset: 24px 58px 20px 0; }
  .hero-photo-cookie { width: 138px; height: 138px; }
  .hero-photo-savory { width: 128px; height: 170px; }
  .hero-badge { width: 88px; height: 88px; font-size: 0.85rem; }
  .hero-badge strong { font-size: 1.05rem; }
  .hero-points { flex-direction: column; gap: 7px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { padding-left: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important; }
  .trust-grid div:last-child { border-bottom: 0 !important; }

  .featured-grid, .catalog-grid, .occasion-grid, .steps { grid-template-columns: 1fr; }
  .featured-card, .featured-card-large { max-width: 500px; width: 100%; margin-inline: auto; }
  .catalog-card { display: grid; grid-template-columns: 130px 1fr; }
  .catalog-image { aspect-ratio: auto; min-height: 100%; }
  .catalog-copy p { min-height: auto; }

  .offers-scroller { grid-auto-columns: 78%; }
  .process-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 180px; }
  .process-large { grid-column: 1 / 3; grid-row: auto; }
  .order-banner { flex-direction: column; align-items: flex-start; padding: 28px; }
  .final-cta { padding: 64px 0; }
  .final-grid > img { width: 210px; }

  .whatsapp-float { display: none; }
  .mobile-order-bar {
    position: sticky;
    bottom: 0;
    z-index: 82;
    display: block;
    padding: 11px 13px;
    background: rgba(255, 250, 244, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }
  .mobile-order-bar a {
    min-height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(32, 184, 90, 0.2);
    font-weight: 800;
    text-decoration: none;
  }
}

@media (max-width: 480px) {
  .brand strong { font-size: 1rem; }
  .brand img { width: 52px; height: 52px; }
  .hero-collage { min-height: 360px; }
  .hero-photo-main { right: 45px; }
  .hero-photo-cookie { width: 115px; height: 115px; }
  .hero-photo-savory { width: 110px; height: 150px; }
  .catalog-card { grid-template-columns: 112px 1fr; }
  .catalog-copy { padding: 16px; }
  .catalog-copy h3 { font-size: 1.13rem; }
  .catalog-copy p { display: none; }
  .offers-scroller { grid-auto-columns: 88%; }
}
