/* ═══════════════════════════════════════════════════════════════════
   HOME PAGE CINEMATIC STYLES — HK Drinks (hkdrinks.shop)
   Hero video + side-by-side brand layouts + cocktail gallery
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. HERO SCENE (full-screen video) ──────────────────────── */

.scene-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #000;
}

.scene-hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-hero__video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.scene-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
}

.scene-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
}

.scene-hero__eyebrow {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.scene-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  max-width: 900px;
  margin-bottom: 24px;
}

.scene-hero__title em {
  color: var(--gold);
  font-style: normal;
}

.scene-hero__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: #fff;
  max-width: 620px;
  margin-bottom: 40px;
}

.scene-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.scene-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.scene-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ── 2. BRAND SCENES (side-by-side) ──────────────────────── */

.brand-scene {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.brand-scene--reverse {
  background: var(--bg-secondary);
}

.brand-scene__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-scene__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-scene--reverse .brand-scene__text {
  order: 2;
}

.brand-scene__eyebrow {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-scene__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}

.brand-scene__title--gold {
  color: var(--gold);
}

.brand-scene__desc {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-muted);
}

.brand-scene__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-scene__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.brand-scene--reverse .brand-scene__image {
  order: 1;
}

/* ── 3. NEW ARRIVALS CAROUSEL ────────────────────────── */

.arrivals-section {
  padding: 80px 0;
}

.arrivals-header {
  text-align: center;
  margin-bottom: 48px;
}

.arrivals-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrivals-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}

.arrivals-carousel::-webkit-scrollbar {
  display: none;
}

/* Carousel cards — smaller than full shop cards, 3 visible */
.shop-card--carousel {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  min-height: 200px;
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
}

.shop-card--carousel:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}

.shop-card__img-wrap--carousel {
  width: 140px;
  flex-shrink: 0;
  background: var(--bg-section-alt);
  overflow: hidden;
  position: relative;
  align-self: stretch;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
}

.shop-card__info--carousel {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-card__info--carousel .shop-card__type {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.shop-card__info--carousel .shop-card__name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.shop-card__info--carousel .shop-card__desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card__info--carousel .shop-card__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Carousel arrows */
.arrivals-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  z-index: 2;
}

.arrivals-arrow:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
}

.arrivals-arrow i {
  font-size: 0.85rem;
}

.arrivals-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── 4. COCKTAIL GALLERY ────────────────────────────── */

.cocktails-scene {
  padding: 80px 0;
  background: var(--bg-primary);
}

.cocktails-scene__header {
  text-align: center;
  margin-bottom: 48px;
}

.cocktails-scene__header .section-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.cocktails-scene__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.cocktail-tile {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.cocktail-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cocktail-tile__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.cocktail-tile__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cocktail-tile:hover .cocktail-tile__img-wrap img {
  transform: scale(1.05);
}

.cocktail-tile__body {
  padding: 16px;
}

.cocktail-tile__body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.cocktail-tile__body p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cocktails-scene__cta {
  text-align: center;
}

/* ── 4. RESPONSIVE ──────────────────────────────────── */

@media (max-width: 768px) {
  .brand-scene {
    padding: 60px 0;
  }

  .brand-scene__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-scene__text {
    order: 1 !important;
  }

  .brand-scene__image {
    order: 2 !important;
  }

  .cocktails-scene__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .cocktails-scene__grid {
    grid-template-columns: 1fr;
  }

  .scene-hero__cta {
    flex-direction: column;
    align-items: center;
  }
}
