.shop-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    background-image: url("./../images/shop-banner/shop-banner-background.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 60px;
    padding: 24px 90px 16px 30px;
    position: relative;
    border-radius: 12px;
}

.shop-banner__content {
    display: flex;
    flex-direction: column;
    color: #441A5E;
    position: relative;
}

.shop-banner__description {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
}

.shop-banner__present {
    font-size: 33px;
    font-weight: 700;
    line-height: 30px;
}

.shop-banner__amount-image {
    position: absolute;
    width: 532px;
    height: 100px;
    right: 20%;
    bottom: 0;
}

.shop-banner__amount-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-banner__get {
    position: relative;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #E2B66D;
    background-color: #552176;
    padding: 9px 33px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.shop-banner__get:focus,
.shop-banner__get:hover {
    background-color: hsl( 277, 56%, calc(30% + 6%) );
}

@media (max-width: 991px) {
    .shop-banner {
        margin-bottom: 20px;
        flex-direction: column;
        padding: 20px 20px 78px;
        background-image: url("./../images/shop-banner/shop-banner-background-mobile.png");
    }

    .shop-banner__present {
        margin-bottom: 10px;
    }

    .shop-banner__content {
        align-items: center;
        text-align: center;
        margin-bottom: 34px;
    }

    .shop-banner__amount-image {
        position: absolute;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 305px;
        height: 125px;
    }
}