.home-hero {
    position: relative;
    background: var(--eatoria-gradient-hero);
    color: #fff;
    border-radius: var(--eatoria-radius);
    padding: 2.5rem 2rem;
    overflow: hidden;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 90% at 85% 50%, rgba(255, 255, 255, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 70% at 10% 35%, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.home-hero > .row {
    position: relative;
    z-index: 1;
}

.home-hero h1 {
    font-weight: 700;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.home-hero .lead {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.home-hero-badge {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
}

.home-hero-map-wrap {
    position: relative;
    height: 100%;
    min-height: 280px;
}

.home-hero-map {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: var(--eatoria-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.home-hero-map-link {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 500;
}

.home-vip-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--eatoria-radius);
    padding: 1.5rem;
}

.home-vip-banner {
    position: relative;
    min-height: 220px;
    overflow: hidden;
}

.home-vip-banner-single {
    border-radius: var(--eatoria-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.home-vip-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-vip-banner:hover .home-vip-banner-bg {
    transform: scale(1.04);
}

.home-vip-banner-overlay {
    position: relative;
    z-index: 1;
    min-height: 220px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
}

.home-vip-carousel .carousel-item {
    min-height: 220px;
}

.home-vip-carousel .carousel-control-prev,
.home-vip-carousel .carousel-control-next {
    width: 3rem;
}

.home-promo-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.25rem rgba(220, 53, 69, 0.12) !important;
}

.home-promo-discount {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--eatoria-primary, #dc3545);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.35rem 0.75rem;
    border-bottom-left-radius: 0.5rem;
}

.home-partner-cta {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 1px solid rgba(220, 53, 69, 0.15);
    margin-top: 2rem;
}

.home-section-title {
    font-weight: 700;
}

.category-tile {
    display: block;
    height: 100%;
}

.category-grid > .col {
    width: 50%;
}

@media (min-width: 576px) {
    .category-grid > .col {
        width: 33.3333%;
    }
}

@media (min-width: 768px) {
    .category-grid > .col {
        width: 25%;
    }
}

@media (min-width: 1200px) {
    .category-grid > .col {
        width: 14.2857%;
    }
}

.category-tile-inner {
    height: 100%;
    min-height: 108px;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f3ca63 0%, #e9bb50 100%);
    border: 1px solid rgba(151, 35, 35, 0.14);
    box-shadow: 0 4px 12px rgba(106, 87, 44, 0.18);
    color: #9e1f1f;
    padding: 0.72rem 0.5rem 0.55rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.category-tile:hover .category-tile-inner {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(106, 87, 44, 0.26);
    filter: saturate(1.06);
}

.category-tile-icon {
    line-height: 1;
    margin-bottom: 0.38rem;
}

.category-tile-icon i {
    font-size: 1.55rem;
}

.category-tile-name {
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

@media (max-width: 576px) {
    .category-tile-inner {
        min-height: 96px;
        padding: 0.6rem 0.4rem 0.5rem;
    }

    .category-tile-icon i {
        font-size: 1.35rem;
    }

    .category-tile-name {
        font-size: 0.92rem;
    }
}

/* Leaflet mini-map (hero) */
.home-hero-map .map-marker-icon {
    background: transparent;
    border: none;
}

.home-hero-map .map-marker-highlight .badge {
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.8);
}

.home-hero-map .leaflet-popup-content-wrapper {
    border-radius: 0.5rem;
}

@media (min-width: 992px) {
    .home-hero {
        padding: 3rem 2.5rem;
    }

    .home-hero-map-wrap {
        min-height: 320px;
    }

    .home-hero-map {
        min-height: 320px;
    }

    .home-vip-banner,
    .home-vip-banner-overlay {
        min-height: 260px;
    }
}

@media (min-width: 1200px) {
    .home-vip-banner,
    .home-vip-banner-overlay {
        min-height: 280px;
    }
}
