
.product-name h1 {
    font-size: 24px;
    color: #333;
    margin-top: 100px;
    margin-left: 170px;
}

.box-main {
    display: flex;
    gap: 30px;
    background: #f1f5f9;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 150px 0 150px;
}

.box-left {
    flex: 6; 
    background-color: #f1f5f9; 
    border-radius: 8px;;
}

.box-left img {
    width: 100%;
    border-radius: 8px;
    object-fit: contain;
}

.box-left .exchange-policy {
    display: flex;
}

.box-left .warranty-policy {
    display: flex;
}

.policy {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #ffffff;
}

.policy img {
    width: 25px; 
    height: 25px;
    margin-right: 10px;
}

.policy span {
    font-size: 14px;
    color: #444;
}

.box-right {
    flex: 4;
}

.box-right {
    flex: 4; 
    background-color: #ffffff;
    border-radius: 8px;
}

.box-right h2 {
    margin-left: 15px;
    margin-top: 15px;
}

.box-right li {
    margin-left: 15px;
    margin-top: 15px;
}

.box-right .price-box {
    margin-left: 15px;
    margin-top: 15px;
}

.box-right .btn-buy {
    margin-left: 15px;
    margin-top: 15px;
}
.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
}

.specs-list span {
    font-weight: bold;
    width: 150px; 
    color: #555;
}

.price-box {
    font-size: 28px;
    color: #d0021b;
    font-weight: bold;
    margin: 20px 0;
}

.btn-buy {
    background-color: #ffffff;
    color: rgb(89, 208, 255);
    font-weight: bold;
    padding: 15px 40px;
    border: 1px solid #9dceff;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 15px;
}

.btn-buy:hover {
    background-color: #9dceff;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.add-to-cart {
    background-color: #ff9f00; /* Màu cam nổi bật */
    color: white;
    font-weight: bold;
    padding: 15px 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px; 
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #e68900;
}

.add-to-cart i {
    margin-right: 13px;
}

.comment-section {
    background: #ffffff;
    padding: 20px;
    margin: 30px 170px; 
    border-radius: 12px;
    border: 1px solid #eee;
}

.comment-section h3 {
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.comment-input-group {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment-input-group textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: vertical; 
    box-sizing: border-box;
}

.btn-submit-comment {
    align-self: flex-end; 
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn-submit-comment:hover {
    background-color: #0056b3;
}

.comment-item {
    padding: 15px 0;
    border-bottom: 1px solid #f9f9f9;
}

.user-info {
    margin-bottom: 8px;
}

.comment-item p {
    color: #666;
    line-height: 1.5;
}

.comment-list {
    border-top: 1px solid #eee;
    padding-top: 20px;
}