.card-body {
    padding: 24px;
}

.product-container {
    margin: 2rem 0;
}

.card-body .product-pricing {
    display: grid;
    grid-template-columns: 0.25fr 0.25fr 1fr;
    margin-bottom: 36px;
    align-items: center;
}

.product-pricing.mb-4.no-discount {
    grid-template-columns: 1fr;
}

.product-pricing .price-current {
    color: var(--primary-color);
    font-weight: bold;
    padding-left: 24px;
    font-size: 24px;
}

.product-pricing+.btn-lg+.product-info {
    margin-top: 24px;
}

.product-pricing+.btn-lg {
    background-color: var(--accent-color);
    color: #fff;
}

.discount-badge {
    background-color: #fb6262 !important;
    font-size: 0.9em;
    color: #fff;
    text-align: center;
}

.product-info .info-item {
    font-size: 0.9em;
}

.product-sidebar .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1em;
    font-weight: bold;
}

.product-specifications .col-md-6 {
    padding: 0.5rem 1rem;
}

.product-specifications .col-md-6:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.product-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-tags .tag-link {
    background-color: var(--background-color);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8em;
    transition: var(--transition);
}

.product-tags .tag-link:hover {
    background-color: var(--primary-color);
    color: white;
}

ul.tags.list-inline li a.btn {
    padding: 0;
}

.news-main-image img {
    width: 100%;
}

.news-main-image {
    padding: 24px;
    border: none;
    box-shadow: var(--card-shadow);
}
.comments{
    width: 62%;
    padding: 0 48px 48px;
}
/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .cntnr {
        flex-direction: column;
    }

    .cntnr .line.one,
    .cntnr .line.two {
        width: 100%;
        margin-right: 0;
    }

    .cntnr .line.two {
        margin-top: 2rem;
    }

    .product-specifications .col-md-6 {
        width: 100%;
    }
}