:root {
  --bg: #fbfaf6;
  --card: #ffffff;
  --text: #1f211c;
  --muted: #6f7469;
  --soft: #f5f1e8;
  --line: #ebe5d8;
  --green: #168344;
  --green-dark: #0f6f38;
  --green-soft: #edf8ef;
  --brown: #8f3b22;
  --brown-soft: #fff4ea;
  --shadow: 0 22px 70px rgba(31, 33, 28, 0.08);
  --shadow-soft: 0 12px 38px rgba(31, 33, 28, 0.05);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% -6%, rgba(22, 131, 68, 0.10), transparent 30%),
    radial-gradient(circle at 105% 12%, rgba(143, 59, 34, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31,33,28,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,33,28,0.028) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a { color: inherit; }
button { font: inherit; }

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  margin: 0 auto;
  padding: 18px 14px 104px;
}

.hero-card,
.quick-section {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 16px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill,
.share-mini {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.share-mini {
  cursor: pointer;
  color: var(--text);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 131, 68, 0.12);
}

.brand-area {
  text-align: center;
  padding: 18px 4px 8px;
}

.logo-frame {
  position: relative;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 44px rgba(31, 33, 28, .07);
  overflow: hidden;
}

.brand-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
}

.logo-fallback {
  display: none;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 25px;
  color: #fff;
  font-weight: 950;
  font-size: 32px;
  background: linear-gradient(135deg, var(--green), var(--brown));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 10vw, 58px);
  line-height: .95;
  letter-spacing: -0.055em;
}

.tagline {
  margin: 10px auto 0;
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

.intro {
  margin: 12px auto 0;
  max-width: 445px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 13px 0 4px;
}

.hero-badges span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.main-actions {
  display: grid;
  gap: 11px;
  margin-top: 16px;
}

.action-card {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.action-card:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 131, 68, .35);
  box-shadow: 0 14px 34px rgba(31,33,28,.08);
}

.action-card:active { transform: scale(.985); }
.action-whatsapp {
  border-color: rgba(22, 131, 68, .28);
  background: linear-gradient(135deg, #fff, var(--green-soft));
}

.action-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--soft);
  font-size: 23px;
}

.action-copy strong {
  display: block;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: -.018em;
}

.action-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
}

.quick-section {
  margin-top: 13px;
  padding: 18px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.section-head p {
  margin: 0 0 4px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.two-grid,
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.small-card,
.social-grid a,
.social-grid button,
.outline-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.small-card:hover,
.social-grid a:hover,
.social-grid button:hover,
.outline-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 131, 68, .34);
  box-shadow: 0 10px 28px rgba(31,33,28,.06);
}

.small-card {
  min-height: 118px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.small-card span { font-size: 24px; }
.small-card strong { display: block; margin-top: 10px; font-size: 15px; }
.small-card small { display: block; margin-top: 4px; color: var(--muted); font-size: 12.5px; line-height: 1.25; }

.product-list {
  display: grid;
  gap: 10px;
}

.product-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff, #fffdf8);
}

.product-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--brown-soft);
  font-size: 22px;
}

.product-item strong { display: block; font-size: 15.5px; }
.product-item small { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.32; }

.address-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14.5px;
}

.outline-btn {
  min-height: 48px;
  display: grid;
  place-items: center;
  margin-top: 14px;
  font-weight: 900;
}

.social-grid a,
.social-grid button {
  min-height: 52px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-weight: 850;
}

.footer-note {
  text-align: center;
  color: var(--muted);
  padding: 23px 10px 0;
}

.footer-note img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.footer-note p { margin: 5px 0 0; font-size: 13px; line-height: 1.4; }
.footer-note strong { color: var(--text); }
.footer-note .copyright { color: #8f9389; font-size: 12px; margin-top: 10px; }

.bottom-bar {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.88);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.bottom-bar a {
  width: min(100%, 540px);
  min-height: 55px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(22, 131, 68, .22);
}

@media (min-width: 760px) {
  .page-shell { padding-top: 34px; }
  .hero-card { padding: 22px; }
}

@media (max-width: 390px) {
  .page-shell { padding-left: 11px; padding-right: 11px; }
  .hero-card { padding: 13px; border-radius: 28px; }
  .logo-frame { width: 112px; height: 112px; border-radius: 28px; }
  .brand-logo { width: 100px; height: 100px; }
  h1 { font-size: 38px; }
  .two-grid, .social-grid { grid-template-columns: 1fr; }
  .small-card { min-height: 96px; }
}

/* Final touch: only button color accents + WhatsApp icon styling */
.whatsapp-icon {
  width: 23px;
  height: 23px;
  display: block;
}

.whatsapp-bubble {
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 24px rgba(37, 211, 102, .20);
}

.action-whatsapp {
  border-color: rgba(37, 211, 102, .36);
  background: linear-gradient(135deg, #ffffff 0%, #f1fff6 100%);
}

.action-whatsapp .arrow {
  background: #25d366;
  color: #ffffff;
}

.action-website {
  border-color: rgba(22, 131, 68, .18);
  background: linear-gradient(135deg, #ffffff 0%, #f4fff7 100%);
}

.action-website .action-icon {
  background: #edf8ef;
}

.action-location {
  border-color: rgba(143, 59, 34, .20);
  background: linear-gradient(135deg, #ffffff 0%, #fff7ef 100%);
}

.action-location .action-icon {
  background: #fff0e2;
}

.card-call {
  background: linear-gradient(135deg, #ffffff 0%, #f6fbff 100%);
  border-color: rgba(17, 91, 145, .14);
}

.card-whatsapp {
  background: linear-gradient(135deg, #ffffff 0%, #f1fff6 100%);
  border-color: rgba(37, 211, 102, .28);
}

.card-review {
  background: linear-gradient(135deg, #ffffff 0%, #fffbec 100%);
  border-color: rgba(226, 170, 41, .25);
}

.mini-whatsapp-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.direction-btn {
  color: #ffffff;
  border-color: rgba(143, 59, 34, .30);
  background: linear-gradient(135deg, #168344, #8f3b22);
  box-shadow: 0 12px 28px rgba(22, 131, 68, .14);
}

.social-instagram {
  background: linear-gradient(135deg, #ffffff 0%, #fff1f7 100%) !important;
  border-color: rgba(214, 41, 118, .22) !important;
}

.social-facebook {
  background: linear-gradient(135deg, #ffffff 0%, #f1f6ff 100%) !important;
  border-color: rgba(24, 119, 242, .22) !important;
}

.social-youtube {
  background: linear-gradient(135deg, #ffffff 0%, #fff1f1 100%) !important;
  border-color: rgba(255, 0, 0, .18) !important;
}

.social-share {
  background: linear-gradient(135deg, #ffffff 0%, #f4fff7 100%) !important;
  border-color: rgba(22, 131, 68, .22) !important;
}

.bottom-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.bottom-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
