.hero-slide {
    position: relative;
    overflow: hidden;
    background: #09080c;
}

.hero-slide-media,
.hero-slide-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    background: linear-gradient(90deg, rgba(8, 6, 8, 0.92) 0%, rgba(17, 11, 13, 0.74) 45%, rgba(11, 7, 10, 0.89) 100%);
}

.hero-slide .container,
.hero-stage {
    position: relative;
    z-index: 1;
}

.category-strip {
    padding-top: 1.45rem;
}

.category-strip-grid {
    gap: 0;
    /* padding: 1.35rem 1.6rem; */
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(17, 20, 27, 0.08);
}

.category-strip-card {
    position: relative;
    min-height: 174px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform 0.2s ease;
}

    .category-strip-card::after {
        content: "";
        position: absolute;
        top: 0px;
        right: 0;
        width: 1px;
        height: calc(100% - 0px);
        background: linear-gradient(180deg, rgba(229, 233, 239, 0) 0%, #e5e9ef 18%, #e5e9ef 82%, rgba(229, 233, 239, 0) 100%);
    }

    .category-strip-card:last-child::after {
        display: none;
    }

    .category-strip-card:hover {
        transform: translateY(-3px);
    }

.category-strip-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 0.2rem;
    background: linear-gradient(180deg, #cf3f31 0%, #b92a1d 90%);
    box-shadow: 0 10px 24px rgba(185, 42, 29, 0.2);
}

    .category-strip-icon img {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }

    .category-strip-icon i {
        font-size: 1.9rem;
    }

.category-strip-card strong {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.category-strip-card small {
    color: #1d2530;
    font-size: 0.92rem;
    font-weight: 500;
}

@media (max-width: 1199.98px) {
    .category-strip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-strip-card:nth-child(3n)::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .category-strip-grid {
        padding: 0.85rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-strip-card {
        min-height: 160px;
        padding-inline: 0.75rem;
    }

        .category-strip-card::after,
        .category-strip-card:nth-child(3n)::after {
            display: none;
        }
}
