:root {
  --bg: #070708;
  --card: #0f1113;
  --muted: #9aa0a6;
  --accent: #c4973f;
}
html,
body {
  height: 100%;
  background: var(--bg);
  color: #e6e6e6;
  font-family: Montserrat, system-ui, Arial;
  margin: 0;
}
.navbar {
  background: transparent;
}
.brand-img {
  height: 44px;
}
.category-btn {
  border: 1px solid rgba(196, 151, 63, 0.18);
  color: var(--accent);
  background: transparent;
  border-radius: 22px;
  padding: 0.35rem 0.9rem;
  margin: 0 0.35rem;
  cursor: pointer;
  transition: all 0.18s;
}
.category-btn.active,
.category-btn:hover {
  background: var(--accent);
  color: #080808;
}
.carousel-item {
  height: 420px;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.45), rgba(2, 2, 2, 0.85));
  display: flex;
  align-items: center;
}
.hero-title {
  font-family: Cinzel, serif;
  font-size: 2rem;
}
.poster-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.15s;
}
.poster-card:hover {
  transform: translateY(-6px);
}
.poster-img {
  width: 100%;
  /* height: 260px; */
  object-fit: cover;
  display: block;
}
.price-badge {
  background: rgba(0, 0, 0, 0.6);
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  font-weight: 700;
}
.btn-accent {
  background: linear-gradient(90deg, #d9b06b, #b37f2d);
  border: 0;
  color: #081012;
}
.order-banner {
  background: linear-gradient(
    90deg,
    rgba(12, 12, 12, 0.9),
    rgba(20, 12, 6, 0.9)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
  border-radius: 10px;
}
footer {
  padding: 1rem 0;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 768px) {
  .carousel-item {
    height: 240px;
  }
  .poster-img {
    height: 170px;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .category-btn {
    margin: 0.25rem 0.25rem 0.5rem 0;
  }
}
