/* Theme Name: Hello Elementor Child
Theme URI: https://naeu.vn/
Description: This theme created by Jake Ngoc Nguyen from Naeu team.
Author: Jake Ngoc Nguyen
Author URI: https://ngocnguyen.com.vn/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* --- 1. CSS DÀNH CHO LOOP SẢN PHẨM NGOÀI TRANG CHỦ / DANH MỤC --- */
.custom-loop-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.custom-loop-price-wrapper del {
    color: #8a8e98 !important; 
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through !important;
    margin-right: 8px;
}
/* Đã fix lỗi dấu phẩy dính khoảng trắng lạ */
.custom-loop-price-wrapper ins, 
.custom-loop-price-wrapper .loop-normal-price {
    color: #988400 !important;
    font-size: 26px;
    display: inline-block;
    font-weight: 500;
    text-decoration: none !important;
}

@media (max-width: 767px) {
    .custom-loop-price-wrapper ins, 
    .custom-loop-price-wrapper .loop-normal-price {
        font-size: 20px;
    }
}


/* --- 2. CSS ĐẶC TRỊ CHO TRANG CHI TIẾT SẢN PHẨM (GIÁ BIẾN THỂ NHẢY SỐ) --- */


/* Khung hiển thị cấu trúc Giá custom có chữ Giá đứng trước */
.custom-single-price-block {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    font-family: system-ui, -apple-system, sans-serif;
}

.custom-single-price-block .price-label {
    width: 100px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
    padding-top: 4px;
}

.dynamic-moved-price {
    flex: 1;
    display: flex;
    flex-direction: column; /* Ép giá gốc lên trên, giá mới xuống dưới */
}

/* Định dạng GIÁ GỐC (Có gạch ngang) nằm ở TRÊN */
.dynamic-moved-price del {
    color: #8a8e98 !important;
    font-size: 16px !important;
    text-decoration: line-through !important;
    margin-bottom: 5px !important;
    display: block !important;
    font-weight: normal !important;
}

/* Định dạng GIÁ KHUYẾN MÃI MỚI nằm ở DƯỚI */
.dynamic-moved-price ins, 
.dynamic-moved-price .amount {
    color: #0B3A7F !important; /* Màu xanh đậm chuẩn ảnh mẫu của mày */
    font-size: 28px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    display: block !important;
}

.dynamic-moved-price ins .amount {
    padding: 0 !important;
}

@media (max-width: 767px) {
    .dynamic-moved-price ins, 
    .dynamic-moved-price .amount {
        font-size: 22px !important;
    }
}