
.custom-hero-banners {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    padding: 0 128px;
    box-sizing: border-box;
    margin: 32px 0;
}

.custom-hero-banner {
    position: relative;
    flex: 1;
    height: 311px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-hero-banner:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Fialový banner */
.custom-hero-banner--purple {
    background-color: #3B1F6B;
}

/* Tmavý banner */
.custom-hero-banner--dark {
    background-color: #1A0A0A;
}

/* Gradient overlay */
.custom-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

/* Content */
.custom-hero-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 32px;
    max-width: 60%;
}

.custom-hero-banner__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.custom-hero-banner__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0;
}

.custom-hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #CD0E1D;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: background 0.2s ease;
}

.custom-hero-banner:hover .custom-hero-banner__btn {
    background: #a50b17;
}

/* Produktový obrázok */
.custom-hero-banner__product {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    max-width: 45%;
    object-fit: contain;
    object-position: center right;
    z-index: 2;
}

.custom-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

/* ── Responzívnosť ──────────────────────────────────────── */
@media (max-width: 1280px) {
    .custom-hero-banners {
        padding: 0 32px;
    }
}

@media (max-width: 900px) {
    .custom-hero-banners {
        flex-direction: column;
        padding: 0 16px;
    }

    .custom-hero-banner {
        height: 240px;
    }
}

@media (max-width: 640px) {
    .custom-hero-banner {
        height: 200px;
    }

    .custom-hero-banner__title {
        font-size: 20px;
        line-height: 28px;
    }

    .custom-hero-banner__content {
        max-width: 70%;
        padding: 20px;
        gap: 8px;
    }
}