﻿/* Container chính */
.container.product-detail {
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    border: 2px solid #e6e6e6;
}

/* Ảnh sản phẩm */
.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 3px solid #007bff;
}

/* Tiêu đề */
.details h2 {
    font-size: 26px;
    font-weight: bold;
    color: #007bff;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

/* Tên sản phẩm */
.product-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Mô tả sản phẩm */
.product-description,
.product-info {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.product-info span {
    color: #007bff;
}

/* Nút thêm vào giỏ hàng */
.btn-primary-1 {
    background-color: #28a745;
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-primary-1:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* Responsive cho màn hình nhỏ */
@media (max-width: 768px) {
    .product-detail {
        padding: 15px;
    }

    .details h2 {
        font-size: 22px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-description,
    .product-info {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 10px 20px;
    }
}
