:root {
  --black: #0b0b0b;
  --graphite: #171b20;
  --graphite-2: #22272e;
  --bone: #f4f1ec;
  --mist: #cfc8be;
  --muted: #8d887f;
  --olive: #5c6a4d;
  --moss: #707b5a;
  --amber: #8a633d;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --line-dark: rgba(244, 241, 236, 0.14);
  --line-light: rgba(11, 11, 11, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--bone);
  background: var(--black);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 34%),
    linear-gradient(180deg, transparent, rgba(92, 106, 77, 0.12));
}

.wrap {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 11, 11, 0.84);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--bone);
  text-decoration: none;
}

.brand-home {
  border-radius: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-home:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

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

.brand strong,
h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

.brand strong {
  display: block;
  font-size: 1.45rem;
}

.brand small {
  display: block;
  color: var(--mist);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--bone);
}

.menu-toggle {
  display: none;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 9px 12px;
  font: inherit;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 88px);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 96px 0 34px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.55) 0%, rgba(11, 11, 11, 0.82) 100%),
    url("assets/media/hero-main-drive.jpg") center center / contain no-repeat,
    var(--black);
  background-repeat: no-repeat, no-repeat, no-repeat;
  transform: none;
}

.hero-content {
  min-height: min(650px, calc(100vh - 140px));
  display: grid;
  align-content: end;
  gap: 34px;
}

.mobile-feed {
  display: none;
}

.eyebrow,
.kicker,
.tag {
  color: var(--mist);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow,
.kicker {
  margin-bottom: 12px;
}

h1 {
  max-width: 100%;
  font-size: clamp(4.3rem, 8.8vw, 8.2rem);
}

h2 {
  font-size: clamp(2.9rem, 7vw, 5.5rem);
}

h3 {
  color: inherit;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  color: inherit;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-main {
  background: var(--bone);
  color: var(--black);
}

.btn[data-whatsapp] {
  color: #06150b;
  border-color: rgba(37, 211, 102, 0.88);
  background:
    linear-gradient(135deg, var(--whatsapp), #7df2a1);
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.22);
}

.btn[data-whatsapp]:hover {
  background:
    linear-gradient(135deg, #34e276, var(--whatsapp));
}

.btn-member {
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(112, 123, 90, 0.95), rgba(138, 99, 61, 0.95)),
    var(--moss);
  box-shadow: 0 18px 50px rgba(92, 106, 77, 0.25);
}

.btn-ghost {
  background: rgba(244, 241, 236, 0.05);
  border-color: var(--line-dark);
  color: var(--bone);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  background: rgba(11, 11, 11, 0.62);
  backdrop-filter: blur(12px);
}

.hero-facts span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line-dark);
  color: var(--bone);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-facts span:last-child {
  border-right: 0;
}

.step span {
  color: var(--amber);
  font-weight: 900;
}

.section-head p,
.step p,
.strain p,
.feature-copy p,
.norm-card p,
.faq-layout p,
.contact-panel p,
.footer p {
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.light {
  color: var(--black);
  background: var(--bone);
}

.dark {
  color: var(--bone);
  background: var(--black);
}

.compact {
  padding: 72px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-head > p {
  max-width: 760px;
  font-size: 1.05rem;
}

.split {
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  align-items: end;
}

.process-grid,
.strains-grid,
.norms-grid {
  display: grid;
  gap: 14px;
}

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

.step {
  min-height: 240px;
  display: grid;
  grid-template-rows: 42px 56px 1fr;
  align-items: start;
  gap: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 24px;
  background: #fffaf2;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.step h3 {
  display: flex;
  align-items: start;
  min-height: 56px;
  max-width: 13ch;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.step p {
  align-self: start;
  max-width: 30ch;
  font-size: clamp(0.94rem, 1.25vw, 1.04rem);
  line-height: 1.55;
}

.norms-section {
  color: var(--bone);
  background:
    radial-gradient(circle at 12% 8%, rgba(92, 106, 77, 0.22), transparent 34%),
    linear-gradient(180deg, #111417, #080808);
}

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

.norm-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(244, 241, 236, 0.08), transparent 48%),
    rgba(23, 27, 32, 0.82);
}

.norm-card span {
  color: var(--bone);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.35rem;
  line-height: 0.95;
}

.norm-card p {
  color: var(--muted);
}

.norm-card p strong,
.norm-card p small {
  display: block;
}

.norm-card p strong {
  color: var(--bone);
  font-weight: 800;
}

.norm-card p small {
  margin-top: 5px;
  color: var(--muted);
  font: inherit;
}

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

.strain {
  min-height: 360px;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--graphite);
}

.head-punch .strain-art {
  background-position: center 38%;
}

.strain-art {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 18px;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.68)),
    var(--strain-img);
  background-size: cover;
  background-position: center;
}

.strain-art img {
  display: none;
}

.strain-art span {
  position: relative;
  z-index: 1;
  color: rgba(244, 241, 236, 0.86);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3.6rem;
  line-height: 0.9;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 31%);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--graphite);
  scroll-snap-align: start;
}

.light .gallery-card {
  border-color: var(--line-light);
  background: #fffaf2;
}

.gallery-card > img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
}

.cultivo-gallery {
  grid-auto-columns: minmax(310px, 38%);
}

.cultivo-gallery .gallery-card {
  min-height: 390px;
}

.cultivo-gallery .gallery-card > img {
  height: 390px;
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(244, 241, 236, 0.2);
  border-radius: var(--radius);
  color: var(--bone);
  background: rgba(11, 11, 11, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-section {
  background:
    radial-gradient(circle at 80% 16%, rgba(138, 99, 61, 0.16), transparent 34%),
    var(--black);
}

.bike .strain-art {
  background-color: #32363a;
}

.amnesia .strain-art {
  background-color: var(--olive);
}

.gold .strain-art {
  background-color: var(--amber);
}

.packaging-section {
  color: var(--bone);
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(23, 27, 32, 0.96)),
    url("assets/media/bag-cultivo.jpg");
  background-size: cover;
  background-position: center;
}

#packaging .gallery-card {
  background: #fff;
}

.packaging-photo img {
  height: 420px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.packaging-photo {
  background: #fff;
}

.real-packaging-photo img {
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.mockup-photo {
  background: #fff;
}

.mockup-photo img {
  height: 420px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.members-section {
  color: var(--bone);
  background:
    radial-gradient(circle at 14% 16%, rgba(92, 106, 77, 0.25), transparent 32%),
    linear-gradient(135deg, #0b0b0b 0%, #161a1e 58%, #0b0b0b 100%);
}

.members-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
  gap: 14px;
  align-items: stretch;
}

.member-login,
.pickup-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(244, 241, 236, 0.08), transparent 48%),
    rgba(23, 27, 32, 0.88);
  box-shadow: var(--shadow);
}

.pickup-form {
  background:
    linear-gradient(145deg, rgba(112, 123, 90, 0.18), transparent 48%),
    rgba(16, 18, 22, 0.92);
}

.member-login label,
.pickup-form label {
  display: grid;
  gap: 8px;
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.member-login input,
.pickup-form input,
.pickup-form select,
.pickup-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--bone);
  background: #101216;
  font: inherit;
}

.pickup-form textarea {
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label:last-child {
  grid-column: 1 / -1;
}

.appointment-summary {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(99, 205, 115, 0.42);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(99, 205, 115, 0.12);
}

.appointment-summary[hidden] {
  display: none;
}

.appointment-summary span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.appointment-summary strong {
  color: var(--bone);
  font-size: 1rem;
}

.appointment-summary small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.portal-status {
  border: 1px solid rgba(244, 241, 236, 0.18);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--bone);
  background: rgba(244, 241, 236, 0.08);
  font-size: 0.84rem;
  line-height: 1.35;
}

.portal-status[data-type="success"] {
  border-color: rgba(112, 123, 90, 0.55);
  background: rgba(112, 123, 90, 0.2);
}

.portal-status[data-type="error"] {
  border-color: rgba(180, 92, 74, 0.55);
  background: rgba(180, 92, 74, 0.18);
}

.member-login button:disabled,
.pickup-form button:disabled,
.member-login input:disabled,
.pickup-form input:disabled,
.pickup-form select:disabled,
.pickup-form textarea:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact-email a,
.footer a {
  color: inherit;
  font-weight: 900;
  text-decoration-color: rgba(244, 241, 236, 0.45);
  text-underline-offset: 4px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1fr;
  gap: 34px;
}

.muted {
  color: var(--muted);
}

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

details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--graphite);
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}

details p {
  padding: 0 18px 18px;
}

.faq-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--graphite);
}

.faq-form label {
  display: grid;
  gap: 10px;
  color: var(--bone);
  font-weight: 900;
  text-transform: uppercase;
}

.faq-form textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--bone);
  background: #101216;
  font: inherit;
  text-transform: none;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.88), rgba(11, 11, 11, 0.58)),
    url("assets/media/cultivo-room.jpg");
  background-size: cover;
  background-position: center;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(11, 11, 11, 0.66);
}

.contact-panel p {
  max-width: 720px;
}

.footer {
  padding: 28px 0 34px;
  background: #080808;
  border-top: 1px solid var(--line-dark);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .split,
  .process-grid,
  .faq-layout,
  .members-panel {
    grid-template-columns: 1fr;
  }

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

  .gallery-strip {
    grid-auto-columns: minmax(260px, 44%);
  }

  .cultivo-gallery {
    grid-auto-columns: minmax(280px, 62%);
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts span {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-facts span:last-child {
    border-bottom: 0;
  }

}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 36px, 1160px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 14px 16px;
    background: rgba(11, 11, 11, 0.98);
    border-bottom: 1px solid var(--line-dark);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero {
    min-height: calc(100svh - 88px);
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 6.4rem);
  }

  .hero-actions,
  .contact-panel,
  .footer-wrap,
  .portal-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .btn {
    width: 100%;
  }

  .hero-content {
    min-height: calc(100svh - 150px);
  }

  .strains-grid,
  .norms-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-auto-columns: minmax(260px, 86%);
  }

  .cultivo-gallery {
    grid-auto-columns: minmax(260px, 88%);
  }

  .section {
    padding: 62px 0;
  }
}

/* Mobile-first social layer: the site should feel closer to a visual feed than a classic landing page. */
.story-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: none;
}

.story-rail::-webkit-scrollbar {
  display: none;
}

.story-rail a {
  min-width: 76px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--bone);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-rail img {
  width: 68px;
  height: 68px;
  padding: 3px;
  border: 2px solid rgba(244, 241, 236, 0.38);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--moss), var(--amber), var(--black));
  object-fit: cover;
}

.mobile-tabbar {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(92, 106, 77, 0.22), transparent 28%),
      var(--black);
  }

  .wrap {
    width: min(100% - 32px, 1160px);
  }

  .topbar {
    background: rgba(8, 8, 8, 0.76);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

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

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

  .menu-toggle {
    padding: 8px 11px;
    background: rgba(244, 241, 236, 0.04);
  }

  .nav {
    top: 74px;
  }

  .hero {
    min-height: calc(100svh - 74px);
    padding: 22px 0 16px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.5) 0%, rgba(11, 11, 11, 0.9) 100%),
      url("assets/media/hero-main-drive.jpg") center center / contain no-repeat,
      var(--black);
    background-repeat: no-repeat, no-repeat, no-repeat;
  }

  .hero-content {
    min-height: calc(100svh - 106px);
    align-content: end;
    gap: 18px;
  }

  h1 {
    font-size: clamp(4.7rem, 22vw, 7rem);
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-actions {
    gap: 9px;
    margin-top: 18px;
  }

  .btn {
    min-height: 50px;
    border-radius: 14px;
    letter-spacing: -0.01em;
  }

  .btn-member {
    order: -1;
    min-height: 58px;
    font-size: 0.95rem;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 18px;
    overflow: hidden;
  }

  .hero-facts span {
    min-height: 56px;
    padding: 10px 8px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
    font-size: 0.68rem;
  }

  .story-rail {
    width: calc(100% + 11px);
    margin-right: -11px;
    padding-top: 2px;
  }

  .story-rail img {
    width: 62px;
    height: 62px;
  }

  .section {
    padding: 34px 0;
    scroll-margin-top: 86px;
  }

  .light,
  .dark,
  .product-section,
  .norms-section,
  .packaging-section,
  .members-section,
  .contact-section {
    color: var(--bone);
    background:
      radial-gradient(circle at 85% 4%, rgba(138, 99, 61, 0.13), transparent 28%),
      #0b0b0b;
  }

  .section-head {
    gap: 8px;
    margin-bottom: 16px;
  }

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

  .section-head > p {
    font-size: 0.98rem;
  }

  .strains-grid,
  .process-grid,
  .norms-grid,
  .faq-layout,
  .members-panel {
    grid-template-columns: 1fr;
  }

  .strain,
  .step,
  .norm-card,
  details,
  .faq-form,
  .member-login,
  .pickup-form,
  .contact-panel {
    border-color: rgba(244, 241, 236, 0.12);
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(244, 241, 236, 0.06), transparent 42%),
      rgba(23, 27, 32, 0.92);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  }

  .strain {
    min-height: 0;
    padding: 10px;
  }

  .strain-art {
    min-height: 78vw;
    border-radius: 18px;
    background-position: center;
  }

  .strain-art span {
    font-size: 4.2rem;
  }

  .strain .tag,
  .strain h3,
  .strain p {
    padding-inline: 6px;
  }

  .gallery-strip {
    width: calc(100% + 11px);
    margin-right: -11px;
    grid-auto-columns: minmax(282px, 88%);
    gap: 12px;
    padding-bottom: 14px;
  }

  .gallery-card,
  .cultivo-gallery .gallery-card {
    min-height: 430px;
    border-radius: 22px;
  }

  .gallery-card > img,
  .cultivo-gallery .gallery-card > img,
  .real-packaging-photo img,
  .mockup-photo img {
    height: 430px;
  }

  .mockup-photo img {
    padding: 16px;
  }

  .gallery-card figcaption {
    left: 12px;
    bottom: 12px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
  }

  .step,
  .norm-card {
    min-height: 0;
    padding: 20px;
  }

  .step {
    grid-template-rows: 42px 52px 1fr;
    gap: 14px;
  }

  .step h3 {
    min-height: 52px;
  }

  .norm-card span {
    font-size: 3rem;
  }

  summary {
    padding: 17px;
    font-size: 0.86rem;
  }

  details p {
    padding: 0 17px 17px;
  }

  .member-login,
  .pickup-form,
  .faq-form {
    padding: 20px;
  }

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

  .contact-panel {
    padding: 22px;
  }

  .footer {
    padding-bottom: 24px;
  }

  .mobile-tabbar {
    display: none;
  }

  .mobile-tabbar a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--mist);
    text-decoration: none;
    font-size: 0.66rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-tabbar a:last-child {
    color: #06150b;
    background: var(--whatsapp);
  }
}

@media (min-width: 721px) {
  .story-rail {
    max-width: 560px;
  }
}

/* Instagram-like mobile pass: full-bleed media, lateral swipes, minimal copy. */
@media (max-width: 720px) {
  .section:not(#asociarse):not(#normas):not(#faq):not(#socios):not(#contacto) {
    padding: 22px 0 30px;
    overflow: hidden;
  }

  #geneticas .section-head,
  #producto .section-head,
  #cultivo .section-head,
  #packaging .section-head {
    width: min(100% - 28px, 1160px);
    margin: 0 auto 12px;
  }

  #geneticas .section-head .kicker,
  #producto .section-head .kicker,
  #cultivo .section-head .kicker,
  #packaging .section-head .kicker,
  #geneticas .section-head > p,
  #producto .section-head > p,
  #cultivo .section-head > p,
  #packaging .section-head > p {
    display: none;
  }

  #geneticas h2,
  #producto h2,
  #cultivo h2,
  #packaging h2 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
    line-height: 0.88;
  }

  .strains-grid {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100vw;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .strains-grid::-webkit-scrollbar,
  .gallery-strip::-webkit-scrollbar {
    display: none;
  }

  .strain {
    position: relative;
    min-height: calc(100svh - 196px);
    border: 0;
    border-radius: 0;
    padding: 0;
    background: #050505;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .strain-art {
    min-height: calc(100svh - 196px);
    border-radius: 0;
    padding: 18px;
    background:
      linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.76)),
      var(--strain-img);
    background-size: cover;
    background-position: center;
  }

  .strain-art span {
    display: none;
  }

  .strain .tag,
  .strain p {
    display: none;
  }

  .strain h3 {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 22px;
    z-index: 2;
    padding: 0;
    color: var(--bone);
    font-size: clamp(2.4rem, 12vw, 4rem);
    font-family: "Bebas Neue", Impact, sans-serif;
    font-weight: 400;
    line-height: 0.9;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.72);
  }

  .gallery-strip {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    grid-auto-columns: 100vw;
    gap: 0;
    padding-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-card,
  .cultivo-gallery .gallery-card {
    min-height: calc(100svh - 196px);
    border: 0;
    border-radius: 0;
    background: #050505;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .gallery-card > img,
  .cultivo-gallery .gallery-card > img,
  .real-packaging-photo img,
  .mockup-photo img {
    width: 100vw;
    height: calc(100svh - 196px);
    border-radius: 0;
    object-fit: contain;
  }

  .mockup-photo,
  .real-packaging-photo,
  .packaging-photo {
    background: #fff;
  }

  .mockup-photo img,
  .real-packaging-photo img,
  .packaging-photo img {
    object-fit: contain;
    padding: 0;
    background: #fff;
  }

  .gallery-card figcaption {
    display: none;
  }

  #asociarse,
  #normas,
  #faq,
  #socios,
  #contacto {
    padding-top: 44px;
  }
}

/* App-style navigation: no vertical page scroll, sections open as screens from the home buttons. */
html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  --app-topbar: 88px;
  padding-bottom: 0;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
}

main {
  min-height: 100svh;
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--app-topbar) + 24px);
}

.hero-content {
  min-height: calc(100svh - var(--app-topbar) - 40px);
}

main > .section {
  position: fixed;
  inset: var(--app-topbar) 0 0;
  z-index: 30;
  display: none;
  padding: 22px 0 0;
  overflow: hidden;
}

main > .section:target {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

body:has(main > .section:target) .hero {
  display: none;
}

main > .section .section-head {
  margin-bottom: 14px;
}

main > .section > .wrap:not(.section-head) {
  min-height: 0;
}

main > .section .strains-grid,
main > .section .gallery-strip,
main > .section .process-grid,
main > .section .norms-grid,
main > .section .faq-layout,
main > .section .members-panel {
  width: 100vw;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-inline: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

main > .section .strains-grid::-webkit-scrollbar,
main > .section .gallery-strip::-webkit-scrollbar,
main > .section .process-grid::-webkit-scrollbar,
main > .section .norms-grid::-webkit-scrollbar,
main > .section .faq-layout::-webkit-scrollbar,
main > .section .members-panel::-webkit-scrollbar {
  display: none;
}

main > .section .strains-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 28vw);
  grid-template-columns: none;
  gap: 16px;
}

main > .section .gallery-strip {
  grid-auto-columns: minmax(360px, 32vw);
  gap: 16px;
  padding-bottom: 0;
}

main > .section .gallery-card,
main > .section .strain {
  min-height: calc(100svh - var(--app-topbar) - 136px);
  scroll-snap-align: start;
}

main > .section .gallery-card > img,
main > .section .cultivo-gallery .gallery-card > img,
main > .section .real-packaging-photo img,
main > .section .mockup-photo img,
main > .section .packaging-photo img {
  height: calc(100svh - var(--app-topbar) - 136px);
}

main > .section .strain-art {
  min-height: calc(100svh - var(--app-topbar) - 260px);
}

main > .section .process-grid,
main > .section .norms-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 24vw);
  grid-template-columns: none;
  gap: 16px;
}

main > .section .faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(620px, 0.72fr);
  gap: 16px;
}

main > .section .faq-list {
  max-height: calc(100svh - var(--app-topbar) - 150px);
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: unset;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: none;
  scrollbar-width: thin;
}

main > .section .faq-list::-webkit-scrollbar {
  display: none;
}

main > .section details,
main > .section .faq-form {
  align-self: stretch;
  scroll-snap-align: none;
}

main > .section .members-panel {
  grid-template-columns: minmax(360px, 34vw) minmax(460px, 42vw);
  align-items: stretch;
}

@media (min-width: 721px) {
  /* Desktop test: sections behave like an Instagram feed with lateral cards instead of vertical landing scroll. */
  main > .section .strain,
  main > .section .gallery-card {
    border-radius: 0;
    border-color: rgba(244, 241, 236, 0.08);
  }

  main > .section .gallery-card > img {
    object-fit: contain;
  }

  main > .section .mockup-photo img,
  main > .section .real-packaging-photo img,
  main > .section .packaging-photo img {
    object-fit: contain;
  }

  main > .section .packaging-photo {
    background: #fff;
  }
}

@media (max-width: 720px) {
  body {
    --app-topbar: 74px;
    padding-bottom: 0;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding: var(--app-topbar) 0 0;
    align-items: start;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    scroll-snap-type: y mandatory;
    scroll-padding-top: var(--app-topbar);
  }

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

  .hero-content {
    display: none;
  }

  .hero-media {
    display: none;
  }

  .mobile-feed {
    display: block;
    gap: 0;
    padding: 0;
    background: #050505;
  }

  .mobile-feed figure {
    position: relative;
    width: 100%;
    height: calc(100svh - var(--app-topbar));
    margin: 0;
    background: #050505;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
  }

  .mobile-feed figure:nth-child(3)::before {
    content: "";
    position: absolute;
    inset: -30px;
    z-index: 0;
    background:
      linear-gradient(rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.18)),
      url("assets/media/hero-flor-emi-mobile-v2.jpg") center center / cover no-repeat;
    filter: blur(18px);
    transform: scale(1.06);
  }

  .feed-photo-button {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .feed-photo-button img {
    width: 100%;
    height: 100%;
    max-height: none;
    display: block;
    object-fit: cover;
    object-position: center center;
    background: #050505;
  }

  .mobile-feed figure:nth-child(1) .feed-photo-button img,
  .mobile-feed figure:nth-child(3) .feed-photo-button img {
    object-fit: contain;
  }

  .mobile-feed figure:nth-child(3) .feed-photo-button img {
    object-position: center center;
    transform: none;
  }

  .mobile-feed-actions {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 18px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 0;
  }

  .mobile-feed-actions .btn {
    min-height: 48px;
    padding: 11px 10px;
    border-radius: 18px;
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: -0.02em;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  }

  .mobile-feed-actions .btn-member {
    grid-column: 1 / -1;
    min-height: 52px;
    font-size: 0.82rem;
  }

  .mobile-feed-actions .btn-ghost {
    background: rgba(11, 11, 11, 0.52);
    backdrop-filter: blur(14px);
  }

  main > .section {
    inset: var(--app-topbar) 0 0;
    padding-top: 18px;
  }

  main > .section .section-head {
    margin-bottom: 10px;
  }

  main > .section .strains-grid,
  main > .section .gallery-strip {
    padding-inline: 0;
  }

  main > .section .strains-grid {
    grid-auto-columns: 100vw;
    gap: 0;
  }

  main > .section .gallery-strip {
    grid-auto-columns: 100vw;
    gap: 0;
  }

  main > .section .strain,
  main > .section .gallery-card,
  main > .section .cultivo-gallery .gallery-card {
    min-height: calc(100svh - var(--app-topbar) - 154px);
  }

  main > .section .packaging-photo {
    background: #fff;
  }

  main > .section .strain-art,
  main > .section .gallery-card > img,
  main > .section .cultivo-gallery .gallery-card > img,
  main > .section .real-packaging-photo img,
  main > .section .mockup-photo img,
  main > .section .packaging-photo img {
    width: 100vw;
    min-height: 0;
    height: calc(100svh - var(--app-topbar) - 154px);
  }

  main > .section .process-grid,
  main > .section .norms-grid,
  main > .section .members-panel {
    grid-auto-columns: minmax(82vw, 82vw);
    grid-template-columns: none;
    padding-inline: 16px;
  }

  main > .section .faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    padding-inline: 16px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  main > .section .faq-list {
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    max-height: none;
    padding-bottom: 24px;
  }
}

/* Navigation polish: active state, clear return control and accessible focus. */
.nav a.is-active,
.nav a[aria-current="page"],
.mobile-tabbar a.is-active,
.mobile-tabbar a[aria-current="page"] {
  color: var(--bone);
}

.nav a.is-active::after,
.nav a[aria-current="page"]::after {
  width: 100%;
  opacity: 1;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--bone);
  opacity: 0;
  transition: width 0.18s ease, opacity 0.18s ease;
}

.section-head > div {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-back {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 8px 16px;
  color: inherit;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.82;
}

.section-back:hover {
  opacity: 1;
  background: rgba(244, 241, 236, 0.08);
}

.light .section-back:hover {
  background: rgba(11, 11, 11, 0.08);
}

:focus-visible {
  outline: 3px solid rgba(244, 241, 236, 0.9);
  outline-offset: 4px;
}

.btn:focus-visible,
.nav a:focus-visible,
.mobile-tabbar a:focus-visible,
.section-back:focus-visible,
.menu-toggle:focus-visible,
.brand-home:focus-visible {
  outline: 3px solid rgba(244, 241, 236, 0.92);
  outline-offset: 4px;
}

.member-login .muted,
.pickup-form .muted,
.form-note {
  max-width: 58ch;
}


@media (min-width: 721px) {
  main > .section .section-head {
    width: min(1160px, calc(100% - 40px));
  }

  main > .section .strains-grid,
  main > .section .gallery-strip {
    padding-inline: max(20px, calc((100vw - 1160px) / 2));
  }

  main > .section .strain,
  main > .section .gallery-card {
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.28);
  }

  #normas .norms-grid {
    width: min(1360px, calc(100vw - 40px));
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
  }

  #normas .norm-card {
    min-height: min(360px, calc(100svh - var(--app-topbar) - 210px));
    padding: clamp(16px, 1.45vw, 22px);
  }

  #normas .norm-card span {
    font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  }

  #normas .norm-card h3 {
    font-size: clamp(0.92rem, 1.08vw, 1.08rem);
  }

  #normas .norm-card p {
    font-size: clamp(0.82rem, 0.92vw, 0.95rem);
    line-height: 1.45;
  }
}

@media (max-width: 720px) {
  .section-head > div {
    align-items: start;
  }

  .section-back {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.66rem;
  }
}

.step p a[data-whatsapp] {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  margin: 0 3px;
  border: 1px solid rgba(11, 11, 11, 0.18);
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--black);
  background: rgba(112, 123, 90, 0.2);
  text-decoration: none;
  font-size: 0.82em;
  font-weight: 900;
  text-transform: uppercase;
}

.step p a[data-whatsapp]:hover {
  background: rgba(112, 123, 90, 0.32);
}

.norms-section .step p a[data-whatsapp],
.dark .step p a[data-whatsapp] {
  color: var(--bone);
  border-color: rgba(244, 241, 236, 0.22);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 100%;
  max-height: 86svh;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: 16px;
  border: 1px solid rgba(244, 241, 236, 0.2);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--bone);
  background: rgba(11, 11, 11, 0.7);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.is-lightbox-trigger {
  cursor: zoom-in;
}

.is-lightbox-trigger:focus-visible {
  outline: 2px solid rgba(244, 241, 236, 0.9);
  outline-offset: 4px;
}

/* La primera foto de Flores es vertical: la mostramos completa para no cortar la flor. */
#producto .product-gallery .gallery-card:first-child {
  background: #050505;
}

#producto .product-gallery .gallery-card:first-child > img {
  object-fit: contain;
  object-position: center;
  background: #050505;
}

/* Layout QA pass: consistent safe margins for app-like sections. */
main > .section .section-head {
  width: min(1160px, calc(100vw - 40px));
  margin-inline: auto;
}

@media (min-width: 721px) {
  #asociarse .process-grid,
  #faq .faq-layout,
  #socios .members-panel {
    width: min(1160px, calc(100vw - 40px));
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
    overflow: visible;
  }

  #asociarse .process-grid {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #faq .faq-layout {
    grid-auto-flow: row;
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
    align-items: start;
  }

  #faq .faq-list {
    max-height: calc(100svh - var(--app-topbar) - 150px);
    overflow-y: auto;
    padding-right: 4px;
  }

  #socios .members-panel {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    align-items: start;
  }

  #socios .section-head {
    margin-bottom: 10px;
  }

  #socios h2 {
    font-size: clamp(3rem, 5.8vw, 4.9rem);
  }

  #socios .member-login,
  #socios .pickup-form {
    min-height: 0;
    max-height: calc(100svh - var(--app-topbar) - 168px);
    padding: clamp(16px, 1.6vw, 22px);
    gap: 12px;
    overflow: hidden;
  }

  #socios .member-login {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  #socios .member-login .tag,
  #socios .member-login h3,
  #socios .member-login .muted,
  #socios .member-login .form-note,
  #socios .member-login button {
    grid-column: 1 / -1;
  }

  #socios .member-login h3,
  #socios .pickup-form h3 {
    font-size: 1rem;
  }

  #socios .member-login .muted,
  #socios .pickup-form .muted,
  #socios .form-note {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  #socios .member-login input,
  #socios .pickup-form input,
  #socios .pickup-form select,
  #socios .pickup-form textarea {
    padding: 10px 11px;
  }

  #socios .pickup-form textarea {
    max-height: 76px;
  }
}

@media (max-width: 720px) {
  main > .section .section-head {
    width: calc(100vw - 28px);
  }

  #asociarse .process-grid,
  #normas .norms-grid,
  #faq .faq-layout,
  #socios .members-panel {
    width: 100vw;
    padding-inline: 14px;
  }

  #faq details,
  #faq .faq-form {
    width: 100%;
  }
}

/* Form input focus styles */
.member-login input:focus-visible,
.pickup-form input:focus-visible,
.pickup-form select:focus-visible,
.pickup-form textarea:focus-visible,
.faq-form textarea:focus-visible {
  outline: 2px solid rgba(112, 123, 90, 0.8);
  outline-offset: 0;
  border-color: rgba(112, 123, 90, 0.6);
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Combined mobile preview: original landing, story icons, one feed page only. */
.combo-stories {
  display: none;
}

@media (max-width: 720px) {
  body.combo-page {
    --combo-story-height: 0px;
  }

  .combo-page .combo-stories {
    position: fixed;
    top: var(--app-topbar);
    left: 0;
    right: 0;
    z-index: 58;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 3px;
    width: 100%;
    overflow: hidden;
    padding: 10px 6px 9px;
    border-bottom: 1px solid rgba(244, 241, 236, 0.12);
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.98), rgba(11, 11, 11, 0.88)),
      #050505;
  }

  body.combo-page:has(main > .section:target) .combo-stories {
    display: none;
  }

  .combo-page .combo-stories a {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 6px;
    color: var(--bone);
    text-align: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .combo-page .combo-stories a span {
    width: clamp(38px, 11.4vw, 50px);
    height: clamp(38px, 11.4vw, 50px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 50%;
    background:
      linear-gradient(#050505, #050505) padding-box,
      linear-gradient(135deg, var(--bone), var(--olive), var(--amber)) border-box;
  }

  .combo-page .combo-stories a.is-active span,
  .combo-page .combo-stories a[aria-current="page"] span {
    background:
      linear-gradient(#050505, #050505) padding-box,
      linear-gradient(135deg, #ffffff, #ffffff) border-box;
  }

  .combo-page .combo-stories img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #0b0b0b;
  }

  .combo-page .combo-stories a:nth-child(5) img {
    object-fit: contain;
    padding: 7px;
    background: #f4f1ec;
  }

  .combo-page .combo-stories .story-initials {
    color: var(--black);
    background:
      linear-gradient(var(--bone), var(--bone)) padding-box,
      linear-gradient(135deg, var(--bone), var(--olive), var(--amber)) border-box;
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: clamp(1.15rem, 5vw, 1.65rem);
    line-height: 1;
  }

  .combo-page .combo-stories strong {
    width: 100%;
    overflow: hidden;
    font-size: clamp(0.45rem, 1.75vw, 0.57rem);
    font-weight: 900;
    line-height: 1.05;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .combo-page .combo-stories a:focus-visible {
    outline: 2px solid var(--bone);
    outline-offset: 4px;
    border-radius: 999px;
  }

  .combo-page .hero {
    scroll-snap-type: y mandatory;
  }

  .combo-page .mobile-feed {
    height: calc((100svh - var(--app-topbar)) * 2);
  }

  .combo-page .mobile-feed figure {
    box-sizing: border-box;
  }

  .combo-page .mobile-feed .landing-page .feed-photo-button img {
    object-fit: contain;
    object-position: center center;
  }

  .combo-page .mobile-feed .feed-page {
    padding-top: var(--combo-story-height);
    scroll-snap-align: start;
  }

  .combo-page .mobile-feed-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .combo-page .mobile-feed-actions .btn {
    min-height: 40px;
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 0.66rem;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
  }

  .combo-page .mobile-feed-actions .btn-member {
    min-height: 44px;
    color: var(--bone);
    border-color: rgba(244, 241, 236, 0.28);
    background:
      linear-gradient(135deg, rgba(92, 106, 77, 0.94), rgba(32, 36, 29, 0.94));
  }

  .combo-page .mobile-feed-actions .btn-main:not(.btn-member):not([data-whatsapp]) {
    color: var(--black);
    border-color: rgba(244, 241, 236, 0.92);
    background: rgba(244, 241, 236, 0.94);
  }

  .combo-page .mobile-feed-actions .btn-ghost {
    color: var(--bone);
    border-color: rgba(244, 241, 236, 0.22);
    background: rgba(11, 11, 11, 0.62);
    backdrop-filter: blur(14px);
  }

  .combo-page .feed-page .feed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    width: 100%;
    height: calc(100svh - var(--app-topbar) - var(--combo-story-height));
    gap: 2px;
    overflow: hidden;
  }

  .combo-page .feed-page .feed-tile {
    min-height: 0;
    overflow: hidden;
    background: #050505;
  }

  .combo-page .feed-page .feed-photo-button {
    width: 100%;
    height: 100%;
  }

  .combo-page .feed-page .feed-photo-button img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: none;
    transform-origin: center;
  }

  .combo-page .feed-page .feed-tile:nth-child(4) .feed-photo-button img {
    object-position: center 46%;
  }

  .combo-page .feed-page .feed-tile:nth-child(6) .feed-photo-button img {
    object-position: center 48%;
  }

  .combo-page .feed-page .feed-tile:nth-child(11):not(.feed-brand-cards) .feed-photo-button img {
    object-position: center 62%;
  }

  .combo-page .feed-page .feed-tile:nth-child(10) .feed-photo-button img {
    object-position: center 45%;
  }

  .combo-page .feed-page .feed-brand-cards {
    background: #f4f1ec;
  }

  .combo-page .feed-page .feed-brand-cards .feed-photo-button img {
    object-fit: cover;
    object-position: center center;
    background: #f4f1ec;
    transform: none;
  }

  .combo-page .feed-page .feed-tile:nth-child(12) .feed-photo-button img {
    object-position: center center;
    transform: none;
  }

  .combo-page .footer {
    display: none;
  }
}

/* Latest combined preview adjustments. */
.packaging-section .mockup-photo {
  display: grid;
  place-items: center;
  background: #fff;
}

.packaging-section .mockup-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: clamp(18px, 4vw, 42px);
  transform: none;
  transform-origin: center center;
}

#packaging .real-packaging-photo {
  display: none;
}

.norm-card h3 {
  color: var(--bone);
}

@media (min-width: 721px) {
  main > #packaging .mockup-photo img {
    transform: scale(2.18);
    transform-origin: center center;
  }
}

@media (max-width: 720px) {
  main > #packaging .gallery-card {
    display: grid;
    place-items: center;
    background: #fff;
  }

  main > #packaging .gallery-card > img,
  main > #packaging .real-packaging-photo img,
  main > #packaging .mockup-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    padding: 0;
    background: #fff;
    transform-origin: center center;
  }

  main > #packaging .real-packaging-photo img {
    transform: scale(1.02);
  }

  main > #packaging .mockup-photo img {
    transform: scale(1.78);
  }
}

#asociarse .join-scroll {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
}

#asociarse .join-scroll::-webkit-scrollbar {
  display: none;
}

#asociarse .join-panel {
  min-height: calc(100svh - var(--app-topbar) - 44px);
  display: grid;
  align-content: start;
  gap: 14px;
  padding-bottom: 20px;
  scroll-snap-align: start;
}

#asociarse .conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 14px;
  overflow: visible;
}

#asociarse .process-grid {
  overflow: visible;
}

@media (max-width: 720px) {
  main > #geneticas.section:target {
    display: block;
    overflow: hidden;
    padding-bottom: 0;
  }

  main > #geneticas .section-head {
    width: calc(100vw - 24px);
    margin: 0 auto 8px;
  }

  main > #geneticas .section-head .kicker {
    font-size: 0.7rem;
  }

  main > #geneticas h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    line-height: 0.9;
  }

  main > #geneticas .strains-grid {
    width: min(100%, 390px) !important;
    min-width: 0 !important;
    max-width: 390px !important;
    box-sizing: border-box;
    display: grid;
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 2px;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: none;
  }

  main > #geneticas .strain {
    position: relative;
    width: 100%;
    height: auto !important;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    background: #050505;
    scroll-snap-align: unset;
  }

  main > #geneticas .strain-art {
    width: 100% !important;
    height: min(210px, calc((100svh - var(--app-topbar) - 100px) / 3)) !important;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 0;
    background: #050505;
    padding: 0;
  }

  main > #geneticas .strain-art::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 35%, rgba(0, 0, 0, 0.78));
    pointer-events: none;
  }

  main > #geneticas .strain-art img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 58%;
    transform: none;
    transform-origin: center;
  }

  main > #geneticas .gold .strain-art img {
    object-position: center 58%;
  }

  main > #geneticas .head-punch .strain-art img {
    object-position: center 55%;
  }

  main > #geneticas .amnesia .strain-art img {
    object-position: center 56%;
  }

  main > #geneticas .bike .strain-art img {
    object-position: 72% 58%;
  }

  main > #geneticas .strain h3 {
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 7px;
    z-index: 2;
    min-height: 0;
    display: block;
    padding: 0;
    color: var(--bone);
    font-size: clamp(0.58rem, 2.35vw, 0.72rem);
    line-height: 1.03;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
  }

  main > #geneticas .strain-art span {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
    border: 1px solid rgba(244, 241, 236, 0.28);
    border-radius: 999px;
    padding: 3px 6px;
    color: var(--bone);
    background: rgba(0, 0, 0, 0.44);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 0.52rem;
    line-height: 1;
    letter-spacing: 0;
  }

  main > #packaging .packaging-photo {
    display: none;
  }

  main > #cultivo.section:target {
    display: grid;
    overflow: hidden;
  }

  main > #cultivo .section-head {
    width: min(100% - 28px, 1160px);
    margin: 0 auto 12px;
  }

  main > #cultivo h2 {
    max-width: 100%;
    font-size: clamp(2.4rem, 13vw, 4.2rem);
    line-height: 0.88;
  }

  main > #cultivo .gallery-strip {
    width: 100vw;
    max-width: 100vw;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(282px, 88%);
    grid-template-columns: none;
    gap: 12px;
    margin: 0;
    padding: 0 14px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }

  main > #cultivo .gallery-card {
    width: auto;
    min-width: 0;
    height: 430px;
    min-height: 0;
    border: 1px solid var(--line-light);
    border-radius: 22px;
    background: #050505;
    box-shadow: none;
    scroll-snap-align: start;
  }

  main > #cultivo .gallery-card > img {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
    background: #050505;
  }

  main > #producto.section:target {
    display: grid;
    overflow: hidden;
  }

  main > #producto .section-head {
    width: min(100% - 28px, 1160px);
    margin: 0 auto 12px;
  }

  main > #producto h2 {
    max-width: 100%;
    font-size: clamp(2.4rem, 13vw, 4.2rem);
    line-height: 0.88;
  }

  main > #producto .gallery-strip {
    width: 100vw;
    max-width: 100vw;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(282px, 88%);
    grid-template-columns: none;
    gap: 12px;
    margin: 0;
    padding: 0 14px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }

  main > #producto .gallery-card {
    width: auto;
    min-width: 0;
    height: 430px;
    min-height: 0;
    border: 1px solid var(--line-dark);
    border-radius: 22px;
    background: #050505;
    box-shadow: none;
    scroll-snap-align: start;
  }

  main > #producto .gallery-card > img {
    width: 100%;
    height: 430px;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 22px;
    background: #050505;
  }

  main > #asociarse.section:target {
    display: block;
    overflow: hidden;
    padding-bottom: 0;
  }

  #asociarse .join-scroll {
    height: calc(100svh - var(--app-topbar));
    padding-bottom: 0;
    scroll-snap-type: y mandatory;
  }

  #asociarse .join-panel {
    height: calc(100svh - var(--app-topbar));
    min-height: calc(100svh - var(--app-topbar));
    align-content: start;
    gap: 8px;
    padding: 10px 0 12px;
  }

  #asociarse .section-head {
    width: calc(100vw - 28px);
    margin: 0 auto 6px;
  }

  #asociarse .section-head .kicker {
    font-size: 0.7rem;
  }

  #asociarse .section-head h2 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
    line-height: 0.92;
  }

  #asociarse .conditions-grid,
  #asociarse .process-grid {
    width: 100%;
    max-width: none;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    gap: 7px;
    padding-inline: 14px;
    overflow: visible;
    scroll-snap-type: none;
  }

  #asociarse .conditions-grid {
    grid-template-columns: 1fr;
  }

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

  #asociarse .norm-card,
  #asociarse .step {
    min-height: 0;
    gap: 5px 10px;
    padding: 10px 12px;
    border-radius: 7px;
  }

  #asociarse .norm-card {
    min-height: 78px;
    grid-template-columns: minmax(70px, 0.34fr) 1fr;
    align-content: center;
  }

  #asociarse .norm-card span {
    grid-row: 1 / 3;
    align-self: center;
    font-size: clamp(1.18rem, 5vw, 1.7rem);
    line-height: 0.95;
  }

  #asociarse .norm-card h3,
  #asociarse .step h3 {
    min-height: 0;
    font-size: 0.88rem;
    line-height: 1.05;
  }

  #asociarse .norm-card p,
  #asociarse .step p {
    max-width: none;
    font-size: 0.75rem;
    line-height: 1.28;
  }

  #asociarse .step {
    min-height: 136px;
    grid-template-rows: 32px auto 1fr;
    align-content: start;
  }

  #asociarse .step span {
    width: 32px;
    height: 32px;
    font-size: 0.86rem;
  }

  #asociarse .step h3 {
    min-height: 0;
    max-width: none;
  }

  #asociarse .step p a[data-whatsapp] {
    min-height: 24px;
    padding: 2px 8px;
    font-size: 0.74em;
  }
}

@media (min-width: 721px) {
  #asociarse .join-scroll {
    height: calc(100svh - var(--app-topbar) - 44px);
  }

  #asociarse .process-grid {
    width: min(1160px, calc(100% - 48px));
    max-width: 1160px;
    margin: 0 auto;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.combo-page,
  .combo-page main,
  .combo-page main > .section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .combo-page .section-head > div {
    display: block;
  }

  .combo-page main > .section .section-head,
  .combo-page main > .section > .wrap,
  .combo-page #faq .faq-list,
  .combo-page #socios .members-panel,
  .combo-page #contacto .contact-panel {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin-left: auto;
    margin-right: auto;
  }

  .combo-page main > .section h2 {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .combo-page main > #producto h2,
  .combo-page main > #cultivo h2,
  .combo-page main > #packaging h2,
  .combo-page main > #asociarse h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
    line-height: 0.92;
  }

  .combo-page .mobile-feed-actions {
    max-width: calc(100vw - 28px);
    box-sizing: border-box;
  }

  .combo-page .mobile-feed-actions .btn {
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    white-space: normal;
    text-align: center;
  }

  .combo-page main > #packaging .mockup-photo img {
    transform: scale(1.54);
  }

  .combo-page #asociarse .section-head,
  .combo-page #asociarse .conditions-grid,
  .combo-page #asociarse .process-grid {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-left: 0;
    padding-right: 0;
  }

  .combo-page #asociarse .norm-card {
    grid-template-columns: minmax(62px, 0.28fr) minmax(0, 1fr);
  }

  .combo-page #asociarse .norm-card p,
  .combo-page #faq summary,
  .combo-page #faq details p,
  .combo-page #socios p,
  .combo-page #contacto p {
    overflow-wrap: anywhere;
  }

  .combo-page #faq details,
  .combo-page #faq .faq-form,
  .combo-page #socios .member-login,
  .combo-page #socios .pickup-form,
  .combo-page #contacto .contact-panel {
    max-width: 100%;
    overflow: hidden;
  }

  .combo-page #contacto .contact-panel {
    display: grid;
    gap: 18px;
    padding: 22px;
  }

  .combo-page #contacto .btn {
    width: 100%;
  }
}

/* Desktop QA fixes requested after v50. Scoped to web so the approved mobile layout stays intact. */
@media (min-width: 721px) {
  .hero-copy h1 {
    display: none;
  }

  .hero-copy {
    gap: 18px;
  }

  main > #geneticas .strain-art {
    display: block;
    padding: 0;
    background: #050505;
  }

  main > #geneticas .strain-art img {
    width: 100%;
    height: 100%;
    min-height: calc(100svh - var(--app-topbar) - 260px);
    display: block;
    object-fit: cover;
    object-position: center center;
  }

  main > #geneticas .strain-art span {
    position: absolute;
    left: 18px;
    bottom: 14px;
    z-index: 2;
    padding: 0;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.82);
  }

  main > #producto .gallery-card,
  main > #cultivo .gallery-card {
    background: #050505;
  }

  main > #producto .gallery-card > img,
  main > #cultivo .gallery-card > img {
    width: 100%;
    height: calc(100svh - var(--app-topbar) - 136px);
    object-fit: cover;
    object-position: center center;
  }

  main > #producto .product-gallery .gallery-card:first-child > img {
    object-fit: cover;
    object-position: center center;
  }

  main > #packaging .packaging-photo img {
    object-fit: contain;
    object-position: center center;
    transform: scale(1.13);
    transform-origin: center center;
  }
}

@media (max-width: 720px) {
  .combo-page .mobile-feed-actions {
    left: 14px;
    right: auto;
    width: calc(100vw - 28px);
    max-width: none;
    box-sizing: border-box;
  }

  .combo-page .mobile-feed-actions .btn {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
  }
}

/* Mobile-only QA pass: keep desktop untouched while correcting mobile crops and fit. */
@media (max-width: 720px) {
  main > #geneticas .strain-art picture {
    display: contents;
  }

  main > #geneticas .gold .strain-art img,
  main > #geneticas .head-punch .strain-art img,
  main > #geneticas .bike .strain-art img,
  main > #geneticas .amnesia .strain-art img {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  main > #geneticas .strain:nth-child(5) .strain-art img {
    object-position: center center;
  }

  .combo-page .feed-page .feed-brand-cards .feed-photo-button img {
    object-fit: contain;
    object-position: center center;
    padding: 0;
    background: #f4f1ec;
    transform: none;
  }

  main > #producto .gallery-card:nth-child(1) > img {
    object-fit: cover;
    object-position: center 46%;
    transform: scale(1.12);
    transform-origin: center center;
  }

  main > #producto .gallery-card:nth-child(3) > img {
    object-fit: contain;
    object-position: center center;
    transform: none;
    background: #050505;
  }

  main > #faq.section:target {
    overflow-y: auto;
    padding-bottom: 18px;
    scrollbar-width: none;
  }

  main > #faq.section:target::-webkit-scrollbar {
    display: none;
  }

  .combo-page #faq .faq-list {
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .combo-page #faq .faq-form {
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 16px;
  }

  .combo-page #faq .faq-form label {
    gap: 8px;
    font-size: 0.84rem;
  }

  .combo-page #faq .faq-form textarea {
    min-height: 96px;
    max-height: 118px;
    padding: 10px;
    resize: none;
  }

  .combo-page #faq .faq-form .btn {
    min-height: 42px;
  }
}

/* Mobile-only correction pass v56. Keep desktop crops and sizing untouched. */
@media (max-width: 720px) {
  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child > img {
    object-fit: cover;
    object-position: center 48%;
    transform: scale(1.08);
    transform-origin: center center;
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > img {
    object-fit: contain;
    object-position: center center;
    transform: none;
    background: #050505;
  }

  .combo-page main > #faq.section:target {
    overflow: hidden;
  }

  .combo-page main > #faq.section:target .faq-list {
    align-content: start;
    grid-auto-rows: max-content;
    max-height: calc(100svh - var(--app-topbar) - 102px);
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
    scrollbar-width: none;
  }

  .combo-page main > #faq.section:target details {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .combo-page main > #faq.section:target summary {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 14px 16px;
    line-height: 1.14;
  }

  .combo-page main > #faq.section:target .faq-form {
    height: auto;
    min-height: 0;
    overflow: visible;
    gap: 9px;
    padding: 14px;
    scroll-margin-bottom: 120px;
  }

  .combo-page main > #faq.section:target .faq-form label {
    gap: 8px;
    line-height: 1.1;
  }

  .combo-page main > #faq.section:target .faq-form textarea {
    height: 92px;
    min-height: 92px;
    max-height: 92px;
  }

  .combo-page main > #faq.section:target .faq-form .btn {
    min-height: 40px;
  }
}

/* Mobile v57: remove the heavy photo veil that made Variedades look re-edited. */
@media (max-width: 720px) {
  .combo-page main > #geneticas .strain-art::after {
    display: none;
  }

  .combo-page main > #geneticas .strain-art img {
    filter: none;
  }

  .combo-page main > #geneticas .gold .strain-art img,
  .combo-page main > #geneticas .head-punch .strain-art img,
  .combo-page main > #geneticas .bike .strain-art img,
  .combo-page main > #geneticas .amnesia .strain-art img {
    object-position: center center;
  }

  .combo-page main > #geneticas .gold .strain-art img {
    transform: scale(1.52);
  }

  .combo-page main > #geneticas .head-punch .strain-art img {
    transform: scale(1.58);
  }

  .combo-page main > #geneticas .bike .strain-art img {
    transform: scale(1.18);
  }

  .combo-page main > #geneticas .amnesia .strain-art img {
    transform: scale(1.48);
  }

  .combo-page main > #geneticas .strain:nth-child(5) .strain-art img {
    transform: scale(1.1);
  }

  .combo-page .feed-page .feed-brand-cards .feed-photo-button img {
    object-fit: cover;
    object-position: center center;
  }
}

.desktop-scroll-cue,
.section-scroll-cue,
.members-next-panel {
  display: none;
}

@media (min-width: 721px) {
  .combo-page .hero {
    height: 100svh;
    min-height: 100svh;
    align-items: start;
    overflow-x: hidden;
    overflow-y: auto;
    padding: var(--app-topbar) 0 0;
    scroll-snap-type: y proximity;
    scrollbar-width: none;
  }

  .combo-page .hero::-webkit-scrollbar,
  .combo-page #socios.section:target::-webkit-scrollbar {
    display: none;
  }

  .combo-page .hero-content {
    min-height: calc(100svh - var(--app-topbar));
    align-content: end;
    padding-bottom: 72px;
    scroll-snap-align: start;
  }

  .desktop-scroll-cue,
  .section-scroll-cue {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 241, 236, 0.22);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--bone);
    background: rgba(5, 5, 5, 0.72);
    font: inherit;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
  }

  .desktop-scroll-cue::after,
  .section-scroll-cue::after {
    content: "↓";
    margin-left: 9px;
    font-size: 1rem;
    line-height: 1;
  }

  .hero-scroll-cue {
    position: absolute;
    left: 50%;
    top: calc(100svh - 62px);
    z-index: 4;
    transform: translateX(-50%);
  }

  #asociarse .conditions-panel {
    position: relative;
  }

  #asociarse .join-cue {
    justify-self: center;
    margin-top: 10px;
    color: var(--black);
    background: rgba(244, 241, 236, 0.82);
    border-color: rgba(11, 11, 11, 0.16);
  }

  #socios.section:target {
    grid-template-rows: auto auto auto auto;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: none;
    scrollbar-width: none;
  }

  #socios .members-panel,
  #socios .members-next-panel {
    scroll-snap-align: start;
  }

  #socios .members-panel {
    min-height: calc(100svh - var(--app-topbar) - 154px);
    max-height: calc(100svh - var(--app-topbar) - 154px);
    align-items: start;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
  }

  #socios .members-panel::-webkit-scrollbar {
    display: none;
  }

  #socios .pickup-form {
    height: auto;
    min-height: max-content;
    overflow: visible;
  }

  #socios .members-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 20;
    transform: translateX(-50%);
  }

  #socios .members-next-panel {
    min-height: calc(100svh - var(--app-topbar) - 78px);
    display: grid;
    align-content: center;
    gap: 12px;
    margin-bottom: 44px;
    padding: 28px;
    border: 1px solid rgba(244, 241, 236, 0.12);
    background: rgba(23, 27, 32, 0.92);
  }

  #socios .members-next-panel h3 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 0.9;
    text-transform: uppercase;
  }

  #socios .members-next-panel p:last-child {
    max-width: 680px;
  }

  #geneticas .strain:nth-child(5) .strain-art img,
  #geneticas .strain:nth-child(7) .strain-art img {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }
}

@media (max-width: 720px) {
  .desktop-scroll-cue,
  .section-scroll-cue,
  .members-next-panel {
    display: none !important;
  }
}

/* Desktop v62: isolate the web layout fixes from the approved mobile version. */
@media (min-width: 721px) {
  .combo-page .hero {
    scroll-snap-type: none;
    scroll-padding-top: 0;
    overscroll-behavior: contain;
  }

  .combo-page .hero-content {
    scroll-snap-align: none;
  }

  .combo-page .hero-media {
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.34) 0%, rgba(11, 11, 11, 0.66) 100%),
      url("assets/media/hero-main-drive.jpg") center 62% / min(90svh, 930px, 82vw) auto no-repeat,
      #050505;
  }

  .combo-page main > #geneticas .strain-art {
    height: calc(100svh - var(--app-topbar) - 260px);
    min-height: calc(100svh - var(--app-topbar) - 260px);
    padding: 0;
    background: #050505;
  }

  .combo-page main > #geneticas .strain-art picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .combo-page main > #geneticas .strain-art img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .combo-page main > #geneticas .strain:nth-child(5) .strain-art img {
    object-position: center 58%;
  }

  .combo-page main > #producto.section:target,
  .combo-page main > #cultivo.section:target {
    padding-bottom: 30px;
  }

  .combo-page main > #producto .gallery-strip,
  .combo-page main > #cultivo .gallery-strip {
    align-items: stretch;
    padding-bottom: 30px;
  }

  .combo-page main > #producto .gallery-card,
  .combo-page main > #cultivo .gallery-card {
    height: calc(100svh - var(--app-topbar) - 176px);
    min-height: 0;
    background: #050505;
  }

  .combo-page main > #producto .gallery-card > img,
  .combo-page main > #cultivo .gallery-card > img,
  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child > img,
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
    object-position: center center;
    background: transparent;
    transform: none;
  }

  html:has(body.combo-page main > #geneticas.section:target),
  body.combo-page:has(main > #geneticas.section:target) {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.combo-page:has(main > #geneticas.section:target) main {
    min-height: calc(200svh - var(--app-topbar));
  }

  body.combo-page:has(main > #geneticas.section:target) .hero {
    display: grid;
  }

  body.combo-page:has(main > #geneticas.section:target) main > #geneticas.section:target {
    position: relative;
    inset: auto;
    z-index: 1;
    min-height: calc(100svh - var(--app-topbar));
    scroll-margin-top: var(--app-topbar);
  }
}

/* Desktop v64/v68: make the hero flower the focus and push the reflection into the lower crop. */
@media (min-width: 721px) {
  .combo-page .hero-media {
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(11, 11, 11, 0.24) 0%, rgba(11, 11, 11, 0.52) 100%),
      url("assets/media/hero-main-drive.jpg") center calc(50% + 126px) / min(102svh, 1050px, 86vw) auto no-repeat,
      #050505;
  }

  .combo-page .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.08), transparent 30%),
      linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0) 52%, rgba(5, 5, 5, 0.5) 68%, rgba(5, 5, 5, 0.9) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.12) 30%, rgba(5, 5, 5, 0.12) 70%, rgba(5, 5, 5, 0.8) 100%);
  }
}

/* Desktop v65: Variedades lives directly below the main screen, so wheel/trackpad scroll works natively. */
@media (min-width: 721px) {
  html:has(body.combo-page:not(:has(main > .section:target))),
  body.combo-page:not(:has(main > .section:target)),
  html:has(body.combo-page:has(main > #geneticas.section:target)),
  body.combo-page:has(main > #geneticas.section:target) {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.combo-page:not(:has(main > .section:target)) main,
  body.combo-page:has(main > #geneticas.section:target) main {
    min-height: calc(200svh - var(--app-topbar));
  }

  body.combo-page:not(:has(main > .section:target)) .hero,
  body.combo-page:has(main > #geneticas.section:target) .hero {
    height: 100svh;
    min-height: 100svh;
    display: grid;
    overflow: hidden;
  }

  body.combo-page:not(:has(main > .section:target)) main > #geneticas,
  body.combo-page:has(main > #geneticas.section:target) main > #geneticas.section:target {
    position: relative;
    inset: auto;
    z-index: 1;
    min-height: calc(100svh - var(--app-topbar));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    scroll-margin-top: var(--app-topbar);
  }
}

/* Desktop v66: restore native document scrolling on home, keep overlay behavior for the rest of the menu. */
@media (min-width: 721px) {
  html,
  body.combo-page {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.combo-page main {
    min-height: calc(200svh - var(--app-topbar));
  }

  body.combo-page .hero {
    height: 100svh;
    min-height: 100svh;
    overflow: visible;
  }

  body.combo-page:not(:has(main > .section:target)) .hero,
  body.combo-page:has(main > #geneticas.section:target) .hero {
    overflow: visible;
  }

  body.combo-page main > #geneticas {
    position: relative;
    inset: auto;
    z-index: 1;
    min-height: calc(100svh - var(--app-topbar));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    scroll-margin-top: var(--app-topbar);
  }

  body.combo-page:has(main > .section:target:not(#geneticas)) {
    height: 100%;
    overflow: hidden;
  }

  body.combo-page:has(main > .section:target:not(#geneticas)) main {
    min-height: 100svh;
  }

  body.combo-page:has(main > .section:target:not(#geneticas)) .hero,
  body.combo-page:has(main > .section:target:not(#geneticas)) main > #geneticas {
    display: none;
  }
}

/* Desktop v69: add bottom breathing room to image cards without changing approved crops or assets. */
@media (min-width: 721px) {
  .combo-page main > #geneticas .strains-grid,
  .combo-page main > #producto .gallery-strip,
  .combo-page main > #cultivo .gallery-strip,
  .combo-page main > #packaging .gallery-strip {
    align-items: start;
    padding-bottom: 82px;
  }

  .combo-page main > #geneticas .strain {
    height: calc(100svh - var(--app-topbar) - 196px);
    min-height: 0;
  }

  .combo-page main > #geneticas .strain-art {
    height: calc(100svh - var(--app-topbar) - 330px);
    min-height: 0;
  }

  .combo-page main > #producto .gallery-card,
  .combo-page main > #cultivo .gallery-card,
  .combo-page main > #packaging .gallery-card {
    height: calc(100svh - var(--app-topbar) - 204px);
    min-height: 0;
    overflow: hidden;
  }

  .combo-page main > #producto .gallery-card > img,
  .combo-page main > #cultivo .gallery-card > img {
    height: 100%;
  }
}

/* Desktop v70: recenter only the third Flores seleccionadas image. */
@media (min-width: 721px) {
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > img {
    object-position: 100% center;
  }
}

/* Desktop v71: keep Cultivo's first card aligned with the page margin when scroll snap initializes. */
@media (min-width: 721px) {
  .combo-page main > #cultivo .gallery-strip {
    scroll-padding-inline: max(20px, calc((100vw - 1160px) / 2));
  }
}

/* v72: Variedades cards should end just after the strain name; no acronym overlays. */
.combo-page main > #geneticas .strain-art span {
  display: none !important;
}

@media (min-width: 721px) {
  .combo-page main > #geneticas .strains-grid {
    align-items: start;
    scroll-padding-inline: max(20px, calc((100vw - 1160px) / 2));
  }

  .combo-page main > #geneticas .strain {
    height: auto;
    min-height: 0;
    align-content: start;
    gap: 12px;
  }

  .combo-page main > #geneticas .strain-art {
    height: clamp(360px, calc(100svh - var(--app-topbar) - 430px), 460px);
    min-height: 0;
  }

  .combo-page main > #geneticas .strain-art img {
    min-height: 0;
  }

  .combo-page main > #geneticas .strain h3 {
    position: static;
    min-height: 0;
    margin: 0;
    padding: 0 2px;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.12;
    text-shadow: none;
  }
}

/* Desktop v74: align Condiciones card subtitles on the same row. */
@media (min-width: 721px) {
  .combo-page #asociarse .conditions-grid .norm-card {
    align-content: start;
    grid-template-rows: 46px 42px 1fr;
    gap: 12px;
  }

  .combo-page #asociarse .conditions-grid .norm-card span,
  .combo-page #asociarse .conditions-grid .norm-card h3,
  .combo-page #asociarse .conditions-grid .norm-card p {
    align-self: start;
  }
}

/* Desktop v76: move the third Flores seleccionadas image 1cm to the left without leaving gaps. */
@media (min-width: 721px) {
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > img {
    width: 100%;
    max-width: none;
    transform: translateX(-38px) scale(0.92);
    transform-origin: center center;
  }
}

/* Desktop v77: keep Presentacion por genetica mockups complete inside the shorter cards. */
@media (min-width: 721px) {
  .combo-page main > #packaging .mockup-photo img {
    transform: scale(1.95);
  }
}

/* Desktop v78: make only the home hero action buttons 50% smaller. */
@media (min-width: 721px) {
  .combo-page .hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .combo-page .hero-actions .btn {
    min-height: 31px;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.65rem;
    line-height: 1;
  }

  .combo-page .hero-actions .btn:hover {
    transform: translateY(-1px);
  }
}

/* Desktop v79: reduce the home fact-strip height while keeping text size intact. */
@media (min-width: 721px) {
  .combo-page .hero-facts span {
    min-height: 34px;
    padding: 6px 12px;
  }
}

/* v80: WhatsApp link color only inside Como asociarse. */
.combo-page #asociarse .process-panel .step p a[data-whatsapp] {
  color: #06150b;
  border-color: rgba(37, 211, 102, 0.88);
  background: linear-gradient(135deg, var(--whatsapp), #7df2a1);
}

.combo-page #asociarse .process-panel .step p a[data-whatsapp]:hover {
  background: linear-gradient(135deg, #34e276, var(--whatsapp));
}

/* Desktop v82: keep Packaging cards fully inside the viewport and keep mockups uncropped. */
@media (min-width: 721px) {
  .combo-page main > #packaging .gallery-strip {
    width: min(1112px, calc(100vw - 120px));
    max-width: 1112px;
    margin-inline: auto;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .combo-page main > #packaging .mockup-photo img {
    transform: scale(1.8);
  }
}

/* Desktop v84: keep Flores seleccionadas 1 and 3 complete, without zoom or drift. */
@media (min-width: 721px) {
  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child > img,
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center center;
    transform: none;
    transform-origin: center center;
    background: #050505;
  }
}

/* Desktop v85: web-only prepared crops for Flores 1 and 3 fill the cards cleanly. */
@media (min-width: 721px) {
  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child > picture,
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > picture {
    width: 100%;
    height: 100%;
    display: block;
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child > picture > img,
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > picture > img {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: none;
    background: #050505;
  }
}

/* Desktop v89: lift Packaging mockups so the bag is centered in the frame. */
@media (min-width: 721px) {
  .combo-page main > #packaging .mockup-photo img {
    transform: translateY(-38px) scale(1.8);
  }
}

/* Desktop v91: center Asociarse cards vertically between the menu bar and page bottom. */
@media (min-width: 721px) {
  .combo-page main > #asociarse.section:target {
    padding-bottom: 0;
  }

  .combo-page #asociarse .join-scroll {
    height: calc(100svh - var(--app-topbar));
  }

  .combo-page #asociarse .join-panel {
    position: relative;
    height: calc(100svh - var(--app-topbar));
    min-height: calc(100svh - var(--app-topbar));
    align-content: start;
    padding-bottom: 0;
  }

  .combo-page #asociarse .conditions-grid,
  .combo-page #asociarse .process-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .combo-page #asociarse .conditions-grid {
    width: min(1400px, calc(100vw - 40px));
    max-width: 1400px;
  }

  .combo-page #asociarse .process-grid {
    width: min(1160px, calc(100vw - 140px));
    max-width: 1160px;
  }

  .combo-page #asociarse .join-cue {
    position: absolute;
    left: 50%;
    top: calc(50% + 166px);
    margin: 0;
    transform: translateX(-50%);
  }
}

/* Desktop v92: align that center to the visible area, not the panel's inner offset. */
@media (min-width: 721px) {
  .combo-page #asociarse .conditions-grid,
  .combo-page #asociarse .process-grid {
    top: calc(50% - 21px);
  }

  .combo-page #asociarse .join-cue {
    top: calc(50% + 145px);
  }
}

/* Desktop v93: keep the packaging cards photo centered without moving it outside its original white background. */
@media (min-width: 721px) {
  .combo-page main > #packaging .packaging-photo picture {
    width: 100%;
    height: 100%;
    display: block;
    background: #fff;
  }

  .combo-page main > #packaging .packaging-photo picture > img {
    width: 100%;
    height: 100%;
    display: block;
  }
}

/* Desktop v97: first Flores image is a single original image filling the frame. */
@media (min-width: 721px) {
  .combo-page main > #producto.product-section .product-gallery {
    --product-card-height: calc(100svh - var(--app-topbar) - 204px);
    --first-flower-card-width: calc(var(--product-card-height) * 0.8);
    grid-template-columns: var(--first-flower-card-width) repeat(4, 360px);
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child {
    background: #050505;
    width: var(--first-flower-card-width);
    height: var(--product-card-height);
    border: 0;
    outline: 1px solid var(--line-dark);
    outline-offset: -1px;
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child::before {
    content: none;
    display: none;
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child > picture {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child > picture > img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: none;
    background: transparent;
  }
}

/* Desktop v98: lower the third Flores image while keeping the frame fully covered. */
@media (min-width: 721px) {
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > picture {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    background: transparent;
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > picture > img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: translateY(1cm) scale(1.14);
    transform-origin: center center;
    background: transparent;
  }
}

/* Mobile v105: centered mobile-only image crops. Desktop rules and sources stay untouched. */
@media (max-width: 720px) {
  .combo-page .feed-page .feed-photo-button picture {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
  }

  .combo-page .feed-page .feed-photo-button picture > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: none;
    background: transparent;
  }

  .combo-page .feed-page .feed-tile:nth-child(6) .feed-photo-button picture > img,
  .combo-page .feed-page .feed-brand-cards .feed-photo-button picture > img {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child,
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) {
    overflow: hidden;
    background: #050505;
  }

  .combo-page main > #producto.product-section .product-gallery.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child > picture,
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > picture {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: #050505;
  }

  .combo-page main > #producto.product-section .product-gallery .gallery-card:first-child > picture > img,
  .combo-page main > #producto.product-section .product-gallery .gallery-card:nth-child(3) > picture > img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: none;
    background: transparent;
  }
}

/* Mobile v108: tarjetas feed tile uses the airier centered source with a small zoom. */
@media (max-width: 720px) {
  .combo-page .feed-page .feed-brand-cards,
  .combo-page .feed-page .feed-brand-cards .feed-photo-button,
  .combo-page .feed-page .feed-brand-cards .feed-photo-button picture {
    background: #fff;
  }

  .combo-page .feed-page .feed-brand-cards .feed-photo-button picture > img {
    object-fit: cover;
    object-position: center center;
    background: #fff;
    transform: scale(1.13);
    transform-origin: center center;
  }
}

/* Desktop v109: keep Presentacion por genetica packages complete inside each frame. */
@media (min-width: 721px) {
  .combo-page main > #packaging .mockup-photo {
    background: #fff;
  }

  .combo-page main > #packaging .mockup-photo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    display: block;
    padding: 0;
    object-fit: cover;
    object-position: center 54%;
    transform: none;
    background: #fff;
  }
}

/* v110: Gelatto uses the original third Flores image, centered on the flower, not the reflection. */
.combo-page main > #geneticas .gelatto .strain-art {
  background: #050505;
}

.combo-page main > #geneticas .gelatto .strain-art img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center 34%;
  transform: translateY(14%) scale(1.02);
  transform-origin: center center;
}

@media (max-width: 720px) {
  .combo-page main > #geneticas .gelatto .strain-art img {
    object-position: center 34%;
  }
}

/* v114: Condiciones now has four frames, so the desktop grid spans the full section width. */
@media (min-width: 721px) {
  .combo-page #asociarse .conditions-grid {
    width: min(1400px, calc(100vw - 40px));
    max-width: 1400px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .combo-page #asociarse .conditions-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

/* v119: Packaging-only frame refinement. Desktop gets taller/narrower frames; mobile only recenters the package mockups laterally. */
@media (min-width: 721px) {
  .combo-page main > #packaging .gallery-strip {
    grid-auto-columns: clamp(280px, 27vw, 330px);
  }

  .combo-page main > #packaging .gallery-card {
    height: calc(100svh - var(--app-topbar) - 204px);
    min-height: 0;
  }

  .combo-page main > #packaging .mockup-photo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    display: block;
    padding: 0;
    object-fit: cover;
    object-position: center 54%;
    transform: none;
    transform-origin: center center;
    background: #fff;
  }

  .combo-page main > #packaging .packaging-photo picture {
    width: 100%;
    height: 100%;
    display: block;
    background: #fff;
  }

  .combo-page main > #packaging .packaging-photo picture > img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: center center;
    transform: scale(1.13);
    transform-origin: center center;
    background: #fff;
  }
}

@media (max-width: 720px) {
  .combo-page main > #packaging .mockup-photo img {
    object-position: center center;
    transform: translateX(-3%) scale(1.54);
    transform-origin: center center;
  }
}

/* v120: Cultivo desktop-only frames use more of the lower viewport without touching mobile. */
@media (min-width: 721px) {
  .combo-page main > #cultivo .gallery-card {
    height: calc(100svh - var(--app-topbar) - 136px);
  }

  .combo-page main > #cultivo .gallery-card > img {
    height: 100%;
  }
}

/* v121: Cultivo mobile-only bigger slide images. Desktop remains controlled by the v120 rule above. */
@media (max-width: 720px) {
  .combo-page main > #cultivo.section:target {
    padding-bottom: 18px;
    overflow: hidden;
  }

  .combo-page main > #cultivo .gallery-strip {
    grid-auto-columns: minmax(340px, calc(100vw - 28px));
    gap: 14px;
    padding: 0 14px 14px;
    scroll-padding-inline: 14px;
  }

  .combo-page main > #cultivo .gallery-card {
    height: clamp(540px, calc(100svh - 174px), 700px);
    min-height: 0;
    border-radius: 22px;
  }

  .combo-page main > #cultivo .gallery-card > img {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    object-fit: cover;
    object-position: center center;
  }
}

/* v124: Desktop Variedades becomes a gallery grid, matching the mobile visual logic. */
@media (min-width: 721px) {
  .combo-page main > #geneticas.section {
    padding-bottom: 34px;
    overflow: hidden;
  }

  .combo-page main > #geneticas .section-head {
    margin-bottom: 18px;
  }

  .combo-page main > #geneticas .strains-grid {
    width: min(1160px, calc(100vw - 80px));
    max-width: 1160px;
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .combo-page main > #geneticas .strain {
    position: relative;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #050505;
    box-shadow: none;
  }

  .combo-page main > #geneticas .strain-art {
    position: relative;
    width: 100%;
    height: clamp(150px, calc((100svh - var(--app-topbar) - 202px) / 3), 230px);
    min-height: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    background: #050505;
  }

  .combo-page main > #geneticas .strain-art::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.72) 100%);
  }

  .combo-page main > #geneticas .strain-art picture,
  .combo-page main > #geneticas .strain-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .combo-page main > #geneticas .strain-art img {
    z-index: 0;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center 58%;
    transform: none;
  }

  .combo-page main > #geneticas .gold .strain-art img {
    object-position: center 58%;
  }

  .combo-page main > #geneticas .head-punch .strain-art img {
    object-position: center 55%;
  }

  .combo-page main > #geneticas .amnesia .strain-art img {
    object-position: center 56%;
  }

  .combo-page main > #geneticas .bike .strain-art img {
    object-position: 72% 58%;
  }

  .combo-page main > #geneticas .strain:nth-child(5) .strain-art img {
    object-position: center 58%;
  }

  .combo-page main > #geneticas .gelatto .strain-art img {
    object-position: center 34%;
    transform: translateY(14%) scale(1.02);
  }

  .combo-page main > #geneticas .strain h3 {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 2;
    min-height: 0;
    margin: 0;
    padding: 0;
    color: var(--bone);
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: clamp(0.78rem, 1.05vw, 0.96rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.88);
  }
}

/* v126: Desktop-only masonry for Variedades with frame ratios matched to each photo. */
@media (min-width: 980px) {
  .combo-page main > #geneticas.section {
    overflow-y: auto;
    padding-bottom: 64px;
  }

  .combo-page main > #geneticas .section-head {
    margin-bottom: 16px;
  }

  .combo-page main > #geneticas .strains-grid {
    width: min(1160px, calc(100vw - 80px));
    max-width: 1160px;
    height: auto;
    display: block;
    columns: 5 210px;
    column-gap: 6px;
    overflow: visible;
  }

  .combo-page main > #geneticas .strain {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 6px;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .combo-page main > #geneticas .strain-art {
    height: auto;
    aspect-ratio: 3 / 4;
    background: #050505;
  }

  .combo-page main > #geneticas .strain:nth-child(1) .strain-art {
    aspect-ratio: 9 / 16;
  }

  .combo-page main > #geneticas .strain:nth-child(5) .strain-art {
    aspect-ratio: 4 / 5;
  }

  .combo-page main > #geneticas .strain:nth-child(7) .strain-art {
    aspect-ratio: 4 / 3;
  }

  .combo-page main > #geneticas .strain-art img {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .combo-page main > #geneticas .gelatto .strain-art img {
    object-position: center 35%;
    transform: scale(1.12);
  }

  .combo-page main > #geneticas .strain h3 {
    font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  }
}

/* v127: Desktop Packaging frames match the Cultivo gallery frame size. */
@media (min-width: 721px) {
  .combo-page main > #packaging .gallery-strip {
    width: 100vw;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-inline: max(20px, calc((100vw - 1160px) / 2));
    scroll-padding-inline: max(20px, calc((100vw - 1160px) / 2));
    grid-auto-columns: minmax(360px, 32vw);
  }

  .combo-page main > #packaging .gallery-card {
    height: calc(100svh - var(--app-topbar) - 136px);
    min-height: 0;
  }

  .combo-page main > #packaging .mockup-photo img,
  .combo-page main > #packaging .packaging-photo picture,
  .combo-page main > #packaging .packaging-photo picture > img {
    height: 100%;
  }
}

@media (max-width: 979px) {
  .combo-page main > #geneticas .desktop-only-strain {
    display: none;
  }
}

/* v138: Desktop Variedades keeps masonry, with each crop tuned so the flower stays complete. */
@media (min-width: 980px) {
  .combo-page main > #geneticas.section {
    overflow-x: hidden;
    overflow-y: visible;
    padding-bottom: 44px;
  }

  .combo-page main > #geneticas .section-head {
    margin-bottom: 16px;
  }

  .combo-page main > #geneticas .strains-grid {
    width: min(1240px, calc(100vw - 80px));
    max-width: 1240px;
    height: auto;
    display: block;
    columns: 5 220px;
    column-gap: 8px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .combo-page main > #geneticas .strain {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    margin: 0 0 8px;
    padding: 0;
    break-inside: avoid;
    page-break-inside: avoid;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: #050505;
    box-shadow: none;
  }

  .combo-page main > #geneticas .strain-art {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    overflow: hidden;
    background: #050505;
  }

  .combo-page main > #geneticas .strain-art picture,
  .combo-page main > #geneticas .strain-art img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .combo-page main > #geneticas .strain-art img {
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    transform: none;
    transform-origin: center center;
  }

  .combo-page main > #geneticas .strain:nth-child(2) .strain-art,
  .combo-page main > #geneticas .strain:nth-child(3) .strain-art,
  .combo-page main > #geneticas .strain:nth-child(4) .strain-art,
  .combo-page main > #geneticas .strain:nth-child(6) .strain-art {
    aspect-ratio: 1 / 1;
  }

  .combo-page main > #geneticas .strain:nth-child(5) .strain-art,
  .combo-page main > #geneticas .strain:nth-child(8) .strain-art,
  .combo-page main > #geneticas .strain:nth-child(9) .strain-art {
    aspect-ratio: 3 / 4;
  }

  .combo-page main > #geneticas .gold .strain-art img {
    object-position: center 52%;
    transform: scale(1.02);
  }

  .combo-page main > #geneticas .head-punch .strain-art img {
    object-position: center 54%;
    transform: scale(1.18);
  }

  .combo-page main > #geneticas .bike .strain-art img {
    object-position: center 54%;
    transform: scale(1.46);
  }

  .combo-page main > #geneticas .amnesia .strain-art img {
    object-position: center 55%;
    transform: scale(1.72);
  }

  .combo-page main > #geneticas .strain:nth-child(5) .strain-art img {
    object-position: center center;
    transform: none;
  }

  .combo-page main > #geneticas .strain:nth-child(6) .strain-art img {
    object-position: center center;
    transform: none;
  }

  .combo-page main > #geneticas .gelatto .strain-art img {
    object-position: center 34%;
    transform: scale(1.12);
  }

  .combo-page main > #geneticas .strain:nth-child(8) .strain-art img {
    object-position: center center;
    transform: scale(1.02);
  }

  .combo-page main > #geneticas .strain:nth-child(9) .strain-art img {
    object-position: center center;
    transform: none;
  }

  .combo-page main > #geneticas .strain h3 {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: clamp(0.8rem, 0.95vw, 0.94rem);
  }
}

@media (max-width: 720px) {
  .combo-page #socios .members-panel,
  #socios .members-panel {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    max-height: calc(100svh - var(--app-topbar) - 154px);
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scroll-snap-type: none !important;
    scrollbar-width: none;
  }

  .combo-page #socios .members-panel::-webkit-scrollbar,
  #socios .members-panel::-webkit-scrollbar {
    display: none;
  }

  .combo-page #socios .pickup-form,
  #socios .pickup-form {
    align-self: start !important;
    height: auto !important;
    min-height: max-content !important;
    overflow: visible !important;
  }
}
