/** Shopify CDN: Minification failed

Line 45:0 All "@import" rules must come first

**/
/* ==========================================================================
   NIHARA STUDIO - LUXURY EDITORIAL HERO BANNER / SLIDESHOW
   High-Performance Vanilla CSS | GPU Accelerated | Zero Dependencies
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Theme Variables
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Luxury Fashion Baseline */
  --nihara-bg-dark: #0b0b0c;
  --nihara-bg-light: #fbf9f5;
  --nihara-sand: #f4f0ea;
  --nihara-accent-gold: #d4af37;
  --nihara-accent-warm: #e8d8c8;
  --nihara-text-light: #ffffff;
  --nihara-text-dark: #121214;
  --nihara-text-muted: rgba(255, 255, 255, 0.7);
  --nihara-border-glass: rgba(255, 255, 255, 0.18);
  --nihara-glass-bg: rgba(18, 18, 20, 0.45);

  /* Typography Fonts */
  --nihara-font-heading: "Cormorant Garamond", "Playfair Display", "Italiana", Didot, serif;
  --nihara-font-body: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions & Timing */
  --nihara-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nihara-ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --nihara-ease-apple: cubic-bezier(0.25, 1, 0.5, 1);
  --nihara-transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --nihara-transition-medium: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --nihara-transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);

  /* Elevation & Shadows */
  --nihara-shadow-luxury: 0 30px 60px -12px rgba(0, 0, 0, 0.4), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
  --nihara-glow-soft: 0 0 50px rgba(212, 175, 55, 0.15);
}

/* Import Luxury Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   2. Core Section Layout & Base Reset
   -------------------------------------------------------------------------- */
.nihara-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--nihara-bg-dark);
  color: var(--nihara-text-light);
  font-family: var(--nihara-font-body);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nihara-hero * {
  box-sizing: border-box;
}

.nihara-hero--full-width {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.nihara-hero--contained {
  max-width: 1440px;
  margin: 0 auto;
}

/* Height Variations */
.nihara-hero--height-fullscreen {
  height: 100vh;
  height: 100dvh;
}
.nihara-hero--height-large {
  height: 85vh;
  min-height: 480px;
}
.nihara-hero--height-medium {
  height: 70vh;
  min-height: 350px;
}
.nihara-hero--height-small {
  height: 55vh;
  min-height: 200px;
}
.nihara-hero--height-custom {
  height: var(--hero-desktop-height, 800px);
}

/* --------------------------------------------------------------------------
   3. Slides Container & Track
   -------------------------------------------------------------------------- */
.nihara-hero__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.nihara-hero__track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform var(--nihara-transition-medium);
}

/* Transition Types */
.nihara-hero[data-transition="fade"] .nihara-hero__slide,
.nihara-hero[data-transition="cross-fade"] .nihara-hero__slide,
.nihara-hero[data-transition="zoom"] .nihara-hero__slide,
.nihara-hero[data-transition="cinematic-zoom"] .nihara-hero__slide,
.nihara-hero[data-transition="mask-reveal"] .nihara-hero__slide,
.nihara-hero[data-transition="apple-style"] .nihara-hero__slide,
.nihara-hero[data-transition="editorial-fade"] .nihara-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--slide-duration, 1s) var(--nihara-ease-out-expo),
              visibility var(--slide-duration, 1s) var(--nihara-ease-out-expo),
              transform var(--slide-duration, 1.2s) var(--nihara-ease-out-expo);
  will-change: opacity, transform, visibility;
}

.nihara-hero[data-transition="fade"] .nihara-hero__slide.is-active,
.nihara-hero[data-transition="cross-fade"] .nihara-hero__slide.is-active,
.nihara-hero[data-transition="zoom"] .nihara-hero__slide.is-active,
.nihara-hero[data-transition="cinematic-zoom"] .nihara-hero__slide.is-active,
.nihara-hero[data-transition="mask-reveal"] .nihara-hero__slide.is-active,
.nihara-hero[data-transition="apple-style"] .nihara-hero__slide.is-active,
.nihara-hero[data-transition="editorial-fade"] .nihara-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Fade Transition */
.nihara-hero[data-transition="fade"] .nihara-hero__slide {
  transition: opacity var(--slide-speed, 0.9s) var(--nihara-ease-apple);
}

/* Zoom & Cinematic Transitions */
.nihara-hero[data-transition="zoom"] .nihara-hero__media-wrapper,
.nihara-hero[data-transition="cinematic-zoom"] .nihara-hero__media-wrapper {
  transform: scale(1.12);
  transition: transform 1.8s var(--nihara-ease-out-expo);
}
.nihara-hero[data-transition="zoom"] .nihara-hero__slide.is-active .nihara-hero__media-wrapper,
.nihara-hero[data-transition="cinematic-zoom"] .nihara-hero__slide.is-active .nihara-hero__media-wrapper {
  transform: scale(1);
}

/* Mask Reveal Transition */
.nihara-hero[data-transition="mask-reveal"] .nihara-hero__slide {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  transition: clip-path 1.2s var(--nihara-ease-out-expo);
}
.nihara-hero[data-transition="mask-reveal"] .nihara-hero__slide.is-active {
  clip-path: inset(0 0 0 0);
}

/* Editorial Curtain Transition */
.nihara-hero[data-transition="curtain"] .nihara-hero__slide {
  transform: translateY(100%);
  opacity: 1;
  transition: transform 1.2s var(--nihara-ease-apple);
}
.nihara-hero[data-transition="curtain"] .nihara-hero__slide.is-active {
  transform: translateY(0%);
}

/* --------------------------------------------------------------------------
   4. Individual Slide & Media Engine
   -------------------------------------------------------------------------- */
.nihara-hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--nihara-bg-dark);
}

.nihara-hero__media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  will-change: transform;
}

.nihara-hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--nihara-ease-out-expo), filter 0.5s ease;
  will-change: transform, filter;
}

/* Ken Burns / Continuous Slow Zoom */
.nihara-hero--ken-burns .nihara-hero__slide.is-active .nihara-hero__media {
  animation: niharaKenBurns 18s ease-in-out infinite alternate;
}

@keyframes niharaKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-1.5%, -1%);
  }
}

/* Parallax Depth Transform */
.nihara-hero__media-parallax {
  height: 120%;
  top: -10%;
  will-change: transform;
}

/* Media Image / Video Filters */
.nihara-hero__media--filtered {
  filter: brightness(var(--video-brightness, 1))
          contrast(var(--video-contrast, 1))
          saturation(var(--video-saturation, 1))
          blur(var(--video-blur, 0px));
}

/* Video Elements */
.nihara-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

/* Hide mobile video on desktop and vice versa if separate sources exist */
.nihara-hero__media-mobile {
  display: none;
}

/* --------------------------------------------------------------------------
   5. Premium Overlay Engine & Background Effects
   -------------------------------------------------------------------------- */
.nihara-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Solid & Gradient Overlays */
.nihara-hero__overlay--solid {
  background-color: rgba(0, 0, 0, var(--overlay-opacity, 0.35));
}

.nihara-hero__overlay--gradient-dark {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.nihara-hero__overlay--radial {
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.nihara-hero__overlay--mesh {
  background: 
    radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(18, 18, 20, 0.8) 0px, transparent 50%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
}

.nihara-hero__overlay--glass {
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  background-color: rgba(18, 18, 20, 0.25);
}

/* Noise & Film Grain Overlay */
.nihara-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: var(--noise-opacity, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Light Leak Effect */
.nihara-hero__light-leak {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(232, 216, 200, 0.25) 0%, rgba(212, 175, 55, 0.08) 40%, transparent 70%);
  filter: blur(80px);
  z-index: 3;
  pointer-events: none;
  animation: niharaLightLeak 12s infinite alternate ease-in-out;
}

@keyframes niharaLightLeak {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-8%, 10%) scale(1.2); opacity: 0.9; }
}

/* --------------------------------------------------------------------------
   6. Content Layout & 9-Position Grid
   -------------------------------------------------------------------------- */
.nihara-hero__content-container {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  padding: clamp(1.5rem, 4vh, 4rem) clamp(1.5rem, 5vw, 6rem);
  max-width: 1440px;
  margin: 0 auto;
  pointer-events: none;
}

/* 9 Grid Alignments */
.nihara-hero__content-container--top-left { align-items: flex-start; justify-content: flex-start; text-align: left; }
.nihara-hero__content-container--top-center { align-items: flex-start; justify-content: center; text-align: center; }
.nihara-hero__content-container--top-right { align-items: flex-start; justify-content: flex-end; text-align: right; }

.nihara-hero__content-container--center-left { align-items: center; justify-content: flex-start; text-align: left; }
.nihara-hero__content-container--center { align-items: center; justify-content: center; text-align: center; }
.nihara-hero__content-container--center-right { align-items: center; justify-content: flex-end; text-align: right; }

.nihara-hero__content-container--bottom-left { align-items: flex-end; justify-content: flex-start; text-align: left; }
.nihara-hero__content-container--bottom-center { align-items: flex-end; justify-content: center; text-align: center; }
.nihara-hero__content-container--bottom-right { align-items: flex-end; justify-content: flex-end; text-align: right; }

.nihara-hero__content-box {
  pointer-events: auto;
  max-width: var(--content-max-width, 680px);
  display: flex;
  flex-direction: column;
  gap: var(--content-gap, 1.25rem);
}

.nihara-hero__content-container--top-center .nihara-hero__content-box,
.nihara-hero__content-container--center .nihara-hero__content-box,
.nihara-hero__content-container--bottom-center .nihara-hero__content-box {
  align-items: center;
}

.nihara-hero__content-container--top-right .nihara-hero__content-box,
.nihara-hero__content-container--center-right .nihara-hero__content-box,
.nihara-hero__content-container--bottom-right .nihara-hero__content-box {
  align-items: flex-end;
}

/* --------------------------------------------------------------------------
   7. Premium Typography & Content Elements
   -------------------------------------------------------------------------- */

/* Badges & Tags */
.nihara-hero__badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.nihara-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 40px;
  background: var(--nihara-glass-bg);
  border: 1px solid var(--nihara-border-glass);
  backdrop-filter: blur(10px);
  color: var(--nihara-text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.nihara-hero__badge--gold {
  border-color: var(--nihara-accent-gold);
  color: var(--nihara-accent-gold);
}

/* Sub-Heading / Small Label */
.nihara-hero__label {
  font-size: var(--label-font-size-desktop, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--nihara-accent-warm);
  margin: 0;
  display: block;
}

/* Main Editorial Heading */
.nihara-hero__heading {
  font-family: var(--nihara-font-heading);
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: var(--heading-weight, 400);
  line-height: var(--heading-line-height, 1.05);
  letter-spacing: var(--heading-letter-spacing, -0.02em);
  text-transform: var(--heading-transform, none);
  color: var(--heading-color, var(--nihara-text-light));
  margin: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Gradient Text Effect */
.nihara-hero__heading--gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--nihara-accent-warm) 50%, var(--nihara-accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Body / Description Text */
.nihara-hero__description {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--nihara-text-muted);
  max-width: var(--paragraph-width, 540px);
  margin: 0;
}

/* Countdown Timer Block */
.nihara-hero__countdown {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0;
}

.nihara-hero__countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 65px;
  padding: 0.6rem 0.8rem;
  background: rgba(18, 18, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 8px;
}

.nihara-hero__countdown-num {
  font-family: var(--nihara-font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--nihara-accent-gold);
}

.nihara-hero__countdown-unit {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   8. Editorial Buttons Engine (Up to 3 Buttons)
   -------------------------------------------------------------------------- */
.nihara-hero__button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.nihara-hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.4rem;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--btn-radius, 0px);
  transition: all 0.4s var(--nihara-ease-out-expo);
  overflow: hidden;
  z-index: 1;
  will-change: transform, box-shadow;
}

/* Filled Style */
.nihara-hero__btn--filled {
  background-color: var(--nihara-text-light);
  color: var(--nihara-text-dark);
  border: 1px solid var(--nihara-text-light);
}

.nihara-hero__btn--filled:hover {
  background-color: var(--nihara-accent-gold);
  border-color: var(--nihara-accent-gold);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}

/* Outline Style */
.nihara-hero__btn--outline {
  background-color: transparent;
  color: var(--nihara-text-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.nihara-hero__btn--outline:hover {
  border-color: var(--nihara-text-light);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Ghost / Underline Style */
.nihara-hero__btn--ghost {
  background: transparent;
  color: var(--nihara-text-light);
  border: none;
  padding: 0.75rem 0;
}

.nihara-hero__btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.4s var(--nihara-ease-out-expo);
  transform-origin: right;
}

.nihara-hero__btn--ghost:hover::after {
  transform: scaleX(0);
}

/* Magnetic Button Hover Effect */
.nihara-hero__btn--magnetic {
  will-change: transform;
}

/* Arrow Icon */
.nihara-hero__btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s var(--nihara-ease-out-expo);
}

.nihara-hero__btn:hover .nihara-hero__btn-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. Floating Luxury Elements & Cards
   -------------------------------------------------------------------------- */
.nihara-hero__floating-card {
  position: absolute;
  bottom: 3.5rem;
  right: 4rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: rgba(18, 18, 20, 0.55);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--nihara-border-glass);
  border-radius: 12px;
  box-shadow: var(--nihara-shadow-luxury);
  max-width: 300px;
  animation: niharaFloat 6s ease-in-out infinite alternate;
  pointer-events: auto;
}

@keyframes niharaFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.nihara-hero__floating-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.nihara-hero__floating-info {
  display: flex;
  flex-direction: column;
}

.nihara-hero__floating-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--nihara-text-light);
}

.nihara-hero__floating-price {
  font-size: 0.75rem;
  color: var(--nihara-accent-gold);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   10. Navigation & Luxury Indicators Engine
   -------------------------------------------------------------------------- */

/* Bottom Navigation Bar Container */
.nihara-hero__nav {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: 100%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  pointer-events: none;
}

.nihara-hero__indicators {
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
}

/* Dots Indicator Style */
.nihara-hero__indicator--dots .nihara-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s var(--nihara-ease-out-expo);
}

.nihara-hero__indicator--dots .nihara-hero__dot.is-active {
  background: var(--nihara-text-light);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Numbers Indicator Style */
.nihara-hero__indicator--numbers .nihara-hero__num {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: color 0.3s ease;
}

.nihara-hero__indicator--numbers .nihara-hero__num.is-active {
  color: var(--nihara-accent-gold);
  font-weight: 700;
}

/* Fraction Style ("01 / 05") */
.nihara-hero__fraction {
  font-family: var(--nihara-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--nihara-text-light);
}

.nihara-hero__fraction-current {
  font-weight: 600;
  color: var(--nihara-accent-gold);
}

.nihara-hero__fraction-divider {
  opacity: 0.4;
  margin: 0 0.3rem;
}

/* Apple Style Progress Bar */
.nihara-hero__progress-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.nihara-hero__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--nihara-text-light);
  transition: width 0.1s linear;
}

/* Navigation Arrows */
.nihara-hero__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
}

.nihara-hero__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 18, 20, 0.4);
  border: 1px solid var(--nihara-border-glass);
  color: var(--nihara-text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--nihara-ease-out-expo);
}

.nihara-hero__arrow:hover {
  background: var(--nihara-text-light);
  color: var(--nihara-text-dark);
  border-color: var(--nihara-text-light);
  transform: scale(1.08);
}

.nihara-hero__arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Scroll Down Indicator */
.nihara-hero__scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nihara-hero__scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.nihara-hero__scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--nihara-text-light);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: niharaScrollWheel 1.8s infinite ease-in-out;
}

@keyframes niharaScrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   11. Text Animation Stagger & Motion Engine
   -------------------------------------------------------------------------- */
.nihara-hero__slide .nihara-hero__label,
.nihara-hero__slide .nihara-hero__heading,
.nihara-hero__slide .nihara-hero__description,
.nihara-hero__slide .nihara-hero__button-group,
.nihara-hero__slide .nihara-hero__badge-wrapper,
.nihara-hero__slide .nihara-hero__countdown {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s var(--nihara-ease-out-expo), transform 0.9s var(--nihara-ease-out-expo);
  will-change: opacity, transform;
}

.nihara-hero__slide.is-active .nihara-hero__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.nihara-hero__slide.is-active .nihara-hero__badge-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.nihara-hero__slide.is-active .nihara-hero__heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.nihara-hero__slide.is-active .nihara-hero__description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.nihara-hero__slide.is-active .nihara-hero__countdown {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.nihara-hero__slide.is-active .nihara-hero__button-group {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

/* --------------------------------------------------------------------------
   12. Mobile Experience (Independent High Priority Styling)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .nihara-hero {
    height: var(--hero-mobile-height, 100dvh);
  }

  .nihara-hero__content-container {
    padding: 2.5rem 1.5rem 5rem 1.5rem;
    align-items: flex-end !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .nihara-hero__content-box {
    max-width: 100%;
    align-items: center !important;
    gap: 0.9rem;
  }

  .nihara-hero__heading {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.1;
  }

  .nihara-hero__description {
    font-size: 0.925rem;
    max-width: 100%;
  }

  .nihara-hero__button-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .nihara-hero__btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }

  .nihara-hero__media-desktop {
    display: none !important;
  }

  .nihara-hero__media-mobile {
    display: block !important;
  }

  .nihara-hero__floating-card {
    display: none; /* Auto-hide heavy floating cards on small screens */
  }

  .nihara-hero__nav {
    padding: 0 1.5rem;
    bottom: 1.5rem;
  }

  .nihara-hero__progress-bar {
    width: 100px;
  }

  .nihara-hero__arrow {
    width: 40px;
    height: 40px;
  }

  .nihara-hero__hide-mobile {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   13. Reduced Motion Support
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .nihara-hero *,
  .nihara-hero__media,
  .nihara-hero__slide {
    animation: none !important;
    transition: none !important;
  }
}
