/*
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.   ***************/


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


}

/* ==========================================================================
   SANGOYS ARTICLE CARD (THẺ BÀI VIẾT)
   (Cổng từ dự án MUVP sang)
   ========================================================================== */

/* Wrapper cho Lưới (Grid) và Trượt (Slider) */
.sangoys-blog-grid {
    display: grid;
    gap: 30px;
}
.sangoys-blog-grid.sangoys-cols-4 { grid-template-columns: repeat(4, 1fr); }
.sangoys-blog-grid.sangoys-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sangoys-blog-grid.sangoys-cols-2 { grid-template-columns: repeat(2, 1fr); }

.sangoys-blog-slider .flickity-slider {
    display: flex;
}
.sangoys-blog-slider .sangoys-article-card-wrap {
    padding: 0 15px !important;
    height: auto;
    display: flex;
}
.sangoys-blog-slider.sangoys-cols-4 .sangoys-article-card-wrap { width: 25% !important; flex: 0 0 25% !important; max-width: 25% !important; }
.sangoys-blog-slider.sangoys-cols-3 .sangoys-article-card-wrap { width: 33.3333% !important; flex: 0 0 33.3333% !important; max-width: 33.3333% !important; }
.sangoys-blog-slider.sangoys-cols-2 .sangoys-article-card-wrap { width: 50% !important; flex: 0 0 50% !important; max-width: 50% !important; }

/* Khung Article Card */
.sangoys-article-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sangoys-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sangoys-article-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Phần Ảnh (Thumbnail) */
.sangoys-article-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Tỉ lệ 16:9 */
    overflow: hidden;
}

.sangoys-article-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sangoys-article-card:hover .sangoys-article-image img {
    transform: scale(1.08);
}

/* Huy hiệu Ngày tháng (Date Badge) */
.sangoys-article-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d26e4b;
    color: #fff;
    padding: 5px 8px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(210, 110, 75, 0.4);
    z-index: 2;
}

.sangoys-date-d {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.sangoys-date-m {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.9;
}

/* Phần Nội dung (Content) */
.sangoys-article-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Danh mục (Category) */
.sangoys-article-cat {
    font-size: 0.8rem;
    font-weight: 700;
    color: #d26e4b;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Tiêu đề (Title) */
.sangoys-article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    
    /* Cắt dòng chữ nếu quá 2 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sangoys-article-card:hover .sangoys-article-title {
    color: #d26e4b;
}

/* Mô tả ngắn (Excerpt) */
.sangoys-article-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    
    /* Cắt 3 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer: Tác giả + Đọc tiếp */
.sangoys-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: auto;
}

.sangoys-article-author {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.sangoys-article-readmore {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
    transition: color 0.3s;
}

.sangoys-article-card:hover .sangoys-article-readmore {
    color: #d26e4b;
}

/* Responsive */
@media screen and (max-width: 849px) {
    .sangoys-blog-grid.sangoys-cols-4,
    .sangoys-blog-grid.sangoys-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .sangoys-blog-slider.sangoys-cols-4 .sangoys-article-card-wrap,
    .sangoys-blog-slider.sangoys-cols-3 .sangoys-article-card-wrap {
        width: 50% !important; flex: 0 0 50% !important; max-width: 50% !important;
    }
}

@media screen and (max-width: 549px) {
    .sangoys-blog-grid.sangoys-cols-4,
    .sangoys-blog-grid.sangoys-cols-3,
    .sangoys-blog-grid.sangoys-cols-2 {
        grid-template-columns: 1fr;
    }
    .sangoys-blog-slider.sangoys-cols-4 .sangoys-article-card-wrap,
    .sangoys-blog-slider.sangoys-cols-3 .sangoys-article-card-wrap,
    .sangoys-blog-slider.sangoys-cols-2 .sangoys-article-card-wrap {
        width: 100% !important; flex: 0 0 100% !important; max-width: 100% !important;
    }
}

/* ==========================================================================
   SANGOYS PREMIUM SIDEBAR WIDGETS (Cho Cả Tin tức & Sản phẩm)
   ========================================================================== */

/* Khung Widget */
.sidebar-inner .widget,
#secondary .widget,
#shop-sidebar .widget {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease;
}

.sidebar-inner .widget:hover,
#secondary .widget:hover,
#shop-sidebar .widget:hover {
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* Tiêu đề Widget */
.sidebar-inner .widget-title,
#secondary .widget-title,
#shop-sidebar .widget-title {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #111111 !important;
    margin-bottom: 25px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    position: relative;
    text-transform: uppercase !important;
    letter-spacing: 0.05em;
    display: block;
}

/* Dấu gạch nhấn màu Cam dưới tiêu đề */
.sidebar-inner .widget-title::after,
#secondary .widget-title::after,
#shop-sidebar .widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #d26e4b; /* Màu cam gỗ */
    border-radius: 3px;
}

/* Danh sách bên trong Widget (Danh mục, Bài viết) */
.sidebar-inner .widget ul li,
#secondary .widget ul li,
#shop-sidebar .widget ul li {
    padding: 12px 0;
    border-bottom: 1px dashed #f0f0f0;
    transition: padding-left 0.3s ease;
}

.sidebar-inner .widget ul li:last-child,
#secondary .widget ul li:last-child,
#shop-sidebar .widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-inner .widget ul li:first-child,
#secondary .widget ul li:first-child,
#shop-sidebar .widget ul li:first-child {
    padding-top: 0;
}

.sidebar-inner .widget ul li a,
#secondary .widget ul li a,
#shop-sidebar .widget ul li a {
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-inner .widget ul li:hover,
#secondary .widget ul li:hover,
#shop-sidebar .widget ul li:hover {
    padding-left: 5px;
}

.sidebar-inner .widget ul li:hover > a,
#secondary .widget ul li:hover > a,
#shop-sidebar .widget ul li:hover > a {
    color: #d26e4b;
}

/* Widget Bài viết mới nhất (Flatsome Recent Posts) */
.widget_recent_entries ul li {
    display: flex;
    align-items: flex-start;
}

/* Format riêng cho ô Ngày tháng trong Widget bài viết */
.widget .post-date {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.widget ul li:hover .post-date {
    background: #d26e4b;
    border-color: #d26e4b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(210, 110, 75, 0.3);
}

.widget .post-date .day {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    color: inherit;
}

.widget .post-date .month {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: inherit;
    margin-top: 2px;
}

/* Sửa lỗi Widget Sản Phẩm (WooCommerce Product List) bị đè padding */
.sidebar-inner .widget_products ul li,
#secondary .widget_products ul li,
#shop-sidebar .widget_products ul li,
.sidebar-inner .product_list_widget li,
#secondary .product_list_widget li,
#shop-sidebar .product_list_widget li {
    padding-left: 75px !important;
}

.sidebar-inner .widget_products ul li:hover,
#secondary .widget_products ul li:hover,
#shop-sidebar .widget_products ul li:hover,
.sidebar-inner .product_list_widget li:hover,
#secondary .product_list_widget li:hover,
#shop-sidebar .product_list_widget li:hover {
    padding-left: 80px !important;
}

.sidebar-inner .product_list_widget li img,
#secondary .product_list_widget li img,
#shop-sidebar .product_list_widget li img {
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sidebar-inner .product_list_widget li:hover img,
#secondary .product_list_widget li:hover img,
#shop-sidebar .product_list_widget li:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   SANGOYS PREMIUM FOOTER
   ========================================================================== */

.sangoys-footer-wrapper {
    background-color: #2d1a11; /* Nâu trầm sang trọng */
    color: #e0e0e0;
    padding: 70px 0 0 0;
    font-family: 'Inter', sans-serif;
    border-top: 5px solid #d26e4b; /* Viền cam gỗ ở trên */
}

.sangoys-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.sangoys-footer-col {
    display: flex;
    flex-direction: column;
}

/* Cột 1: Logo & Giới thiệu */
.sangoys-footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}
.sangoys-footer-logo-text {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sangoys-footer-about {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #b3b3b3;
}
.sangoys-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.sangoys-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    background-color: rgba(255,255,255,0.05);
    color: #fff !important;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.sangoys-footer-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(210, 110, 75, 0.4);
    border-color: #d26e4b;
    background-color: #d26e4b;
}

.sangoys-footer-social svg {
    width: 18px;
    height: 18px;
}

.sangoys-zalo-icon {
    font-weight: 700;
    font-size: 13px;
    border-radius: 20px !important;
    padding: 0 15px !important;
    width: auto !important;
}

/* Tiêu đề Cột 2, 3, 4 */
.sangoys-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sangoys-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #d26e4b; /* Cam gỗ */
    border-radius: 2px;
}

/* Danh sách Links */
.sangoys-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sangoys-footer-links li {
    margin-bottom: 15px;
}
.sangoys-footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 15px;
}
.sangoys-footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: #d26e4b;
    font-size: 18px;
    transition: transform 0.3s ease;
}
.sangoys-footer-links a:hover {
    color: #fff;
}
.sangoys-footer-links a:hover::before {
    transform: translateX(4px);
}

/* Thông tin liên hệ (Cột 4) */
.sangoys-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sangoys-footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #b3b3b3;
    font-size: 15px;
    line-height: 1.5;
}
.sangoys-footer-contact li svg {
    width: 20px;
    height: 20px;
    color: #d26e4b;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}
.sangoys-footer-contact li strong {
    color: #fff;
    font-weight: 700;
}

/* Dòng bản quyền dưới cùng */
.sangoys-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .sangoys-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 550px) {
    .sangoys-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sangoys-footer-wrapper {
        padding: 50px 15px 0;
    }
}

/* ========== MOBILE MENU DRAWER (LEFT / RIGHT / CENTER) – GLASSMORPHISM ========== */
@media only screen and (max-width: 849px) {

	/* Backdrop */
	.off-canvas-left .mfp-bg,
	.off-canvas-right .mfp-bg,
    .off-canvas-center .mfp-bg,
	.off-canvas-left.mfp-bg.mfp-ready,
	.off-canvas-right.mfp-bg.mfp-ready,
    .off-canvas-center.mfp-bg.mfp-ready {
		background-color: rgba(45, 26, 17, 0.4) !important;
		opacity: 1 !important;
		-webkit-backdrop-filter: blur(6px) saturate(160%);
		backdrop-filter: blur(6px) saturate(160%);
	}

	/* Panel drawer: kính mờ xuyên thấu */
	.off-canvas-left .mfp-content,
	.off-canvas-right .mfp-content,
    .off-canvas-center .mfp-content {
		background: rgba(255, 255, 255, 0.85) !important;
		-webkit-backdrop-filter: blur(18px) saturate(200%);
		backdrop-filter: blur(18px) saturate(200%);
		border: none !important;
		box-shadow: 0 0 50px rgba(45, 26, 17, 0.25) !important;
	}

	/* Sidebar menu */
	.off-canvas-left .sidebar-menu,
	.off-canvas-right .sidebar-menu,
    .off-canvas-center .sidebar-menu {
		padding: 56px 0 32px !important;
		background: transparent !important;
	}
    .off-canvas-center .sidebar-menu { padding: 56px 18px 32px !important; }

	/* Ô tìm kiếm: chiếm hết chiều ngang */
	.mfp-content .searchform-wrapper,
	.mfp-content .ux-search-box {
		margin: 0 10px 18px !important;
		padding: 0 !important;
		width: calc(100% - 20px) !important;
		max-width: 100% !important;
	}

	.mfp-content form.searchform,
	.mfp-content .searchform {
		position: relative !important;
		display: block !important;
		padding: 0 !important;
		background: rgba(255, 255, 255, 0.95);
		border: 1px solid rgba(210, 110, 75, 0.2);
		border-radius: 999px !important;
		box-shadow: 0 8px 20px rgba(45, 26, 17, 0.08);
	}

	.mfp-content form.searchform input.search-field,
	.mfp-content .searchform input[type="search"],
	.mfp-content .searchform input[type="text"] {
		display: block !important;
		width: 100% !important;
		height: 48px !important;
		margin: 0 !important;
		padding: 0 54px 0 18px !important;
		background: transparent !important;
		border: none !important;
		border-radius: 999px !important;
		box-shadow: none !important;
		font-size: 0.93rem;
		line-height: 48px;
		color: #2d1a11;
	}

	.mfp-content .searchform input::placeholder {
		color: #888;
		opacity: 1;
	}

	.mfp-content .searchform input:focus {
		outline: none !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	.mfp-content .searchform .ux-search-submit,
	.mfp-content .searchform button[type="submit"] {
		position: absolute !important;
		top: 50% !important;
		right: 4px !important;
		transform: translateY(-50%);
		width: 40px !important;
		height: 40px !important;
		min-height: 40px !important;
		padding: 0 !important;
		margin: 0 !important;
		border: none !important;
		border-radius: 50% !important;
		background: linear-gradient(135deg, #d26e4b, #b85b3a) !important;
		color: #fff !important;
		box-shadow: 0 6px 14px rgba(210, 110, 75, 0.35) !important;
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		transition: transform 0.2s ease, box-shadow 0.2s ease;
	}

	.mfp-content .searchform .ux-search-submit:hover,
	.mfp-content .searchform button[type="submit"]:hover {
		transform: translateY(-50%) scale(1.06);
		box-shadow: 0 10px 20px rgba(210, 110, 75, 0.45) !important;
	}

	.mfp-content .searchform .ux-search-submit i,
	.mfp-content .searchform .ux-search-submit svg {
		font-size: 16px;
		color: #fff !important;
	}

	/* Danh sách menu */
	.nav-sidebar.nav-vertical > li { border: none !important; }
	.nav-sidebar.nav-vertical > li + li { border-top: 1px solid rgba(45, 26, 17, 0.05) !important; }

	.nav-sidebar.nav-vertical > li > a {
		padding: 15px 20px !important;
		margin: 3px 10px;
		border-radius: 12px;
		color: #2d1a11 !important;
		font-size: 0.95em !important;
		font-weight: 700 !important;
		letter-spacing: 0.02em;
		transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease;
	}
    .off-canvas-center .nav-sidebar.nav-vertical > li > a { justify-content: center; margin: 4px 0; border-radius: 14px; }

	.nav-sidebar.nav-vertical > li > a:hover,
	.nav-sidebar.nav-vertical > li.active > a,
	.nav-sidebar.nav-vertical > li.current-menu-item > a,
	.nav-sidebar.nav-vertical > li.current-menu-parent > a {
		background: rgba(255, 255, 255, 0.95) !important;
		color: #d26e4b !important;
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 6px 16px rgba(210, 110, 75, 0.14);
	}

	/* Mũi tên submenu */
	.nav-sidebar.nav-vertical > li .toggle { color: #2d1a11; }
	.nav-sidebar.nav-vertical > li.active > a .toggle,
	.nav-sidebar.nav-vertical > li > a:hover .toggle { color: #d26e4b; }

	/* Submenu lồng */
	.nav-sidebar.nav-vertical ul.children,
	.nav-sidebar.nav-vertical ul.sub-menu {
		background: rgba(255, 255, 255, 0.6);
		border-radius: 10px;
		margin: 4px 10px 8px;
		padding: 6px 0;
	}

	.nav-sidebar.nav-vertical ul.children > li > a,
	.nav-sidebar.nav-vertical ul.sub-menu > li > a {
		font-size: 0.92em !important;
		color: #555 !important;
		padding-left: 22px !important;
        font-weight: 600 !important;
	}

	/* Nút đóng (X): tròn, kính, cố định */
	.mfp-close {
		position: fixed !important;
		top: 12px !important;
		width: 44px !important;
		height: 44px !important;
		line-height: 44px !important;
		border-radius: 50% !important;
		background: rgba(255, 255, 255, 0.9) !important;
		-webkit-backdrop-filter: blur(10px) saturate(160%);
		backdrop-filter: blur(10px) saturate(160%);
		border: 1px solid rgba(255, 255, 255, 1) !important;
		box-shadow: 0 8px 22px rgba(45, 26, 17, 0.18) !important;
		color: #2d1a11 !important;
		opacity: 1 !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
		z-index: 1100;
	}

	.off-canvas-left .mfp-close { right: 12px !important; left: auto !important; }
	.off-canvas-right .mfp-close { left: 12px !important; right: auto !important; }
    .off-canvas-center .mfp-close { right: 12px !important; top: 12px !important; }

	.mfp-close svg {
		width: 22px;
		height: 22px;
		stroke-width: 2.4;
		color: #2d1a11;
	}

	.mfp-close:hover {
		background: #fff !important;
		transform: rotate(90deg);
		box-shadow: 0 12px 28px rgba(45, 26, 17, 0.26) !important;
	}
}

/* ========== DỰ TOÁN CHI PHÍ SÀN GỖ (ESTIMATOR) ========== */
.sangoys-estimator-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #333;
}
.se-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.se-header-banner {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    text-align: center;
}
.se-header-banner h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
    color: #2d1a11;
    font-weight: 700;
}
.se-header-banner p {
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
}
.se-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.se-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}
.se-btn-hotline {
    background: #d26e4b;
    color: #fff;
    box-shadow: 0 4px 10px rgba(210,110,75,0.3);
}
.se-btn-hotline:hover {
    background: #b55a39;
    color: #fff;
    transform: translateY(-2px);
}
.se-btn-zalo {
    background: #0068ff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,104,255,0.3);
}
.se-btn-zalo:hover {
    background: #0054cc;
    color: #fff;
    transform: translateY(-2px);
}
.se-col-left {
    flex: 1 1 500px;
}
.se-col-right {
    flex: 1 1 350px;
}
.se-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}
.se-card-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    color: #2d1a11;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}
.mt-20 { margin-top: 20px; }
.se-form-group-row {
    display: flex;
    gap: 20px;
}
.se-form-group-row .se-form-group {
    flex: 1;
}
.se-form-group {
    margin-bottom: 18px;
}
.se-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}
.se-form-group input, .se-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
    background: #fdfdfd;
    box-sizing: border-box;
    height: auto !important;
}
.se-form-group select {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: 46px !important;
    line-height: 46px !important;
}
.se-form-group input:focus, .se-form-group select:focus {
    border-color: #d26e4b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(210,110,75,0.1);
}
.se-checkbox-group {
    margin-top: 15px;
}
.se-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}
.se-checkbox input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #d26e4b;
    cursor: pointer;
}
.se-check-text {
    font-size: 15px;
}
.se-receipt-card {
    background: linear-gradient(180deg, #2d1a11 0%, #1a0f0a 100%);
    border-radius: 12px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(45,26,17,0.3);
    position: sticky;
    top: 20px;
}

/* Hỗ trợ hiển thị GTranslate trên Mobile */
@media (max-width: 849px) {

    /* Fix lỗi Flatsome flex-wrap: nowrap đẩy HTML element ra khỏi màn hình */
    #header .header-inner .nav.nav-right {
        overflow: visible !important;
    }

    /* Đảm bảo li.html (chứa GTranslate) trong nav không bị bóp/ẩn */
    #header .header-inner .nav > li.html,
    #header .header-inner .nav > li.html.custom-html {
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
        min-width: 0 !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    /* Kích cỡ GTranslate widget trên mobile */
    #header .header-inner .nav > li.html .gtranslate_wrapper,
    #header .header-inner .nav > li.html [id^="gt-wrapper"] {
        transform: scale(1.0);
        transform-origin: right center;
        display: inline-block !important;
        overflow: visible !important;
    }

    /* Kích thước lá cờ */
    #header .header-inner .nav > li.html img {
        width: 20px !important;
        height: 20px !important;
        max-width: none !important;
    }
}

.se-receipt-header {
    text-align: center;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.se-receipt-header h3 {
    margin: 0 0 5px;
    color: #d26e4b;
    font-size: 22px;
    font-weight: 800;
}
.se-receipt-header p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}
.se-receipt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.se-receipt-item strong {
    font-size: 15px;
}
.se-summary-info span {
    color: #aaa;
    font-size: 14px;
}
.se-divider {
    border-top: 1px dashed rgba(255,255,255,0.2);
    margin: 20px 0;
}
.se-item-meta {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}
.se-price {
    font-size: 16px !important;
    color: #fff;
}
.se-receipt-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(255,255,255,0.2);
}
.se-receipt-footer span {
    font-size: 18px;
    font-weight: 700;
}
.se-receipt-footer #se-total-cost {
    font-size: 28px;
    color: #d26e4b;
    font-weight: 800;
}
@media (max-width: 767px) {
    .se-form-group-row { flex-direction: column; gap: 0; }
    .se-receipt-card { position: static; }
}