/* Khung chứa 2 nút */
.nh-btn-group {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* CSS chung cho cả 2 nút */
.nh-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
}

/* NÚT THÊM VÀO GIỎ (Đỏ viền nổi bật) */
.nh-btn.nh-btn-cart {
    background-color: #fff;
    color: #e53935 !important;
    border: 2px solid #e53935;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.15);
}

.nh-btn.nh-btn-cart:hover {
    background-color: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(229, 57, 53, 0.25);
    color: #d32f2f !important;
}

/* NÚT MUA NGAY (Nền Đỏ Đậm Gradient) */
.nh-btn.nh-btn-buynow {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: #ffffff !important;
    border: 2px solid transparent;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.35);
}

.nh-btn.nh-btn-buynow:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.5);
    color: #ffffff !important;
}

/* Hiệu ứng Icon */
.nh-btn .nh-icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nh-btn:hover .nh-icon {
    transform: scale(1.15);
}

/* Responsive khi xem trên điện thoại nhỏ */
@media (max-width: 480px) {
    .nh-btn-group {
        flex-direction: column;
        gap: 10px;
    }

    .nh-btn {
        width: 100%;
    }
}