.hero-gradient {
  background: radial-gradient(circle at 0% 0%, rgba(201, 163, 74, 0.28), transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(201, 163, 74, 0.16), transparent 38%),
              #0a0a0a;
}

.hero-carousel {
  background: #0a0a0a;
}

.hero-carousel-track {
  position: relative;
  height: clamp(460px, 74vh, 860px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  border: 1px solid rgba(201, 163, 74, 0.7);
  background: rgba(10, 10, 10, 0.5);
  color: #faf8f2;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
}

.hero-dots {
  position: absolute;
  z-index: 30;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(250, 248, 242, 0.45);
}

.hero-dot.is-active {
  background: #c9a34a;
}

@media (max-width: 767px) {
  .hero-carousel-track {
    height: clamp(420px, 68vh, 620px);
  }

  .hero-control {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

body {
  background-color: var(--theme-bg);
  color: var(--theme-text);
}

body.theme-btn-rounded .rounded {
  border-radius: 0.5rem !important;
}

body.theme-btn-pill .rounded {
  border-radius: 9999px !important;
}

body.theme-btn-sharp .rounded {
  border-radius: 0.125rem !important;
}

body.theme-btn-outline button[class*="bg-"],
body.theme-btn-outline a[class*="bg-"] {
  background: transparent !important;
  color: var(--theme-secondary) !important;
  border: 1px solid var(--theme-secondary) !important;
}

body.theme-btn-outline a[class*="text-luxe"],
body.theme-btn-outline button[class*="text-luxe"] {
  color: var(--theme-secondary) !important;
}

.lux-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lux-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
