.special-offers-title-container {
    margin-top: 9%;
    margin-bottom: 1%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.special-offer-link {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.special-offers-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
}

.special-offers-list-wrapper {
    padding: 0 5.5%;
}

.special-offers-list {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}


.special-offers-list-item-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 21vw;
}

.special-offers-img {
    width: 21vw;
    height: 27.5vw;
    max-width: 400px;
    max-height: 520px;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    filter: grayscale(0.2);
    transition: filter 0.2s ease-in;
}

.special-offers-img:hover {
    filter: grayscale(0);
}

.special-offers-item-favorite {
    position: absolute;
    top: 5%;
    right: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.special-offers-card-bot {
    display: flex;
    justify-content: space-between;
}

.special-offers-card-left-side {
    display: flex;
    flex-direction: column;
    width: 70%;
    justify-content: space-between;
    margin-left: 1.5rem;
}

.special-offers-card-left-side-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: white;
    word-break: break-word;
}

.special-offers-card-left-side-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FFCC00
}

.special-offers-card-left-side-original-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #FF3B30;
    text-decoration: line-through;
}

.special-offers-card-right-side {
    background-color: #FF3B30;
    border-radius: 15px;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.special-offers-card-right-side img {
    transition: transform 0.3s ease-in
}

.special-offers-card-right-side:hover img {
    transform: scale(1.1);
    filter:
        drop-shadow(0 0 2px #ff3471) drop-shadow(0 0 4px #ff3471) drop-shadow(0 0 6px #ff3471)drop-shadow(0 0 8px #ff3471) drop-shadow(0 0 10px #ff3471);
}

.special-offers-price-container {
    display: flex;
    gap: 0.5rem;
}

.favorite-checkbox {
    display: none;
}

.favorite-label {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.favorite-label::before,
.favorite-label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    transition: opacity 0.3s ease-in-out;
}

.favorite-label::before {
    background-image: url("/assets/FrontPage/favorite_heart.svg");
    opacity: 1;
}

.favorite-label::after {
    background-image: url("/assets/FrontPage/favorite_heart_full.svg");
    opacity: 0;
}

.favorite-checkbox:checked+.favorite-label::before {
    opacity: 0;
}

.favorite-checkbox:checked+.favorite-label::after {
    opacity: 1;
}



@media (max-width: 1024px) {
    .special-offers-list {
        gap: 3rem !important;
    }

    .special-offers-list-wrapper {
        padding: 0 75px !important;
    }

    .special-offers-card-left-side-original-price {
        font-size: 1.25rem;
    }

    .special-offers-card-left-side-price {
        font-size: 1.25rem;
    }

    .special-offers-list-item-container {
        max-width: 250px !important;

    }

    .special-offers-card-left-side {
        margin-left: unset !important;
    }

    .special-offers-img {
        width: unset !important;
    }

}

@media (max-width: 1024px) {
    .special-offers-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .special-offers-list-item-container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .special-offers-img {
        width: 100%;
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 750px) {
    .special-offers-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .special-offers-list-wrapper {
        padding: 0 !important;
    }

    .special-offers-card-right-side {
        width: 50px;
        height: 50px;
        padding: 10px;
        margin: 10px;
    }
}