/* Khung bao bọc chi tiết sản phẩm */
.product-detail-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-family: system-ui, -apple-system, sans-serif;
}

/* Phần đầu trang chi tiết */
.product-detail-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* Badge hiển thị nền tảng */
.badge-platform {
    background: #0056b3;
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
}

/* Tiêu đề sản phẩm */
.product-title {
    font-size: 22px;
    color: #111;
    margin: 10px 0 5px 0;
}

/* Meta thông tin phụ */
.product-meta {
    font-size: 12px;
    color: #666;
}

.product-meta .meta-divider {
    margin: 0 10px;
}

/* Bố cục Grid phân chia cột */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 20px;
}

/* Cột thông tin chính bên trái */
.product-main-info {
    min-width: 0; /* Chống vỡ layout text */
}

.product-main-info .section-title {
    margin: 0 0 10px 0;
    color: #333;
    border-left: 3px solid #0056b3;
    padding-left: 8px;
}

/* Hộp nội dung mô tả chi tiết */
.product-description-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 5px;
    white-space: pre-line;
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

/* Khu vực thông báo hình thức bàn giao */
.product-delivery-type {
    margin-top: 15px;
}

.delivery-alert {
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.5;
}

.alert-auto {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-manual {
    background: #fffbec;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Hộp Sidebar mua hàng bên phải */
.product-sidebar-box {
    border: 1px solid #e2e8f0;
    background: #fdfdfd;
    padding: 15px;
    border-radius: 5px;
    height: fit-content;
}

/* Khối hiển thị giá tiền */
.price-section {
    margin-bottom: 12px;
}

.price-label {
    font-size: 13px;
    color: #64748b;
}

.price-value {
    font-size: 22px;
    color: #dc2626;
    font-weight: bold;
    margin-top: 2px;
}

/* Khối thông tin cổng thanh toán */
.payment-section {
    border-top: 1px dashed #e2e8f0;
    padding-top: 12px;
    margin-bottom: 15px;
    font-size: 13px;
}

.payment-title {
    font-weight: bold;
    color: #475569;
    display: block;
    margin-bottom: 5px;
}

.payment-list {
    margin: 0;
    padding-left: 18px;
    color: #475569;
}

.payment-default {
    color: #94a3b8;
    font-style: italic;
}

/* Nút mua ngay */
#btn-buy-product {
    width: 100%;
    background: #0056b3;
    color: #fff;
    border: none;
    padding: 10px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

#btn-buy-product:hover {
    background: #004085;
}

/* Responsive khi xem trên màn hình điện thoại di động nhỏ */
@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}