/* Dream Lands — Hero (live styles, marquee, phone mockup) */
/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  color: #fff;
  margin-top: -56px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 6rem 2rem 1.5rem;
}

/* ── Hero phone mockup — hidden on desktop, shown on mobile only ── */
.hero-visual {
  display: none;
}

.hero-phone {
  width: 240px;
  border-radius: 32px;
  background: #0a0f0c;
  border: 6px solid #14201a;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .06);
  overflow: hidden;
  animation: heroPhoneFloat 5s ease-in-out infinite;
}

@keyframes heroPhoneFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-phone-screen {
  position: relative;
  aspect-ratio: 9 / 18;
  background: #000;
  overflow: hidden;
}

.hero-phone-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right actions: Save / Call / WhatsApp */
.hero-phone-actions {
  position: absolute;
  right: .55rem;
  bottom: 2.8rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.hero-phone-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .12rem;
  color: #fff;
}

.hero-phone-action svg {
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .6));
}

.hero-phone-action em {
  font-style: normal;
  font-size: .5rem;
  font-weight: 700;
  color: #fff;
}

/* Bottom info overlay */
.hero-phone-overlay {
  position: absolute;
  left: .7rem;
  right: 2.6rem;
  bottom: 2.1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.hero-phone-cat {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .58rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: .2rem .5rem;
  align-self: flex-start;
  margin-bottom: .1rem;
}

.hero-phone-price-row {
  display: flex;
  align-items: center;
  gap: .2rem;
  color: #fff;
}

.hero-phone-price {
  font-size: .9rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
}

.hero-phone-sep {
  font-size: .58rem;
  color: rgba(255, 255, 255, .55);
}

.hero-phone-loc {
  font-size: .58rem;
  font-weight: 700;
  color: #fff;
}

.hero-phone-meta-row {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.hero-phone-meta {
  font-size: .58rem;
  font-weight: 700;
  color: #fff;
}

.hero-phone-details {
  font-size: .55rem;
  color: rgba(255, 255, 255, .6);
}

/* Bottom nav */
.hero-phone-bnav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2rem;
  background: rgba(8, 14, 10, .92);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 3;
}

.hero-phone-bnav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .08rem;
  color: rgba(255, 255, 255, .45);
}

.hero-phone-bnav-tab em {
  font-style: normal;
  font-size: .38rem;
  font-weight: 600;
}

.hero-phone-bnav-active {
  color: var(--acid);
}

@media (max-width: 991px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
    padding: 6.5rem 1.5rem 2.5rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }
}

/* Mild overlay — disabled when no hero image */
.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  flex: 1 1 420px;
}


@media (min-width: 768px) {
  .header-inner {
    margin: 0 1rem;
  }
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .hero {
    background-attachment: scroll;
  }

  .hero-content {
    gap: 1rem;
    padding: 4.5rem 1.25rem 1.5rem;
  }
}

