.product_offers_header,
.product_offers_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.product_offers_header {
    font-weight: bold;
    background-color: #f5f5f5;
    color: #333;
}

.product_offers_item.in-stock {
    background-color: #d1f0e1; /* Зеленый фон для "в наличии" */
}

.product_offers_item.on-order {
    background-color: #f5f0d1; /* Тускло-желтый фон для "ожидается" */
}

.product_offers_item.out-of-stock {
    background-color: #f0d1d5; /* Тускло-красный фон для "нет в наличии" */
}

.price_grid {
    margin-bottom: 20px;
}

.price {
    flex: 1;
    font-size: 16px;
}

.exist {
    flex: 1;
    text-align: center;
}

.exist span {
    font-weight: 500;
    color: #333; /* Цвет текста одинаковый для всех состояний */
}

.purchase {
    flex: 1;
    text-align: right;
}

.btn-text {
    margin-right: 5px;
}

.btn-icon {
    font-size: 14px;
}

.spp_price_and_warehouse > .product_office {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    font-weight: normal;
}

@media (max-width: 767px) {
    .btn-text {
        display: none; /* Только иконка на мобильных */
    }
}



/* свойства товаров */
.properties-section {
    margin-top: 15px;
    padding: 10px;    
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.properties-section h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
    font-family: "Roboto", sans-serif;
}

.product-id {
    font-size: 12px;
    color: #999; /* Тускло-серый */
    margin-bottom: 8px;
    font-family: "Roboto", sans-serif;
}

.properties-table {
    width: 100%;
    border-collapse: collapse;
}

.properties-table tr {
    border-bottom: 1px dashed #e0e0e0;
    line-height: 1em;
}

.properties-table tr:last-child {
    border-bottom: none;
}

.property-name {
    width: 40%;
    padding: 6px 0;
    font-size: 14px;
    font-weight: bold;
    color: #777;
    vertical-align: top;
    font-family: "Segoe UI", "Arial", system-ui, -apple-system, sans-serif;
}

.property-value {
    width: 60%;
    padding: 6px 0;
    font-size: 14px;
    color: #333;
    vertical-align: top;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif
}


.product-description {
font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
font-size: 18px;
font-weight: bold;
}
