.product-sku {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
    }

.product-sku span {
    font-weight: 600;
    color: #333;
}
    .product-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c5282;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}
  .product-form {
    font-family: 'Arial', sans-serif;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 0px;
}

.product-info {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-description span {
    font-size: 14px;
    color: #666;
}

/* Стили для опций */
.product-options {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.option-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-label {
    font-weight: bold;
    min-width: 120px;
    color: #2c3e50;
}

.option-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    min-width: 200px;
}

.option-select:focus {
    outline: none;
    border-color: #3498db;
}

/* ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ ЦЕНЫ, КОЛИЧЕСТВА И КНОПКИ В ОДНУ СТРОКУ */
.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 25px; */
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    gap: 20px;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
    color: #2c5282;
    line-height: 1.2;

    
}

.price-note {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 2px;
}

.quantity-block {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.quantity-block label {
    font-weight: bold;
    color: #2c3e50;
    white-space: nowrap;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background: #ecf0f1;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    min-width: 35px;
}

.quantity-btn:hover {
    background: #bdc3c7;
}

.quantity-input {
    width: 50px;
    border: none;
    text-align: center;
    padding: 8px 5px;
    font-size: 14px;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Кнопка добавления в корзину */
.action-buttons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.add-to-cart-btn {
    background: #4e7cba;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-width: 140px;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background: #3a5a8a;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
    border: none;
    padding: 10px 10px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
    min-width: 140px;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* Индикатор загрузки */
.loading-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7f8c8d;
    justify-content: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Сообщения статуса */
.status-messages {
    margin-bottom: 20px;
}

.status-message {
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.status-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Бейджи наличия */
.availability-badges {
    margin-bottom: 20px;
}

.availability-badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.in-stock {
    background: #d4edda;
    color: #155724;
}

.pre-order {
    background: #fff3cd;
    color: #856404;
}

.awaiting-delivery {
    background: #9cd500;
    color: #383d41;
}

.out-of-stock {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

/* Особенности товара */
.product-features {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #7f8c8d;
}

.feature i {
    color: #3498db;
}

/* Адаптивность */
@media (max-width: 768px) {
    .price-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .price-block {
        align-items: center;
    }
    
    .action-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .add-to-cart-btn,
    .btn-secondary {
        width: 100%;
        max-width: 200px;
    }
    
    .option-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .option-select {
        min-width: 100%;
    }
    
    .product-features {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .quantity-block {
        flex-direction: column;
        gap: 8px;
    }
    
    .quantity-block label {
        text-align: center;
    }
}
