
:root {
  --ink: #241f1a;
  --muted: #675d53;
  --paper: #fffdfa;
  --cream: #fff3cd;
  --sun: #f8b83f;
  --orange: #ee8122;
  --brown: #6f4b31;
  --green: #2f6f63;
  --mint: #d9f0e9;
  --line: rgba(36, 31, 26, 0.14);
  --shadow: 0 22px 60px rgba(36, 31, 26, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-inter), Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

:focus-visible {
  outline: 4px solid rgba(47, 111, 99, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  background: white;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid var(--cream);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1;
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav nav,
.social-links,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav nav a,
.social-links a,
.contact-list a,
.contact-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.45rem;
  border-radius: var(--radius);
  padding: 0.62rem 0.78rem;
  text-decoration: none;
  font-weight: 800;
}

.nav nav a:hover,
.social-links a:hover,
.contact-list a:hover {
  background: var(--mint);
}

.hero,
.guide-band,
.proof-band,
.faq-band {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.hero {
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-grid,
.two-column,
.partner-grid,
.search-grid,
.faq-layout,
.social-grid,
.store-layout,
.footer-grid,
.product-detail {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
}

.hero-grid {
  min-height: min(620px, calc(100vh - 78px));
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: 4.9rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.hero-actions,
.guide-actions,
.product-actions,
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.75rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: 0.3rem 0.55rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cream);
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.section-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.button .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.button-primary {
  background: var(--green);
  color: white;
}

.button-primary:hover {
  background: #24594f;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: white;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-outline,
.button-ghost {
  border-color: var(--line);
  background: white;
}

.button-outline:hover,
.button-ghost:hover {
  background: var(--mint);
}

.search-panel,
.partners-band,
.social-band {
  padding: clamp(2.8rem, 6vw, 4.8rem) 0;
  background: #f6faf8;
}

.search-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
}

.search-box,
.checklist-card,
.cart-panel,
.partner-form,
.testimonial,
.product-card,
.product-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.search-box,
.checklist-card,
.cart-panel,
.partner-form,
.product-info {
  padding: clamp(1rem, 3vw, 1.5rem);
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 0.86rem 0.9rem;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.search-control {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0.8rem;
  background: white;
}

.search-control input {
  border: 0;
  padding-inline: 0;
}

.result-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.result-list a {
  display: grid;
  gap: 0.1rem;
  border-left: 4px solid var(--sun);
  border-radius: var(--radius);
  background: #fff8e6;
  padding: 0.82rem 0.9rem;
  text-decoration: none;
}

.result-list span,
.cart-item span {
  color: var(--muted);
}

.two-column {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  align-items: start;
}

.checklist-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
}

.checklist-card svg {
  color: var(--green);
  margin-top: 0.2rem;
}

.store-band {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, white, #fff8e8);
}

.store-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  align-items: start;
}

.store-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 0.25fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.store-tools label {
  font-size: 0.9rem;
}

.store-tools select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 0.72rem 0.8rem;
}

.store-search-control {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0 0.75rem;
}

.store-search-control input {
  border: 0;
  padding-inline: 0;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.chip {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 0.42rem 0.68rem;
  font-weight: 850;
  cursor: pointer;
}

.chip:hover,
.chip.is-active {
  background: var(--mint);
  border-color: rgba(47, 111, 99, 0.35);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.product-card {
  overflow: hidden;
}

.product-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-body {
  display: grid;
  gap: 0.48rem;
  padding: 0.78rem;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-body h3 {
  font-size: 1.02rem;
}

.tag,
.cart-count {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--brown);
  padding: 0.3rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.price {
  color: var(--green);
  font-size: 1.08rem;
}

.product-card .button {
  min-height: 38px;
  padding: 0.55rem 0.68rem;
  font-size: 0.9rem;
}

.store-empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--muted);
  padding: 1rem;
  text-align: center;
}

.cart-panel {
  position: sticky;
  top: 96px;
}

.cart-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-heading h2 {
  font-size: 1.5rem;
}

.empty-cart {
  color: var(--muted);
}

.cart-list {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.quantity-controls button,
.icon-button {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
}

.quantity-controls button:hover,
.icon-button:hover {
  background: var(--mint);
}

.cart-summary {
  display: grid;
  gap: 0.45rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.cart-summary p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
}

.cart-summary .total {
  color: var(--green);
  font-size: 1.16rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial {
  margin: 0;
  padding: 1.2rem;
}

.testimonial blockquote {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.testimonial figcaption {
  color: var(--muted);
  font-weight: 850;
}

.partner-showcase {
  display: grid;
  gap: 1.25rem;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.partner-showcase-head {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.approved-ong-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.approved-ong-card {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  min-height: 260px;
  border: 1px solid rgba(31, 36, 32, 0.1);
  border-radius: var(--radius);
  background: white;
  padding: 1rem;
  box-shadow: 0 16px 38px rgba(31, 36, 32, 0.08);
}

.approved-ong-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.approved-ong-logo {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green);
}

.approved-ong-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approved-ong-badge,
.approved-ong-focus {
  display: inline-flex;
  width: fit-content;
  border-radius: var(--radius);
  padding: 0.28rem 0.52rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.approved-ong-badge {
  background: var(--cream);
  color: var(--brown);
}

.approved-ong-focus {
  background: var(--mint);
  color: var(--green);
}

.approved-ong-card h3 {
  font-size: 1.2rem;
}

.approved-ong-card p {
  margin: 0;
  color: var(--muted);
}

.approved-ong-location,
.approved-ong-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--green);
  font-weight: 900;
}

.partner-interest {
  padding-top: clamp(1.6rem, 4vw, 2.6rem);
}

.partner-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  align-items: start;
}

.contact-list {
  margin-top: 1.2rem;
}

.contact-list a,
.contact-list span,
.social-links a {
  border: 1px solid var(--line);
  background: white;
}

.partner-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.full-field,
.partner-form button {
  grid-column: 1 / -1;
}

.faq-layout {
  grid-template-columns: 0.6fr 1fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 1rem;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.social-grid {
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: white;
}

.footer-grid {
  grid-template-columns: 1fr auto minmax(220px, 0.7fr);
  align-items: start;
}

.site-footer img {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  object-fit: cover;
}

.site-footer strong {
  display: block;
  margin-top: 0.8rem;
}

.site-footer p,
.footer-note {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer nav {
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: white;
  font-weight: 800;
}

.product-page {
  background: linear-gradient(180deg, #f6faf8, white 42%);
}

.page-section {
  padding: clamp(2.5rem, 6vw, 4.8rem) 0;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.product-detail {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: start;
}

.product-detail > img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.product-info {
  display: grid;
  gap: 1rem;
}

.product-info h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.04;
}

.product-info p {
  color: var(--muted);
}

.product-info ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.1rem;
}

.guide-list {
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
}

.guide-list svg {
  color: var(--green);
  margin-top: 0.2rem;
}

.guide-upgrade {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff8e6, #eaf6f2);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.guide-upgrade p {
  max-width: 680px;
}

.notice {
  border-left: 6px solid var(--sun);
  border-radius: var(--radius);
  background: #fff5d8;
  padding: 1rem;
}

.network-band {
  padding: clamp(3rem, 7vw, 5.6rem) 0;
  background: linear-gradient(180deg, #f6faf8, #fffdf9);
}

.network-heading,
.story-grid,
.network-layout,
.network-lower {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.network-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.network-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0;
}

.network-metrics span,
.network-status,
.network-form,
.alert-list-panel,
.poster-panel,
.sighting-feed,
.app-card,
.member-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.network-metrics span {
  display: grid;
  min-height: 88px;
  align-content: center;
  padding: 0.85rem;
  color: var(--muted);
  font-weight: 850;
}

.network-metrics strong {
  color: var(--green);
  font-size: 1.9rem;
  line-height: 1;
}

.network-status {
  margin: 0 0 1rem;
  border-left: 5px solid var(--sun);
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-weight: 850;
}

.network-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  align-items: start;
}

.network-side,
.network-lower,
.app-alert-list,
.app-panel {
  display: grid;
  gap: 1rem;
}

.network-lower {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(260px, 0.5fr);
  align-items: start;
  margin-top: 1rem;
}

.network-form,
.alert-list-panel,
.poster-panel,
.sighting-feed {
  padding: clamp(1rem, 3vw, 1.2rem);
}

.network-form {
  display: grid;
  gap: 0.9rem;
}

.network-form.compact textarea {
  min-height: 92px;
}

.form-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.form-title svg {
  color: var(--green);
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6faf8;
  padding: 0.25rem;
}

.segmented-control button {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.segmented-control button[aria-pressed="true"] {
  background: var(--green);
  color: white;
}

.compact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-actions,
.story-actions,
.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.alert-list-panel,
.poster-panel {
  display: grid;
  gap: 0.9rem;
}

.photo-preview {
  width: min(180px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6faf8;
}

.photo-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.map-canvas,
.app-map {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(47, 111, 99, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(47, 111, 99, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(47, 111, 99, 0.08) 1px, transparent 1px),
    #eaf6f2;
  background-size: 44px 44px;
}

.map-canvas::before,
.app-map::before {
  position: absolute;
  inset: 18%;
  border: 12px solid rgba(248, 184, 63, 0.58);
  border-left: 0;
  border-right: 0;
  border-radius: 40% 60% 45% 55%;
  content: "";
  transform: rotate(-12deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid white;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 24px rgba(36, 31, 26, 0.18);
}

.map-pin.found {
  background: var(--green);
}

.case-list {
  display: grid;
  gap: 0.75rem;
}

.case-item {
  display: grid;
  gap: 0.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0.75rem;
  color: var(--ink);
  text-align: left;
}

.alert-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.42fr);
  gap: 0.65rem;
}

.alert-filters select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 0.86rem 0.9rem;
}

.case-result-count {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.case-card {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
}

.case-card img,
.case-photo-fallback {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
}

.case-card img {
  object-fit: cover;
}

.case-photo-fallback {
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
}

.case-card p {
  display: -webkit-box;
  margin: 0.25rem 0 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted);
}

.case-type {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.15rem;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--brown);
  padding: 0.22rem 0.45rem;
  font-size: 0.76rem;
  font-weight: 900;
}

.case-card[data-type="found"] .case-type {
  background: var(--mint);
  color: var(--green);
}

.case-card[data-type="sighting"] .case-type {
  background: var(--sky);
  color: #315a86;
}

.case-item:hover,
.case-item.is-active {
  border-color: rgba(47, 111, 99, 0.35);
  background: var(--mint);
}

.case-item span,
.case-item small,
.feed-item small,
.app-alert span,
.app-alert small {
  color: var(--muted);
  font-weight: 800;
}

.poster-preview {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  border: 8px solid #ef5d5d;
  border-radius: var(--radius);
  background: #e7f6f3;
  padding: 1rem;
  text-align: center;
}

.poster-preview > strong {
  color: #ef5d5d;
  font-size: 2.6rem;
  line-height: 1;
}

.poster-preview h4 {
  margin: 0;
  color: var(--green);
  font-size: 1.7rem;
}

.poster-preview p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.poster-preview span {
  border-radius: var(--radius);
  background: var(--sun);
  padding: 0.35rem 0.65rem;
  font-weight: 900;
}

.poster-photo {
  display: grid;
  width: min(100%, 250px);
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.poster-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-item {
  display: grid;
  gap: 0.18rem;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: #f6faf8;
  padding: 0.72rem;
}

.story-band {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: white;
}

.story-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: center;
}

.story-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.mobile-app-shell {
  min-height: 100vh;
  background: #f6faf8;
}

.app-hero {
  padding: clamp(1.2rem, 5vw, 2.5rem) 1rem 7rem;
  background:
    linear-gradient(90deg, rgba(36, 31, 26, 0.82), rgba(36, 31, 26, 0.48)),
    url("/images/morcega-reencontro.png");
  background-position: center;
  background-size: cover;
  color: white;
}

.app-hero-copy {
  width: min(100%, 960px);
  margin-inline: auto;
}

.app-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 3.6rem;
  line-height: 1;
}

.app-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
}

.app-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 900;
  text-decoration: none;
}

.construction-shell {
  min-height: 100vh;
  background: #f6faf8;
}

.construction-hero {
  min-height: 100vh;
  padding: clamp(1.2rem, 5vw, 2.5rem) 1rem;
  background:
    linear-gradient(90deg, rgba(36, 31, 26, 0.82), rgba(36, 31, 26, 0.46)),
    url("/images/morcega-reencontro.png");
  background-position: center;
  background-size: cover;
  color: white;
}

.construction-hero > .app-back {
  width: min(100%, 960px);
  margin-inline: auto;
}

.construction-panel {
  width: min(100%, 760px);
  margin: clamp(3rem, 10vh, 7rem) auto 0;
}

.construction-icon {
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.construction-panel h1 {
  max-width: 720px;
  margin: 0;
  font-size: 5.6rem;
  line-height: 0.95;
}

.construction-panel p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.construction-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 620px;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  padding: 0.8rem 1rem;
  color: white;
  font-weight: 850;
}

.app-phone {
  width: min(calc(100% - 1rem), 520px);
  margin: -5.4rem auto 0;
  border: 1px solid rgba(36, 31, 26, 0.16);
  border-radius: 28px 28px 0 0;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(36, 31, 26, 0.22);
  padding: 0.75rem;
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  position: sticky;
  top: 0.5rem;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  padding: 0.35rem;
}

.app-tabs button {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.app-tabs button[aria-pressed="true"] {
  background: var(--green);
  color: white;
}

.app-status,
.app-location {
  border-radius: var(--radius);
  background: #fff5d8;
  padding: 0.75rem;
  color: var(--brown);
  font-weight: 850;
}

.app-panel {
  padding: 1rem 0.15rem 1.2rem;
}

.sos-button {
  display: grid;
  min-height: 168px;
  place-items: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 26px;
  background: #ef5d5d;
  color: white;
  font-size: 1.65rem;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(239, 93, 93, 0.28);
}

.app-card,
.member-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.app-card h2,
.member-card h2,
.app-section-heading h2 {
  font-size: 1.25rem;
}

.app-checklist {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
}

.app-checklist svg,
.member-card svg,
.member-grid svg {
  color: var(--green);
}

.app-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.app-section-heading span {
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green);
  padding: 0.35rem 0.55rem;
  font-weight: 900;
}

.app-alert {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0.7rem;
}

.app-alert strong,
.app-alert small,
.app-alert span {
  display: block;
}

.app-alert-image {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green);
}

.app-alert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-map {
  min-height: 320px;
}

.app-sighting {
  margin-top: 1rem;
}

.member-card {
  justify-items: start;
  background: linear-gradient(135deg, white, #eaf6f2);
}

.member-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.member-grid span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0.85rem;
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .search-grid,
  .store-layout,
  .partner-grid,
  .partner-showcase-head,
  .faq-layout,
  .social-grid,
  .footer-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-media {
    max-width: 420px;
  }

  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.85rem 0;
  }

  .hero {
    background-position: center top;
  }

  .partner-form {
    grid-template-columns: 1fr;
  }

  .button,
  .product-actions .button,
  .cart-actions .button {
    width: 100%;
  }

  .store-tools {
    grid-template-columns: 1fr;
  }

  .approved-ong-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

.store-layout-upgraded {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
}

.store-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.store-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: end;
}

.store-kpis span {
  display: grid;
  min-width: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0.72rem 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.store-kpis strong {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
}

.store-filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.6fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 0.85rem;
  box-shadow: 0 14px 32px rgba(36, 31, 26, 0.08);
}

.store-filter-panel label {
  min-width: 0;
  font-size: 0.84rem;
}

.store-filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 0.78rem 0.82rem;
}

.filter-label,
.store-results-bar span,
.stock-pill,
.sku-line,
.old-price {
  display: inline-flex;
  align-items: center;
}

.filter-label {
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.store-results-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.store-results-bar span {
  gap: 0.4rem;
  color: var(--muted);
  font-weight: 850;
}

.product-grid-upgraded {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.product-card-upgraded {
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.product-card-upgraded:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(36, 31, 26, 0.14);
}

.product-card-upgraded .product-image {
  position: relative;
  overflow: hidden;
  background: #f6faf8;
  text-decoration: none;
}

.product-card-upgraded .product-image img {
  aspect-ratio: 1 / 0.86;
  transition: transform 0.22s ease;
}

.product-card-upgraded:hover .product-image img {
  transform: scale(1.03);
}

.promo-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  border-radius: var(--radius);
  background: var(--orange);
  color: white;
  padding: 0.32rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.stock-pill {
  gap: 0.3rem;
  border: 1px solid rgba(47, 111, 99, 0.22);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green);
  padding: 0.28rem 0.48rem;
  font-size: 0.76rem;
  font-weight: 900;
}

.sku-line {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-stack {
  display: grid;
  gap: 0.1rem;
}

.old-price {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: line-through;
}

.cart-panel-upgraded {
  display: grid;
  gap: 1rem;
}

.cart-panel-upgraded .cart-list {
  max-height: 44vh;
  overflow: auto;
  padding-right: 0.2rem;
}

.cart-panel-upgraded .cart-item {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: start;
}

.cart-panel-upgraded .cart-item img {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.product-detail-upgraded {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 0.85rem;
}

.product-main-image {
  display: grid;
  min-height: 440px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6faf8;
  box-shadow: var(--shadow);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}

.product-main-image span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 850;
}

.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-thumbs button {
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: white;
  padding: 0;
  cursor: pointer;
}

.product-thumbs button.is-active {
  border-color: var(--green);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-meta-row,
.product-price-row,
.product-code {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.product-code {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-spec-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.product-spec-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  color: var(--muted);
}

.product-spec-list svg {
  color: var(--green);
  margin-top: 0.2rem;
}

.related-products {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.related-products h2 {
  font-size: 1.75rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.related-card {
  display: grid;
  gap: 0.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding-bottom: 0.8rem;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(36, 31, 26, 0.08);
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.related-card span,
.related-card strong,
.related-card small {
  margin-inline: 0.8rem;
}

.related-card span,
.related-card small {
  color: var(--muted);
  font-weight: 800;
}

.product-not-found {
  display: grid;
  gap: 0.8rem;
}

@media (max-width: 1040px) {
  .store-layout-upgraded,
  .product-detail-upgraded,
  .store-filter-panel,
  .store-heading {
    grid-template-columns: 1fr;
  }

  .store-kpis {
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .cart-panel-upgraded .cart-item {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .cart-panel-upgraded .cart-item img {
    width: 44px;
    height: 44px;
  }

  .product-main-image {
    min-height: 280px;
  }
}

@media (max-width: 980px) {
  .network-heading,
  .network-layout,
  .network-lower,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .network-heading {
    align-items: start;
  }

  .network-heading .button {
    width: fit-content;
  }

  .network-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .network-metrics,
  .compact-fields {
    grid-template-columns: 1fr;
  }

  .form-actions .button,
  .story-actions .button,
  .network-heading .button,
  .app-actions .button {
    width: 100%;
  }

  .app-phone {
    width: min(calc(100% - 0.5rem), 520px);
    border-radius: 22px 22px 0 0;
  }

  .app-tabs button {
    min-height: 52px;
  }

  .app-alert {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .app-alert-image {
    width: 52px;
    height: 52px;
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  .poster-preview,
  .poster-preview * {
    visibility: visible;
  }

  .poster-preview {
    position: fixed;
    inset: 1rem;
    width: auto;
    height: auto;
    box-shadow: none;
  }
}

/* v2 visual polish */
:root {
  --ink: #1f2420;
  --muted: #59635c;
  --paper: #fffdf8;
  --surface: #ffffff;
  --cream: #fff0bf;
  --sun: #f6b64a;
  --orange: #df7045;
  --brown: #6b513d;
  --green: #246a5b;
  --green-dark: #164a40;
  --mint: #dff4eb;
  --sky: #e9f3ff;
  --line: rgba(31, 36, 32, 0.13);
  --shadow: 0 18px 50px rgba(31, 36, 32, 0.11);
  --shadow-strong: 0 26px 70px rgba(31, 36, 32, 0.18);
}

body {
  background:
    linear-gradient(180deg, #f7fbf6 0, var(--paper) 520px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

.site-header {
  border-bottom-color: rgba(31, 36, 32, 0.1);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 34px rgba(31, 36, 32, 0.06);
}

.nav {
  min-height: 72px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-color: rgba(246, 182, 74, 0.48);
}

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

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

.nav nav a {
  min-height: 38px;
  padding: 0.5rem 0.68rem;
  color: #273029;
  font-size: 0.92rem;
}

.nav nav a[href="#alerta"] {
  background: var(--green);
  color: white;
}

.nav nav a[href="#alerta"]:hover {
  background: var(--green-dark);
}

.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.2rem) 0 clamp(4rem, 9vw, 6.8rem);
  background-position: center;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.94));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: min(670px, calc(100vh - 72px));
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.hero-copy h1 {
  max-width: 760px;
  text-wrap: balance;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
}

.hero-actions .button {
  min-width: 150px;
}

.button {
  min-height: 44px;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green);
  box-shadow: 0 12px 24px rgba(36, 106, 91, 0.18);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-outline,
.button-ghost {
  background: rgba(255, 255, 255, 0.94);
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-strong);
}

.hero-media img {
  aspect-ratio: 0.92;
}

.quick-actions {
  position: relative;
  z-index: 3;
  margin-top: -2.2rem;
  padding-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.quick-actions a {
  display: grid;
  min-height: 112px;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 0.75rem;
  border: 1px solid rgba(31, 36, 32, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: 1rem;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(31, 36, 32, 0.12);
}

.quick-actions a:hover {
  border-color: rgba(36, 106, 91, 0.35);
  background: #fafffb;
}

.quick-actions span {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  place-items: center;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green);
}

.quick-actions strong,
.quick-actions small {
  min-width: 0;
}

.quick-actions strong {
  align-self: end;
  line-height: 1.1;
}

.quick-actions small {
  align-self: start;
  color: var(--muted);
  font-weight: 800;
}

.search-panel,
.partners-band,
.social-band {
  background: #f3faf6;
}

.search-grid {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.search-box,
.checklist-card,
.cart-panel,
.partner-form,
.testimonial,
.product-card,
.product-info,
.network-form,
.alert-list-panel,
.poster-panel,
.sighting-feed,
.network-metrics span {
  border-color: rgba(31, 36, 32, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

input,
textarea,
select {
  border-color: rgba(31, 36, 32, 0.16);
  background: #fffefb;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(36, 106, 91, 0.48);
  outline: 3px solid rgba(36, 106, 91, 0.13);
}

.result-list a {
  border-left-color: var(--green);
  background: linear-gradient(90deg, #eef9f4, white);
}

.network-band {
  background:
    linear-gradient(180deg, #f3faf6, #fffdf8 62%),
    var(--paper);
}

.network-heading {
  align-items: center;
}

.network-heading h2,
.store-heading h2,
.guide-band h2,
.partners-band h2,
.proof-band h2,
.faq-band h2 {
  text-wrap: balance;
}

.network-metrics {
  gap: 0.65rem;
}

.network-metrics span {
  min-height: 98px;
  border-top: 4px solid var(--green);
}

.network-layout {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
}

.network-form,
.alert-list-panel,
.poster-panel,
.sighting-feed {
  box-shadow: 0 16px 44px rgba(31, 36, 32, 0.09);
}

.form-title h3 {
  font-size: 1.12rem;
}

.segmented-control {
  background: #eef7f2;
}

.compact-fields {
  gap: 0.65rem;
}

.case-item {
  min-height: 74px;
}

.poster-preview {
  border-color: #d95647;
  background: linear-gradient(180deg, #f9fffb, #e7f6f3);
}

.guide-band {
  background: linear-gradient(180deg, #fffdf8, #fbf3df);
}

.checklist-card {
  border-top: 4px solid var(--sun);
}

.story-band {
  background: white;
}

.story-grid img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}

.store-band {
  background:
    linear-gradient(180deg, #fffdf8 0, #f7f0dd 100%);
}

.store-layout-upgraded {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
}

.store-filter-panel {
  position: sticky;
  top: 86px;
  z-index: 2;
  border-color: rgba(31, 36, 32, 0.1);
  box-shadow: 0 16px 38px rgba(31, 36, 32, 0.09);
}

.category-chips {
  gap: 0.5rem;
}

.chip {
  min-height: 38px;
  background: rgba(255, 255, 255, 0.92);
}

.chip.is-active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.product-grid-upgraded {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1rem;
}

.product-card-upgraded {
  border-color: rgba(31, 36, 32, 0.1);
  box-shadow: 0 14px 34px rgba(31, 36, 32, 0.08);
}

.product-card-upgraded .product-image img {
  aspect-ratio: 4 / 3.15;
}

.product-body {
  gap: 0.58rem;
  padding: 1rem;
}

.product-body h3 {
  min-height: 2.4em;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.price {
  color: var(--green-dark);
}

.cart-panel-upgraded {
  position: sticky;
  top: 86px;
  border-top: 4px solid var(--green);
  box-shadow: var(--shadow);
}

.cart-count {
  background: var(--green);
}

.cart-item button,
.quantity-controls button,
.icon-button {
  cursor: pointer;
}

.testimonial {
  border-top: 4px solid var(--sun);
}

.partner-form {
  border-top: 4px solid var(--green);
}

.site-footer {
  background: #1e2b25;
}

.mobile-action-bar {
  display: none;
}

.product-page {
  background:
    linear-gradient(180deg, #f3faf6, #fffdf8 42%),
    var(--paper);
}

.product-main-image {
  background: linear-gradient(135deg, #f6faf8, #fff5d8);
}

.construction-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(22, 74, 64, 0.86), rgba(31, 36, 32, 0.48)),
    url("/images/morcega-reencontro.png");
  background-position: center;
  background-size: cover;
}

.construction {
  width: min(calc(100% - 2rem), 760px);
  margin-inline: auto;
  padding-top: clamp(2rem, 12vh, 7rem);
  color: white;
}

.construction h1 {
  font-size: 5.8rem;
  line-height: 0.95;
}

.construction p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  color: white;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .quick-actions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-filter-panel,
  .cart-panel-upgraded {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav {
    align-items: start;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.75rem 0;
  }

  .nav nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero-grid,
  .search-grid,
  .two-column,
  .partner-grid,
  .faq-layout,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 460px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .nav {
    min-height: 0;
    align-items: flex-start;
    gap: 0.65rem;
    overflow: hidden;
    padding: 0.7rem 0 0.55rem;
  }

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

  .nav nav {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
  }

  .nav nav::-webkit-scrollbar {
    display: none;
  }

  .nav nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0.5rem 0.72rem;
  }

  .hero {
    padding: 1.75rem 0 3.2rem;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
    line-height: 1.04;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-media {
    display: none;
  }

  .construction-page {
    padding-bottom: 0;
  }

  .construction {
    padding-top: 2.5rem;
  }

  .construction h1,
  .construction-panel h1,
  .app-hero h1 {
    font-size: 3.15rem;
    line-height: 1;
  }

  .construction p:not(.eyebrow),
  .construction-panel p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-actions .button,
  .product-actions,
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions {
    margin-top: -1.25rem;
  }

  .quick-actions a {
    min-height: 86px;
  }

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

  .alert-filters,
  .case-card {
    grid-template-columns: 1fr;
  }

  .case-card img,
  .case-photo-fallback {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .case-card .button {
    width: 100%;
  }

  .store-filter-panel {
    padding: 0.75rem;
  }

  .product-body h3 {
    min-height: 0;
  }

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(31, 36, 32, 0.12);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 -12px 30px rgba(31, 36, 32, 0.1);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 64px;
    place-items: center;
    gap: 0.1rem;
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-action-bar svg {
    width: 19px;
    height: 19px;
  }
}

/* v2.3 alert directory and responsive polish */
.app-note-band {
  padding: clamp(1.5rem, 4vw, 2.4rem) 0;
  background: #fffdf8;
}

.app-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border-block: 1px solid var(--line);
  padding-block: 1.1rem;
}

.app-note h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.alert-command {
  align-content: start;
  max-height: none;
}

.alert-command-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: start;
}

.alert-command-head h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
}

.alert-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4faf7;
  padding: 0.3rem;
}

.alert-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.alert-tabs button:hover,
.alert-tabs button.is-active {
  background: var(--green);
  color: white;
}

.alert-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 0.9fr) minmax(130px, 0.55fr);
  gap: 0.65rem;
}

.alert-results-bar,
.alert-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
}

.case-list {
  max-height: min(720px, 74vh);
  overflow: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
}

.case-card {
  grid-template-columns: 76px minmax(0, 1fr) auto;
  min-height: 96px;
  align-items: center;
  padding: 0.7rem;
}

.case-card:hover,
.case-card.is-active {
  border-color: rgba(36, 106, 91, 0.36);
  background: #f7fffb;
}

.case-card img,
.case-photo-fallback {
  width: 76px;
  height: 76px;
}

.case-card strong {
  display: block;
  line-height: 1.18;
}

.case-card small {
  display: block;
  margin-top: 0.12rem;
}

.case-card-actions {
  display: flex;
  justify-content: end;
}

.case-card-actions .button {
  min-width: 116px;
  min-height: 40px;
  padding: 0.55rem 0.72rem;
  white-space: nowrap;
}

.empty-results {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fffefb;
  padding: 1rem;
  color: var(--muted);
}

.empty-results strong {
  display: block;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .network-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  }
}

@media (max-width: 980px) {
  .app-note,
  .alert-command-head,
  .alert-filters {
    grid-template-columns: 1fr;
  }

  .case-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .app-note .button,
  .alert-command-head .button {
    width: 100%;
  }

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

  .alert-tabs button {
    min-height: 46px;
  }

  .case-card {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
  }

  .case-card img,
  .case-photo-fallback {
    width: 58px;
    height: 58px;
    aspect-ratio: 1;
  }

  .case-card-actions {
    grid-column: 1 / -1;
  }
}

/* v2.4 professional alert workflow */
.network-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  align-items: start;
}

.network-side {
  display: contents;
}

.alert-command {
  order: -2;
  grid-column: 1 / -1;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.network-form {
  align-content: start;
}

#case-form {
  position: relative;
  border-top: 4px solid var(--green);
}

#case-form .form-title {
  align-items: start;
  justify-content: space-between;
}

#case-form label {
  font-size: 0.9rem;
  font-weight: 800;
}

#case-form input,
#case-form textarea {
  padding-block: 0.72rem;
}

#case-form textarea {
  min-height: 104px;
}

.poster-panel {
  position: sticky;
  top: 88px;
  align-content: start;
}

.poster-panel .form-title h3 {
  font-size: 1rem;
}

.poster-preview {
  max-height: 520px;
  overflow: auto;
  border-width: 5px;
  padding: 0.8rem;
}

.poster-preview > strong {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.poster-photo {
  width: min(220px, 72%);
  min-height: 210px;
}

.alert-command-head {
  padding-bottom: 0.2rem;
}

.alert-command-head .muted {
  max-width: 720px;
}

.alert-tabs {
  width: min(100%, 780px);
}

.alert-filters {
  grid-template-columns: minmax(260px, 1.1fr) minmax(220px, 0.8fr) minmax(150px, 0.35fr);
  align-items: end;
  border: 1px solid rgba(31, 36, 32, 0.09);
  border-radius: var(--radius);
  background: #fbfefc;
  padding: 0.75rem;
}

.alert-filters label {
  color: #273029;
  font-size: 0.88rem;
  font-weight: 800;
}

.alert-results-bar {
  min-height: 42px;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  max-height: none;
  overflow: visible;
  gap: 0.8rem;
  padding-right: 0;
}

.case-card {
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0.7rem;
  min-height: 0;
  overflow: hidden;
  border-color: rgba(31, 36, 32, 0.12);
  box-shadow: 0 10px 24px rgba(31, 36, 32, 0.06);
}

.case-card img,
.case-photo-fallback {
  width: 64px;
  height: 64px;
}

.case-card p {
  -webkit-line-clamp: 1;
  margin-top: 0.18rem;
  font-size: 0.9rem;
}

.case-card-actions {
  grid-column: 1 / -1;
  justify-content: stretch;
}

.case-card-actions .button {
  width: 100%;
  min-height: 42px;
}

.alert-pagination {
  justify-content: center;
}

.network-lower {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.sighting-feed {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .network-layout {
    grid-template-columns: 1fr;
  }

  .poster-panel {
    position: static;
  }

  .alert-filters,
  .case-list,
  .network-lower {
    grid-template-columns: 1fr;
  }

  .sighting-feed {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .alert-command {
    padding: 0.9rem;
  }

  .case-list {
    gap: 0.65rem;
  }

  .case-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .case-card img,
  .case-photo-fallback {
    width: 54px;
    height: 54px;
  }
}
