
.price {
    padding-bottom: 120px;
}

.price__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #333;
}

.price__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    max-width: 1020px;
    z-index: 2;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #f5f5f5;
}

.price__image {
    min-width: 280px !important;
    max-width: 280px !important;
    height: 180px !important;
    margin-right: 30px;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.price__image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.price__main-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price__main {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 12px;
}

.price__text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.price__sale-price {
    color: #fd8706;
    font-size: 32px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 15px;
}

.price__sale-price--main {
    color: #999;
    font-size: 24px;
    font-weight: 600;
    text-decoration: line-through;
    margin-right: 10px;
}

.price__description {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.price__actions {
    margin-top: auto;
    display: flex;
}

.price_btn {
    margin-left: auto;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.price_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 135, 6, 0.3);
}

.price_btn svg {
    transition: transform 0.3s ease;
}

.price_btn:hover svg {
    transform: translateX(5px);
}

@media screen and (max-width: 1279px) {
    .price {
        padding-bottom: 60px;
    }

    .price__item {
        padding: 30px;
        margin-bottom: 25px;
    }

    .price__image {
        min-width: 240px !important;
        max-width: 240px !important;
        height: 160px !important;
        margin-right: 25px;
    }

    .price__text {
        font-size: 20px;
    }

    .price__sale-price {
        font-size: 28px;
    }

    .price__sale-price--main {
        font-size: 20px;
    }

    .price__description {
        font-size: 14px;
    }

    .price_btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media screen and (max-width: 967px) {
    .price {
        padding-bottom: 45px;
    }

    .price__item {
        padding: 25px;
        margin-bottom: 20px;
    }

    .price__image {
        min-width: 200px !important;
        max-width: 200px !important;
        height: 140px !important;
        margin-right: 20px;
    }

    .price__text {
        font-size: 18px;
    }

    .price__sale-price {
        font-size: 24px;
    }

    .price__sale-price--main {
        font-size: 18px;
    }

    .price__description {
        font-size: 13px;
    }

    .price_btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 655px) {
    .price__item {
        flex-direction: column;
        padding: 20px;
    }

    .price__image {
        min-width: 100% !important;
        max-width: 100% !important;
        height: 200px !important;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .price__main {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .price__text {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .price__sale-price {
        font-size: 24px;
        margin-left: 0;
    }

    .price__description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .price__actions {
        width: 100%;
    }

    .price_btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 519px) {
    .price__text {
        font-size: 16px;
    }

    .price__sale-price {
        font-size: 22px;
    }

    .price__description {
        font-size: 12px;
    }
}