:root {
  --green: #1E7A34;
  --green-dark: #14532D;
  --green-light: #EAF3EC;
  --navy: #0C2D52;
  --paper: #F7F8F6;
  --card: #fff;
  --line: #E4E7E1;
  --text: #1B1F23;
  --muted: #6B7268;
  --radius: 12px;
  --topbar-h: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, sans-serif;
  background: var(--paper);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ---------- top bar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
}
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--topbar-h);
}
.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand-mark { flex: none; width: 80px; height: 80px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 800; font-size: 1.75rem; color: var(--green-dark); white-space: nowrap; }
.brand-sub { font-weight: 700; font-size: 1rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.14em; }

.search-wrap {
  flex: 1;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border-radius: 10px;
  padding: 0 12px;
  color: var(--muted);
}
.search-wrap svg { flex: none; }
.search-wrap input {
  border: none;
  background: transparent;
  outline: none;
  padding: 8px 0;
  font-size: 0.9rem;
  width: 100%;
  color: var(--text);
  font-family: inherit;
}
.search-wrap input::placeholder { color: var(--muted); }

.search-row {
  background: #fff;
  padding: 4px 20px 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-toggle {
  margin-left: auto;
  flex: none;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.85rem;
}
#cartCount {
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  min-width: 18px;
  padding: 1px 5px;
  font-size: 0.72rem;
  text-align: center;
}

/* ---------- main nav ---------- */
.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 7px 20px;
  display: flex;
  justify-content: center;
  gap: 42px;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav a {
  flex: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--green-dark); border-bottom-color: var(--green); }

/* ---------- hero banner ---------- */
/* ---------- special occasion flyers ---------- */
.flyer-strip {
  margin-top: 8px;
}
.flyer-row {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
.flyer-item {
  flex: 1;
  min-width: 0;
  line-height: 0;
  display: block;
}
.flyer-item img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-banner { margin-top: 0; line-height: 0; }
.hero-banner img { width: 100%; height: auto; display: block; }

/* ---------- shop by category ---------- */
.shop-by-cat { max-width: 1150px; margin: 0 auto; padding: 26px 20px 6px; text-align: center; scroll-margin-top: 90px; }
.shop-by-cat h2 { font-size: 1.15rem; font-weight: 800; margin: 0 0 16px; position: relative; display: inline-block; }
.shop-by-cat h2::after {
  content: ""; display: block; width: 46px; height: 3px; background: var(--green);
  margin: 8px auto 0; border-radius: 2px;
}
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  padding: 10px 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-light);
  transition: border-color 0.15s, transform 0.15s;
}
.cat-tile:hover { border-color: var(--green); transform: translateY(-2px); }
.cat-tile-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.cat-tile-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--green-light);
}
.cat-tile-label { font-size: 0.76rem; font-weight: 700; text-align: center; line-height: 1.25; }
.view-all-btn { margin: 4px 0 8px; }

.cat-icon {
  font-size: 0.95rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-light);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.cat-heading-media {
  width: 34px; height: 34px; border-radius: 50%;
  object-fit: cover;
  background: var(--green-light);
  flex: none;
}

/* ---------- catalogue ---------- */
.catalogue { max-width: 1150px; margin: 0 auto; padding: 8px 20px 30px; }

.cat-section { padding: 22px 0 4px; scroll-margin-top: 130px; }
.cat-section h2 {
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  background: var(--green-light);
  padding: 10px 16px;
  border-radius: 10px;
}

.no-results { text-align: center; color: var(--muted); padding: 40px 20px; font-size: 0.9rem; }

.back-to-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  margin: 12px 0 4px;
}
.back-to-all:hover { text-decoration: underline; }

/* ---------- announcements ticker ---------- */
.ticker {
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 50%, #2E9E4F 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(20,83,45,0.28);
}
.ticker-label {
  flex: none;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0 16px 0 20px;
  border-right: 1px solid rgba(255,255,255,0.28);
  white-space: nowrap;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}
.ticker-content {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 55s linear infinite;
  padding-right: 40px;
  font-size: 0.8rem;
}
.ticker-content span { padding: 0 20px; }
.ticker-truck {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  object-fit: contain;
  vertical-align: middle;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (max-width: 640px) {
  .ticker-content { animation-duration: 75s; font-size: 0.76rem; }
  .ticker-content span { padding: 0 14px; }
  .ticker-truck { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-content { animation: none; }
}

/* ---------- promotions strip ---------- */
.promo-strip {
  max-width: 1150px;
  margin: 14px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.promo-strip::-webkit-scrollbar { display: none; }
.promo-card {
  flex: none;
  width: 340px;
  background: var(--green-light);
  color: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  text-decoration: none;
  scroll-snap-align: start;
}
.promo-media { width: 128px; flex: none; background: rgba(20,83,45,0.06); }
.promo-media img { width: 100%; height: 100%; object-fit: cover; }
.promo-media-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; min-height: 108px; }
.promo-body { padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.promo-title { font-weight: 800; font-size: 0.94rem; margin: 0; color: #000; line-height: 1.3; }
.promo-desc { font-size: 0.78rem; color: var(--muted); margin: 0; line-height: 1.4; }

/* ---------- how to order ---------- */
.how {
  max-width: 1150px;
  margin: 28px auto 0;
  padding: 28px 20px;
  scroll-margin-top: 90px;
  text-align: center;
  position: relative;
}
.how h2 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--green-dark);
  margin: 0 0 28px;
}
.how-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.how-step {
  flex: 0 1 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.how-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}
.how-step-label { font-size: 0.86rem; font-weight: 800; color: var(--text); margin: 0 0 4px; text-transform: uppercase; letter-spacing: 0.03em; }
.how-step-desc { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.5; }
.how-arrow {
  flex: none;
  align-self: center;
  font-size: 1.4rem;
  color: var(--line);
  margin-top: 23px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.product-card.in-cart { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-light); }

.product-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--green-light);
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.product-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.product-name {
  font-weight: 600;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
  min-height: 2.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-meta { margin: 2px 0 8px; font-size: 0.78rem; color: var(--muted); }
.product-meta .mrp { color: var(--muted); opacity: 0.6; margin-left: 4px; font-size: 0.72rem; }
.price-tba { font-style: italic; }

.qty-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--green-light);
  border-radius: 999px;
  padding: 4px 6px;
  margin-top: auto;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--green-dark);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}
.qty-btn:disabled { background: #C6CBC4; }
.qty-val { min-width: 16px; text-align: center; font-weight: 700; font-size: 0.88rem; }

/* ---------- about ---------- */
.about { max-width: 1150px; margin: 20px auto 0; padding: 0 20px; scroll-margin-top: 90px; }
.about h2 { font-size: 1.15rem; font-weight: 800; margin: 0 0 12px; color: var(--green-dark); }
.about-lead { color: var(--muted); margin: 0 0 16px; font-size: 0.9rem; line-height: 1.55; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  grid-template-areas: "intro photo why" "cta photo why";
  gap: 24px 28px;
  align-items: start;
}
.about-col { min-width: 0; }
.about-intro { grid-area: intro; }
.about-photo-col { grid-area: photo; align-self: center; }
.about-cta { grid-area: cta; align-self: start; }
.about-why { grid-area: why; }

.about-checklist { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.about-checklist li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 26px;
  position: relative;
}
.about-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: -1px;
  width: 18px; height: 18px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  font-size: 0.68rem;
  display: flex; align-items: center; justify-content: center;
}
.about-btn { font-size: 0.82rem; padding: 11px 20px; }

.about-photo-col { display: flex; justify-content: center; }
.about-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1.05;
  border-radius: 46% 46% 42% 42% / 50% 50% 46% 46%;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-why { display: flex; flex-direction: column; }
.why-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.why-item:last-child { margin-bottom: 0; }
.why-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.why-item strong { display: block; font-size: 0.88rem; color: var(--text); margin-bottom: 2px; }
.why-item p { margin: 0; font-size: 0.78rem; color: var(--muted); }

.about-address { margin: 24px 0 0; font-size: 0.82rem; color: var(--muted); text-align: center; }

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "photo" "cta" "why";
  }
  .about-photo { max-width: 220px; margin: 0 auto; }
}

/* ---------- address / facilities / service area cards ---------- */
.info-cards { max-width: 1150px; margin: 24px auto 0; padding: 0 20px; }
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.info-card-label { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text); font-weight: 800; margin: 0 0 10px; }
.info-card p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: var(--text); }
.info-card-list { margin: 0; padding-left: 18px; font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.info-card-list li { margin-bottom: 6px; }

/* ---------- contact ---------- */
.contact { max-width: 1150px; margin: 24px auto 0; padding: 0 20px; scroll-margin-top: 90px; }
.contact h2 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  max-width: 520px;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: block; font-size: 0.76rem; font-weight: 700; color: var(--muted); margin: 12px 0 4px; }
.contact-form label:first-child, .contact-grid label { margin-top: 0; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 0.86rem;
  resize: vertical;
}
.contact-form button { margin-top: 14px; }
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: #D6E5D9;
  margin-top: 26px;
  padding-bottom: 76px;
}
.footer-top {
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 20px 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 32px;
}
.footer-col { min-width: 0; }
.footer-brand p { color: #B9D0BE; line-height: 1.55; max-width: 32ch; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { width: 40px; height: 40px; object-fit: contain; }

.footer-label { color: #9FC3A9; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin: 0 0 12px; }
.footer-label-spaced { margin-top: 16px; }
.site-footer a { color: #fff; font-weight: 700; text-decoration: none; }
.site-footer p { margin: 4px 0; font-size: 0.86rem; color: #C7DBCB; }
.brand-name.small { font-weight: 800; color: #fff; font-size: 1.05rem; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-weight: 500; color: #D6E5D9; font-size: 0.87rem; transition: color 0.15s; }
.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-detail-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #D6E5D9;
}
.footer-detail-link:hover { color: #fff; text-decoration: underline; }
.footer-detail-link svg { flex: none; opacity: 0.8; }

.contact-btns { display: flex; flex-direction: column; gap: 8px; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  width: fit-content;
}
.contact-btn.whatsapp { background: #fff; color: var(--green-dark); }
.contact-btn.whatsapp:hover { background: #EFFBF2; }
.contact-btn.call { background: rgba(255,255,255,0.14); color: #fff; }
.contact-btn.call:hover { background: rgba(255,255,255,0.22); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: 1150px;
  margin: 0 auto;
  padding: 18px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { margin: 0; font-size: 0.78rem; color: #9FC3A9; }

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,20,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
  z-index: 40;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 92vw);
  background: #fff;
  z-index: 50;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -8px 0 24px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.cart-title { font-weight: 800; font-size: 0.95rem; margin: 0; }
#cartClose { background: none; border: none; font-size: 1.4rem; color: var(--muted); line-height: 1; }

.cart-items { flex: 1; overflow-y: auto; padding: 12px 18px; }
.cart-empty { color: var(--muted); font-size: 0.86rem; text-align: center; padding: 30px 0; }

.cart-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F1F3EF;
  gap: 10px;
}
.cart-row-name { font-weight: 600; font-size: 0.85rem; margin: 0; }
.cart-row-meta { font-size: 0.78rem; color: var(--muted); margin: 2px 0 0; }
.cart-row-remove { background: none; border: none; font-size: 1.2rem; color: var(--muted); flex: none; }

.cart-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0 4px;
  font-size: 0.88rem;
}
.cart-note { font-size: 0.74rem; color: var(--muted); margin: 4px 0 0; }

.cart-foot { padding: 14px 18px; border-top: 1px solid var(--line); }
.cart-foot label { display: block; font-size: 0.76rem; font-weight: 700; color: var(--muted); margin: 10px 0 4px; }
.cart-foot label:first-child { margin-top: 0; }
.cart-foot input, .cart-foot textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 0.86rem;
  resize: vertical;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
}
.btn-primary { background: var(--green-dark); color: #fff; }
.btn-primary:disabled { background: #C6CBC4; cursor: not-allowed; }
.btn-ghost { background: var(--green-light); color: var(--green-dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 7px 12px; font-size: 0.8rem; }

/* ---------- install toast ---------- */
/* ---------- floating whatsapp button ---------- */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  z-index: 35;
  transition: transform 0.15s;
}
.whatsapp-fab:hover { transform: scale(1.07); }
.whatsapp-fab:active { transform: scale(0.97); }

.install-toast {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 45;
  display: none;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.install-toast.show { display: flex; }
.install-toast span { font-size: 0.86rem; }
.install-toast div { display: flex; gap: 8px; }

/* ---------- responsive ---------- */
@media (max-width: 640px) {
  .topbar { flex-wrap: wrap; height: auto; padding: 10px 14px; gap: 10px 12px; }
  .search-row { padding: 6px 14px 8px; }
  .main-nav { padding: 8px 14px; gap: 18px; justify-content: flex-start; }
  .catalogue { padding: 8px 14px 24px; }
  .how { margin: 20px 14px 0; padding: 22px 0 22px 16px; }
  .how-flow {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 16px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .how-flow::-webkit-scrollbar { display: none; }
  .how-step {
    flex: none;
    width: 150px;
    scroll-snap-align: start;
  }
  .how-icon { width: 58px; height: 58px; font-size: 1.6rem; }
  .how-arrow { display: flex; align-items: center; margin-top: 23px; }
  .how::after {
    content: "";
    position: absolute;
    top: 78px; bottom: 6px; right: 0;
    width: 36px;
    background: linear-gradient(to right, rgba(247,248,246,0), var(--paper));
    pointer-events: none;
  }
  .cat-tiles { grid-template-columns: repeat(3, 1fr); }
}
