
.product-info {
    padding: 30px 20px;
    border: 1px solid rgba(43, 43, 43, 0.5);
    border-radius: 20px;
}

.product-img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
    object-position: 50% 50%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.product-img-logo {
    object-fit: fill;
}

.product-info-rating.stars.mobile {
    margin-top: 20px;
}

.product-info-product {
    margin-top: 16px;
}

.product-info-product-name {
    font-size: 20px;
    line-height: 98%;
    color: rgba(43, 43, 43, 0.7);
}

.product-buy {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.product-add-to-cart {
    background: none;
    border: none;
}

.product-buy-formats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-buy-format {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-buy-format-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.new-price {
    color: #2B2B2B;
    font-size: 20px;
    line-height: 100%;
}

.old-price {
    color: #2B2B2B;
    opacity: 50%;
    font-size: 16px;
    font-weight: 300;
    text-decoration: line-through;
    letter-spacing: 0;
    vertical-align: middle;
}

.product-buy-format-text {
    color: #2B2B2B;
    opacity: 50%;
    font-size: 20px;
    font-weight: 300;
}

.product-buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.product-add-to-cart {
    border-radius: 20px;
    border: 1px solid rgba(43, 43, 43, 0.5);
    padding: 17px;
    color: rgba(43, 43, 43, 0.7);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    width: 100%;
}

.product-buy-now {
    border-radius: 20px;
    border: none;
    background: #926A54;
    padding: 17px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    width: 100%;
}

.product-buy-format-text {
    display: none;
}

.product-info-rating.stars.desktop,
.product-info-product-name.desktop {
    display: none;
}

.product-info-product-right {
    margin-top: 20px;
}

.product-info-product-description {
    color: rgba(43, 43, 43, 0.7);
    line-height: 124%;
    font-weight: 400;
    font-size: 16px;
}

.product-info-product-description p {
    margin: 0;
}

.product-feedbacks {
    margin-top: 60px;
}

.product-feedbacks-name {
    margin: 0;
    font-size: 32px;
    font-weight: 500;
}

.feedbacks {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .product-info {
        display: grid;
        grid-template-columns: 0.3227fr 0.6773fr;
        padding: 0;
        border: none;
        gap: 20px;
    }

    .product-info-rating.stars.mobile {
        display: none;
    }

    .product-info-rating.stars.desktop {
        display: block;
    }

    .product-info-product-name.desktop {
        display: block;
        font-size: 24px;
        font-weight: 500;
        line-height: 98%;
        color: rgba(43, 43, 43, 1);
        margin: 8px 0 20px 0;
    }

    .product-info-product-right {
        margin-top: 0;
        padding: 30px;
        border: 1px solid rgba(43, 43, 43, 0.5);
        border-radius: 20px;
    }

    .product-buy-format-price {
        margin-top: 0;
    }

    .product-buy-format {
        display: flex;
        justify-content: space-between;
    }

    .product-buy-format-text {
        display: block;
    }

    .product-buy-format-text small {
        font-size: 24px;
        font-weight: 500;
        color: rgba(43, 43, 43, 0.7);
    }

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

    .old-price {
        font-size: 20px;
    }

    .product-info-product-name {
        display: none;
    }

    .product-info-left {
        height: max-content;
        position: sticky;
        top: 110px;
    }
}

@media (min-width: 1200px) {
    .product-info {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 30px;
    }

    .product-buy-buttons {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 30px;
    }

    .product-add-to-cart,
    .product-buy-now {
        font-size: 20px;
    }

    .product-feedbacks {
        margin-top: 80px;
    }

    .product-info-product-name.desktop {
        font-size: 36px;
    }

    .product-info-product-description {
        font-size: 18px;
    }

    .product-info-product-right {
        padding: 40px;
    }

    .product-info-product-name.desktop {
        margin-top: 12px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1730px) {
    .product-info {
        grid-template-columns: 0.455fr 0.545fr;
        gap: 100px;
    }

    .product-buy-buttons {
        gap: 130px;
    }

    .product-info-product-right {
        padding: 60px;
    }
}