/* ==========================================================
   HERO SLIDER - hero.css
   ========================================================== */

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 960px;
  overflow: hidden;
}

/* ── Viewport & Track ──────────────────────────────────── */
.hs-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hs-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
}

/* ── Slide ─────────────────────────────────────────────── */
.hs-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ── Background Video / Image ──────────────────────────── */
.hs-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  overflow: hidden;
}

.hs-bg video,
.hs-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.1s linear;
}

/* Dark gradient overlay */
.hs-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,12,0.75) 0%, rgba(10,10,12,0.3) 55%, transparent 100%),
    linear-gradient(to top, rgba(10,10,12,0.5) 0%, transparent 50%);
}

/* ── Rank Number ───────────────────────────────────────── */
.vom-rank {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  z-index: 1;
}

/* ── Info Panel ────────────────────────────────────────── */
.vom-info {
  position: absolute;
  bottom: clamp(80px, 12vh, 140px);
  left: 50%;
  transform: translateX(-50%);
  width: var(--wrap);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-inline: 0;
}

/* ── Tag Badge ─────────────────────────────────────────── */
.vom-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.vom-tag i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}

.vom-tag.hyb i { background: #f59e0b; }

/* ── Slide Title ───────────────────────────────────────── */
.vom-info h3 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* ── Specs Row ─────────────────────────────────────────── */
.vom-specs {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  align-items: flex-end;
}

.vs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vs .v {
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.vs .v em {
  font-style: normal;
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.7;
  margin-left: 1px;
}

.vs .t {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

/* ── Price ─────────────────────────────────────────────── */
.vom-price {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.vom-price b {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-left: 4px;
}

/* ── CTA Buttons ───────────────────────────────────────── */
.vom-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Dot Navigation ────────────────────────────────────── */
.hs-dots {
  position: absolute;
  bottom: clamp(28px, 4vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  width: var(--wrap);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hs-dots button {
  height: 3px;
  width: 32px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  transition: width 0.35s var(--ease), background 0.35s;
  padding: 0;
}

.hs-dots button.on {
  width: 56px;
  background: #fff;
}

/* ── Arrow Buttons ─────────────────────────────────────── */
.hs-prev,
.hs-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}

.hs-prev { left: clamp(16px, 2vw, 40px); }
.hs-next { right: clamp(16px, 2vw, 40px); }

.hs-prev:hover, .hs-next:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.05);
}

.hs-prev svg, .hs-next svg { width: 20px; height: 20px; }

/* ── Featured Card (below hero) ────────────────────────── */
.featured-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--glass-stroke);
  background: var(--glass-bg);
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .featured-card {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.fc-media {
  position: relative;
  min-height: 300px;
  background: var(--bg2);
}

@media (min-width: 768px) {
  .fc-media { min-height: 460px; }
}

.fc-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.fc-verified {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(14,14,16,0.55);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  z-index: 1;
}

.fc-verified svg {
  width: 12px;
  height: 12px;
  fill: #f59e0b;
}

.fc-brand-logo {
  position: absolute;
  top: 18px;
  right: 24px;
  height: 96px;
  width: auto;
  z-index: 1;
  pointer-events: none;
}

.fc-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
}

.fc-body h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  margin-bottom: 8px;
}

.fc-body .fc-desc {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 24px;
  opacity: 0.75;
  line-height: 1.65;
}

.fc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 34px);
  margin-bottom: 28px;
}

.fc-spec-val {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1;
}

.fc-spec-lab {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  opacity: 0.7;
  margin-top: 4px;
}

.fc-cta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Mobile responsive ─────────────────────────────────── */
@media (max-width: 767px) {
  .vom-rank { font-size: clamp(80px, 22vw, 140px); right: 5%; }
  .vom-info { bottom: 100px; }
  .vom-specs { gap: 20px; }
  .hs-prev, .hs-next { display: none; }
}
