/* Naslov izdvojenog modula proizvoda */
.selected-products-heading {
    position: relative;
    margin: 8px 0 30px;
    padding: 30px 34px 28px;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(210, 0, 0, 0.06) 0%, rgba(210, 0, 0, 0) 48%),
        #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.selected-products-heading::after {
    content: "";
    position: absolute;
    top: -54px;
    right: -44px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(210, 0, 0, 0.05);
    pointer-events: none;
}

.selected-products-heading-label {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 8px;
    color: #d20000;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.selected-products-heading-title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #171717;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.selected-products-heading-accent {
    position: relative;
    z-index: 1;
    display: block;
    width: 72px;
    height: 4px;
    margin-top: 18px;
    border-radius: 4px;
    background: #d20000;
}

@media (max-width: 767px) {
    .selected-products-heading {
        margin-bottom: 22px;
        padding: 24px 22px 22px;
        border-radius: 12px;
    }

    .selected-products-heading-title {
        font-size: 31px;
        letter-spacing: -0.7px;
    }

    .selected-products-heading-accent {
        width: 56px;
        margin-top: 14px;
    }
}
