/** Shopify CDN: Minification failed

Line 220:3 Unexpected "/"

**/
.mobile-banner {
  display: none;
}

.desktop-banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Prevent any transforms or animations */
  transform: none;
  transition: none;
}

@media (max-width: 768px) {
  .mobile-banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Lock the image completely */
    transform: none;
    transition: none;
    position: absolute;
    top: 0;
    left: 0;
  }
  .desktop-banner {
    display: none;
  }
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.42) 28%,
    rgba(0, 0, 0, 0.22) 54%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 10;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background-color: #e9d2b9; /* neutral letterbox backdrop matching image tone */
  margin: 0;
  padding: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  /* Prevent any layout shifts */
  contain: layout;
  will-change: auto;
}

.hero-logo {
  position: absolute;
  top: 10%;
  font-weight: 800;
  font-size: 6.7rem;
  color: white;
  margin-inline: 5%;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  padding: 3.25rem 2rem 2.5rem;
  z-index: 1005;
  pointer-events: none; /* Allow clicks to pass through except on interactive elements */
}

.hero-title {
  font-size: clamp(2.25rem, 3.5vw + 1rem, 5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: clamp(1rem, 1vw + 0.75rem, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto; /* Re-enable clicks on buttons */
  position: relative;
  z-index: 1006;
}

.hero-button {
  padding: 14px 34px;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 280ms ease, box-shadow 280ms ease,
    background-color 280ms ease, color 280ms ease, border-color 280ms ease;
  display: inline-block;
  text-align: center;
  min-width: 140px;
  backdrop-filter: blur(8px);
  cursor: pointer;
  pointer-events: auto; /* Ensure buttons are clickable */
  position: relative;
  z-index: 1007;
}

.hero-button-primary {
  background: rgba(139, 118, 102, 0.15);
  color: white;
  border: 1px solid rgba(139, 118, 102, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(139, 118, 102, 0.12);
}

.hero-button-primary:hover {
  background: rgba(139, 118, 102, 0.28);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(139, 118, 102, 0.22);
}

.hero-button-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.scroll-indicator {
  margin-top: 1.5rem;
  text-align: center;
  opacity: 0.8;
  mix-blend-mode: lighten;
  pointer-events: auto; /* Allow interactions if needed */
  position: relative;
  z-index: 1006;
}

.scroll-text {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.scroll-arrow {
  font-size: 1.25rem;
  color: white;
  animation: bounce 2s infinite;
  display: inline-block;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  /* .hero-banner {
    /* border-radius: 16px;
    width: calc(100% - 24px);
    height: calc(100dvh - var(--header-height, 0px) - 24px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
    margin-bottom: 12px; */
  /* } */
  */ .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-button {
    min-width: 120px;
    padding: 10px 18px;
    font-size: 1.2rem;
  }

  .hero-content {
    padding: 1.25rem;
  }

  .scroll-indicator {
    margin-top: 1rem;
  }

  .scroll-text {
    font-size: 0.85rem;
  }

  .scroll-arrow {
    font-size: 1rem;
  }
}

/* Disable hover zoom to prevent perceived cropping */
.hero-banner:hover .desktop-banner {
  transform: none;
}
