/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* Căn chỉnh 2 nút nằm cạnh nhau đẹp mắt */
.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .buy-now-button {
    flex: 1;
    min-width: 150px;
    margin: 5px !important;
    height: 45px; /* Điều chỉnh chiều cao cho đều nhau */
}

/* Kiểu dáng riêng cho nút Mua ngay */
.woocommerce div.product form.cart .buy-now-button {
    background-color: #b20000 !important; /* Đổi màu cam đất (hợp tông Flatsome) hoặc màu đỏ #ff0000 */
    color: #fff !important;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

/* Tự động chèn thêm ghi chú vào dưới chữ Tổng */
.order-total th::after {
    content: "(chưa bao gồm chi phí vận chuyển)";
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #b20000;
    margin-top: 5px;
    text-transform: none; /* Giữ chữ thường, không bị viết hoa */
}
/* Thêm ghi chú ở trang Hoàn tất đơn hàng (ô thông tin bên phải) */
.woocommerce-order-overview__total::after,
.woocommerce-order-overview .total::after {
    content: " (chưa bao gồm chi phí vận chuyển)";
    font-size: 12px;
    font-weight: normal;
    color: #b20000;
    text-transform: none;
    display: inline-block;
    margin-left: 5px;
}

.woocommerce div.product form.cart .buy-now-button:hover {
    background-color: #b05615 !important; /* Màu khi di chuột vào */
    opacity: 0.9;
}
.product-summary .quantity {
    margin-bottom: 0em;
}
div.price-wrapper span.amount {
	font-size: 20px !important;
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}