/* =====================================================
   MASHERLAND LANDING  —  Link-in-bio style
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root { --font: 'Poppins', sans-serif; }

html, body {
  min-height: 100%;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  background: #080808;
  color: #fff;
}

/* ---- VIDEO BACKGROUND ---- */
.yt-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #080808 url('/site/images/bh-home-1.png') center/cover no-repeat;
}
.yt-bg iframe,
.yt-bg .yt-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw;   /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.yt-bg .yt-video {
  object-fit: cover;
}
.yt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.65) 100%);
}

/* ---- PAGE WRAPPER ---- */
.lp-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 36px 16px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-col {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---- HEADER ---- */
.lp-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lp-logo-circle {
  width: 82px; height: 82px;
  border-radius: 50%;
  _border: 3px solid #fff;
  background: rgba(0,0,0,.65);
  display: flex; align-items: center; justify-content: center;
  _padding: 14px;
  flex-shrink: 0;
  overflow: hidden;
}
.lp-logo-circle img { width: 100%; height: 100%; object-fit: contain; }

.lp-header__text h1 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.25;
}
.lp-header__text p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---- SOCIAL ICONS ---- */
.lp-social {
  display: flex;
  gap: 10px;
}
.lp-social a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.lp-social a:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
}

/* ---- PRODUCT PHOTOS SLIDER ---- */
.lp-photos {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.lp-photos::-webkit-scrollbar { display: none; }
.lp-photo {
  flex: 0 0 calc(50% - 4px);
  scroll-snap-align: start;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.lp-photo__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px 8px 8px;
  font-size: .66rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
  background: linear-gradient(to top,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.5) 55%,
    rgba(0,0,0,0) 100%);
}
.lp-photo img { width: 100%; height: 100%; object-fit: cover; }
.lp-photo__ph {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.25);
  font-size: .68rem;
}
.lp-photo__ph i { font-size: 1.6rem; }
.lp-photo__corner {
  position: absolute;
  top: 5px; right: 5px;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem;
  color: rgba(255,255,255,.55);
}

/* ---- PROMO TEXT ---- */
.lp-promo { text-align: center; padding: 4px 0; }
.lp-promo__main {
  font-size: .98rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.lp-promo__free {
  margin-top: 8px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}

/* ---- CTA BUTTONS ---- */
.lp-buttons { display: flex; flex-direction: column; gap: 10px; }

.lp-btn {
  display: flex;
  align-items: center;
  background: #fff;
  color: #111;
  border-radius: 100px;
  padding: 6px 20px 6px 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  min-height: 62px;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 3px 16px rgba(0,0,0,.4);
}
.lp-btn:hover {
  transform: scale(1.015);
  box-shadow: 0 6px 24px rgba(0,0,0,.55);
}
.lp-btn:active { transform: scale(.99); }

.lp-btn__icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-right: 14px;
  color: #fff;
  font-size: 1.2rem;
  overflow: hidden;
  padding: 11px;
}
.lp-btn__icon img {
  width: 100%;
  filter: brightness(0) invert(1); /* logo siempre blanco */
}
.lp-btn__label {
  flex: 1;
  text-align: center;
}

/* ---- PRODUCTS MÁS VENDIDOS ---- */
.lp-products {}
.lp-products__hdr {
  text-align: center;
  margin-bottom: 12px;
}
.lp-products__hdr h2 {
  font-size: .97rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.lp-products__hdr p {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin-top: 4px;
}

.lp-products__scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.lp-products__scroll::-webkit-scrollbar { display: none; }

.lp-prod-item {
  flex: 0 0 calc(50% - 4px);
  scroll-snap-align: start;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,.25);
  font-size: .72rem;
  position: relative;
  text-decoration: none;
}
.lp-prod-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.lp-prod-item i { font-size: 2rem; }
.lp-prod-item > span { font-size: .7rem; }

/* descuento */
.lp-prod-badge {
  position: absolute;
  top: 7px; left: 7px;
  z-index: 2;
  background: #e23744;
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 3px 7px;
  border-radius: 5px;
}

/* nombre + precio sobre la imagen */
.lp-prod-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 22px 8px 8px;
  background: linear-gradient(to top,
    rgba(0,0,0,.9) 0%,
    rgba(0,0,0,.55) 55%,
    rgba(0,0,0,0) 100%);
}
.lp-prod-cap__name {
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-prod-cap__price {
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
}
.lp-prod-cap__price del {
  font-size: .62rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  margin-right: 4px;
}

.lp-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}
.lp-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transition: all .25s;
}
.lp-dots span.on {
  width: 18px;
  border-radius: 3px;
  background: #fff;
}

/* ---- NEWSLETTER CARD ---- */
.lp-newsletter {
  background: rgba(12,12,18,.88);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 26px 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lp-newsletter h3 {
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
  margin-bottom: 8px;
}
.lp-newsletter p {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 16px;
}
.lp-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lp-newsletter input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: .85rem;
  outline: none;
  transition: border-color .2s;
}
.lp-newsletter input::placeholder { color: rgba(255,255,255,.28); }
.lp-newsletter input:focus { border-color: rgba(255,255,255,.45); }
.lp-newsletter button {
  padding: 13px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.lp-newsletter button:hover { background: rgba(255,255,255,.24); }

/* ---- FOOTER CARD ---- */
.lp-footer {
  background: rgba(12,12,18,.88);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lp-footer h3 {
  font-size: .97rem;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 12px;
}
.lp-footer p {
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
}

/* ---- WhatsApp float ---- */
.lp-wa {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 200;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s;
}
.lp-wa:hover { transform: scale(1.1); }

/* ---- RESPONSIVE ---- */
@media (min-width: 560px) {
  .lp-prod-item { flex: 0 0 calc(45% - 4px); }
}
