.privileges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.privileges-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1360px;
}

.privilege-card {
    width: 100%;
    height: 28rem;
    background-color: var(--card);
    border-radius: 20px;
    position: relative;
    display: flex;
    transition: background-color 0.3s ease;
    padding: 10px;
    flex-direction: column;
    align-items: center;
}

.privilege-card img {
    width: 15rem;
    height: 16rem;
    transition: transform 0.3s ease;
}

.privilege-card:hover img {
    transform: scale(1.13) translateY(-15px); 
    transition: transform 0.3s ease;
}

.privilege-card .text-content {
    text-align: left;
}

.privilege-card .text-content h2 {
    text-align: center;
    font-size: 1.7rem;
    color: #7e9dff;
}

.privilege-card .text-content p {
    text-align: center;
    font-size: 0.8rem;
}

.discount {
    border-radius: 1rem;
    padding: 0.4rem;
    background: var(--bg);
    color: var(--span);
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.arrow {
    margin-top: 1rem;
    border: 2px solid var(--bottom-line-table);
    border-radius: 1rem;
    padding: 0.2rem 1.1rem;
    background: #7e9dff;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.privilege-card:hover .arrow {
    background: var(--bottom-line-table);
}

@media (max-width: 768px) {
    .privileges-cards {
        grid-template-columns: 1fr;
    }

    .privilege-card {
        height: auto;
        flex-direction: column;
        padding: 10px;
        border-radius: 15px;
    }

    .privilege-card img {
        width: 100%;
        height: auto;
        margin: 0;
        transform: none;
    }

    .privilege-card:hover img {
        transform: none;
    }

    .privilege-card .text-content h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .privilege-card .text-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .discount {
        font-size: 16px;
        top: 8px;
        right: 8px;
    }

    .arrow {
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .privileges-container {
        margin-top: 30px;
        gap: 10px;
    }

    .privilege-card {
        padding: 5px;
    }

    .privilege-card .text-content h2 {
        font-size: 20px;
    }

    .privilege-card .text-content p {
        font-size: 12px;
    }

    .discount {
        font-size: 14px;
    }

    .arrow {
        font-size: 18px;
    }
}

.shop-banner {
    background: var(--card);
    background-size: cover !important;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: fit-content;
    min-height: 9rem;
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    width: 100%;
}

.shop-banner-img {
    height: 15rem;
    opacity: .8;
    position: absolute;
    right: -66px;
    top: -50px;
}

.blocks-2 {
    display: flex;
    gap: 15px;
    flex-direction: column
}

.shop-banner-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--span);

}