.hero { position: relative; overflow: hidden; }
.hero__slide { position: relative; min-height: 640px; display: none; align-items: center; background-size: cover; background-position: center; }
.hero__slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 80%); }
.hero__slide.is-active { display: flex; }
.hero__content { position: relative; z-index: 2; max-width: 600px; color: #fff; padding: 0 24px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; font-weight: 700; }
.hero__title { font-size: 48px; margin: 14px 0; line-height: 1.1; }
.hero__subtitle { color: #e2e8f0; margin-bottom: 16px; font-size: 18px; }
.hero__price { font-size: 36px; font-weight: 700; color: var(--color-accent); margin-bottom: 20px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__nav { position: absolute; inset: 0; pointer-events: none; }
.hero__button { position: absolute; top: 50%; transform: translateY(-50%); pointer-events: auto; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(0,0,0,0.55); color: #fff; display: grid; place-items: center; cursor: pointer; }
.hero__button:hover { background: rgba(0,0,0,0.7); }
.hero__button--prev { left: 18px; }
.hero__button--next { right: 18px; }

.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.category-card { position: relative; border-radius: var(--radius-xl); overflow: hidden; height: 320px; box-shadow: var(--shadow-card); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 80%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: #fff; }
.category-card__badge { align-self: flex-start; }
.category-card__title { font-size: 22px; margin: 6px 0 4px; }
.category-card__text { color: #e2e8f0; }

.hits { background: transparent; }
.hits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.hits .product-card { height: 100%; }

.event-block { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); background: linear-gradient(135deg, #0f172a, #111827); color: #fff; display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.event-block__content { padding: 48px; display: flex; flex-direction: column; gap: 18px; }
.event-block__eyebrow { align-self: flex-start; }
.event-block__list { display: grid; gap: 12px; color: #e2e8f0; }
.event-block__image { position: relative; }
.event-block__image img { width: 100%; height: 100%; object-fit: cover; }

.reservation { position: relative; border-radius: 28px; overflow: hidden; background: linear-gradient(135deg, #fff7ed, #fffbeb); box-shadow: var(--shadow-card); padding: 48px; }
.reservation::before, .reservation::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; filter: blur(60px); opacity: 0.35; }
.reservation::before { top: -40px; right: -30px; background: #fde68a; }
.reservation::after { bottom: -50px; left: -40px; background: #fecdd3; }
.reservation__content { position: relative; z-index: 2; }
.reservation__form { display: grid; gap: 18px; max-width: 760px; margin: 0 auto; }
.reservation__row { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

@media (max-width: 1024px) {
  .hero__slide { min-height: 520px; }
  .hero__title { font-size: 38px; }
  .hero__subtitle { font-size: 16px; }
  .event-block { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero__slide { min-height: 460px; }
  .hero__title { font-size: 30px; }
  .hero__price { font-size: 28px; }
  .hero__actions { gap: 10px; }
  .reservation { padding: 32px; }
}
