/* ===============================
   SPECIAL OFFERS – OPTIMIZED
   =============================== */

.special-offers {
    background-color: #ff0905 !important;
}

/* isolate heavy visual rendering */
.special-offers-abstract {
    contain: paint;
}

/* optimized gradient layer */
.special-offers-abstract:after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: linear-gradient(
        to right,
        #ff0905 0%,
        rgba(255, 255, 255, 0) 50%
    ) !important;

    pointer-events: none;
}

/* primary button — cheap paint */
.btn-primary {
    background-color: #ff0905 !important;
}
