/*
Theme Name: Điện Tử Mỹ Linh
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.wp-core-ui.notice.is-dismissible {
	display: none;
}

#setting-error-tgmpa.notice.notice-success.settings-error.is-dismissible {
	display: none;
}

.lpcta-hotline {
	height: 40px !important;
}

.featured-title .page-title-inner {
	padding-bottom: 0px !important;
}

.page-title-inner {
	padding-top: 0px !important
}

.posted-on {
	display:none;
}

.single_add_to_cart_button.button.alt {
    display: none;
}

.scroll-wrapper {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden;
    background: #f8f9fa;
    padding: 30px 0;
    cursor: grab;
    user-select: none;
}

.scroll-wrapper:active {
    cursor: grabbing;
}

.scroll-track {
    display: flex;
    gap: 30px;
    padding-left: 30px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.scroll-item {
    min-width: 450px;
    width: 450px;
    background: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.scroll-item:hover {
    transform: translateY(-8px);
}

/* Đảm bảo tỉ lệ 4:3 ngang */
.scroll-item .image-container {
    width: 100%;
    height: 337.5px; /* 450px * 3/4 = 337.5px để đảm bảo tỉ lệ 4:3 */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.scroll-item:hover .image-container {
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.project-info {
    padding: 20px 0;
    background: transparent;
    position: relative;
    padding-left: 15px;
}

.project-info:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e74c3c;
    border-radius: 2px;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-description {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: justify;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .scroll-item {
        min-width: 380px;
        width: 380px;
    }
    
    .scroll-item .image-container {
        height: 285px; /* 380px * 3/4 */
    }
}

@media (max-width: 768px) {
    .scroll-wrapper {
        padding: 20px 0;
    }
    
    .scroll-track {
        gap: 20px;
        padding-left: 20px;
    }
    
    .scroll-item {
        min-width: 320px;
        width: 320px;
    }
    
    .scroll-item .image-container {
        height: 240px; /* 320px * 3/4 */
    }
    
    .project-info {
        padding: 15px 0;
        padding-left: 15px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .scroll-item {
        min-width: 280px;
        width: 280px;
    }
    
    .scroll-item .image-container {
        height: 210px; /* 280px * 3/4 */
    }
    
    .project-info {
        padding: 12px 0;
        padding-left: 15px;
    }
    
    .project-title {
        font-size: 16px;
    }
    
    .project-description {
        font-size: 13px;
    }
}


/* ================================
   PRODUCT GRID SECTION
   ================================ */

.product-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 15px;
}

.section-title {
    text-align: center !important;
	display: block !important;
    font-size: 28px;
    font-weight: 600;
background-image: linear-gradient(45deg, red, darkred);
background-clip: text;
color: transparent;
 -webkit-background-clip: text;
    margin-bottom: 50px;
    line-height: 1.4;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.product-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-item:hover {
    background-image: linear-gradient(45deg, red, darkred) !important;
    border-color: darkred !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.product-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item:hover .product-icon {
    transform: scale(1.2);
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    transition: filter 0.3s ease;
}

.product-item:hover .product-icon img {
    filter: brightness(0) saturate(100%) invert(1);
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-item:hover .product-name {
    color: white !important;
}

/* Demo icons - Xóa phần này khi đã có ảnh thật */
.demo-icon {
    width: 100%;
    height: 100%;
    background: #6c757d;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.product-item:hover .demo-icon {
    background: white !important;
    color: #dc3545 !important;
}





        .newsletter-section {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            padding: 50px 40px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .newsletter-title {
            font-size: 32px;
            font-weight: bold;
            color: #e53e3e;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .newsletter-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            justify-content: center;
        }

        .form-group {
            flex: 1;
            max-width: 250px;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e2e2;
            border-radius: 4px;
            font-size: 14px;
            background-color: #f9f9f9;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #e53e3e;
            background-color: white;
        }

        .form-input::placeholder {
            color: #999;
        }

        .textarea-group {
            margin-bottom: 25px;
        }

        .form-textarea {
            width: 100%;
            max-width: 765px;
            height: 100px;
            padding: 15px;
            border: 2px solid #e2e2e2;
            border-radius: 4px;
            font-size: 14px;
            background-color: #f9f9f9;
            resize: vertical;
            transition: border-color 0.3s ease;
        }

        .form-textarea:focus {
            outline: none;
            border-color: #e53e3e;
            background-color: white;
        }

        .submit-btn {
            background-color: #e53e3e;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-bottom: 20px;
        }

        .submit-btn:hover {
            background-color: #c53030;
        }

        .form-note {
            font-size: 14px;
            color: #666;
        }

        .form-note .company-name {
            color: #e53e3e;
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .newsletter-section {
                padding: 30px 20px;
            }
            
            .newsletter-title {
                font-size: 24px;
            }
            
            .form-row {
                flex-direction: column;
                align-items: center;
            }
            
            .form-group {
                max-width: 100%;
                width: 100%;
            }
        }

        /* Success message */
        .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            display: none;
        }

        .error-message {
            background-color: #f8d7da;
            color: #721c24;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
            display: none;
        }








/*Banner danh mục*/

.category-banner-wrapper {
    width: 100%;
}

.category-banner {
    height: 130px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-banner .banner-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.category-banner .category-title {
    font-size: 3em !important;
    margin-bottom: 15px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: white !important;
    font-weight: bold;
	display: none;
}

.category-banner .category-description {
    font-size: 1.2em;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .category-banner {
        height: 250px;
    }
    
    .category-banner .category-title {
        font-size: 2em !important;
    }
    
    .category-banner .category-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .category-banner {
        height: 60px;
    }
    
    .category-banner .category-title {
        font-size: 1.5em !important;
    }
}





/* Hiệu ứng ánh sáng lướt ngang khi hover */
.category-banner {
    overflow: hidden;
    position: relative;
}

.category-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4) 50%,
        transparent
    );
    transition: left 0.6s ease-in-out;
    z-index: 3;
    pointer-events: none;
}

.banner-link:hover .category-banner::after,
.category-banner:hover::after {
    left: 100%;
}

/* Hiệu ứng bổ sung khi hover */
.banner-link:hover .category-banner,
.category-banner:hover {

    transition: transform 0.4s ease;
}

.banner-link:hover .category-banner::before,
.category-banner:hover::before {
    transition: all 0.4s ease;
}

/* Hiệu ứng text khi hover */
.banner-link:hover .category-title,
.category-banner:hover .category-title {
    transform: translateY(-10px) scale(1.1);
    transition: all 0.4s ease;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.banner-link:hover .category-description,
.category-banner:hover .category-description {
    transform: translateY(5px);
    opacity: 1;
    transition: all 0.4s ease;
}






/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 30px 15px;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .product-item {
        padding: 20px 10px;
    }
    .product-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    .product-name {
        font-size: 13px;
    }
    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-item {
        padding: 15px 8px;
    }
    .product-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    .product-name {
        font-size: 12px;
    }
    .section-title {
        font-size: 18px;
        margin-bottom: 25px;
    }
}












/* Responsive */
@media (max-width: 1200px) {
    .scroll-item {
        min-width: 380px;
        width: 380px;
    }
    
    .scroll-item .image-container {
        height: 285px; /* 380px * 3/4 */
    }
}

@media (max-width: 768px) {
    .scroll-wrapper {
        padding: 20px 0;
    }
    
    .scroll-track {
        gap: 20px;
        padding-left: 20px;
    }
    
    .scroll-item {
        min-width: 320px;
        width: 320px;
    }
    
    .scroll-item .image-container {
        height: 240px; /* 320px * 3/4 */
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-description {
        font-size: 14px;
    }
}



@media (max-width: 480px) {
    .scroll-item {
        min-width: 280px;
        width: 280px;
    }
    
    .scroll-item .image-container {
        height: 210px; /* 280px * 3/4 */
    }
    
    .project-info {
        padding: 15px;
    }
    
    .project-title {
        font-size: 16px;
    }
    
    .project-description {
        font-size: 13px;
    }
}

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


}









/**
 * CSS cho Breadcrumbs
 * Thêm vào style.css của theme hoặc Customizer
 */
.breadcrumb-wrapper {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumbs {
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #0073aa;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #005177;
}

.breadcrumbs .divider {
    margin: 0 8px;
    color: #999;
}

.breadcrumbs .current {
    color: #333;
    font-weight: 500;
}






.post-category {
    font-size: 16px;
    margin-bottom: 10px;
    color: #d9534f;
}

.post-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.post-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.post-content {
    font-size: 12px;
    line-height: 1.4;
}


.entry-meta.uppercase.is-xsmall {
    text-align: center;
}

.entry-divider.is-divider.small {
    display: none;
}

.posted-on {
    background: black;
    color: white;
    --fs-experimental-link-color: white;
    padding: 5px;
}


.byline {
    display: none;
}




/* ====== STYLE BREADCRUMB CHO BÀI VIẾT THƯỜNG (single post) ====== */
.single-post .custom-breadcrumb-styled .breadcrumb-link {
    color: #555555 !important;
    text-decoration: none !important;
    padding: 3px 6px !important;
    border-radius: 3px !important;
    transition: all .3s ease !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
}

.single-post .custom-breadcrumb-styled .breadcrumb-link:hover {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2) !important;
}

.single-post .custom-breadcrumb-styled .breadcrumb-separator {
    color: rgba(85, 85, 85, .6) !important;
    margin: 0 4px !important;
    font-size: 10px !important;
}

.single-post .custom-breadcrumb-styled .breadcrumb-current {
    color: #333333 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 3px 6px !important;
}





        /* ===== RESPONSIVE FOOTER: MỸ LINH LIGHTING ===== */
        .ml-footer {
            --red-primary: #d61f26;
            --red-dark: #8b0f12;
            --white: #ffffff;
            --white-90: rgba(255,255,255,0.9);
            --white-70: rgba(255,255,255,0.7);
            --white-60: rgba(255,255,255,0.6);
            --glass: rgba(255,255,255,0.12);
            --glass-2: rgba(255,255,255,0.18);
            --divider: rgba(255,255,255,0.2);
            
            background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
            color: var(--white);
            font-size: 16px;
            line-height: 1.6;
            width: 100%;
        }

        .ml-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        /* =====  DESKTOP LAYOUT ===== */
        .ml-top-row {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 40px;
        }

        /* Brand Section Desktop */
        .ml-brand {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .ml-logo {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .ml-logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
        }

        .ml-logo-text {
            font-size: 24px;
            font-weight: bold;
            color: var(--white);
            letter-spacing: 0.4px;
        }

        .ml-brand-info {
            flex: 1;
        }

        .ml-company-name {
            font-weight: bold;
            font-size: 15px;
            margin-bottom: 8px;
            color: var(--white);
        }

        .ml-address {
            font-size: 15px;
            color: var(--white-90);
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .ml-contact {
            font-size: 15px;
            color: var(--white-90);
            margin-bottom: 10px;
        }

        .ml-hotline {
            font-size: 22px;
            font-weight: bold;
            color: var(--white);
            margin-top: 10px;
        }

        /* Social Icons */
        .ml-social {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-top: 12px;
        }

        .ml-social-label {
            color: var(--white-70);
            margin-right: 5px;
        }

        .ml-social-icon {
            width: 38px;
            height: 38px;
            background: var(--glass);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .ml-social-icon:hover {
            background: var(--glass-2);
            transform: translateY(-2px);
            -webkit-transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            -webkit-box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .ml-social-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* CTA Section Desktop */
        .ml-cta {
            background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: saturate(120%) blur(2px);
            -webkit-backdrop-filter: saturate(120%) blur(2px);
            border-radius: 16px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 180px;
        }

        .ml-cta h3 {
            margin: 0;
            font-size: 22px;
            color: var(--white);
        }

        .ml-cta p {
            margin: 0;
            color: var(--white-90);
            font-size: 16px;
        }

        .ml-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--white);
            color: var(--red-dark);
            font-weight: bold;
            font-size: 15px;
            line-height: 1;
            white-space: nowrap;
            padding: 14px 20px;
            border-radius: 12px;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
            -webkit-box-shadow: 0 8px 18px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
        }

        .ml-btn:hover {
            transform: translateY(-2px);
            -webkit-transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.2);
            -webkit-box-shadow: 0 12px 24px rgba(0,0,0,0.2);
        }

        .ml-btn svg {
            width: 18px;
            height: 18px;
        }

        /* Divider */
        .ml-divider {
            height: 1px;
            background: var(--divider);
            margin: 30px 0;
        }

        /* Navigation Desktop */
        .ml-nav {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 30px;
        }

        .ml-nav-section h4 {
            color: var(--white);
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 12px;
        }

        .ml-nav-section .underline {
            width: 60px;
            height: 3px;
            background: var(--white);
            opacity: 0.35;
            border-radius: 6px;
            margin: 8px 0 16px;
        }

        .ml-nav-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
        }

        .ml-nav-section li a {
            color: var(--white-90);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
            -webkit-transition: color 0.3s ease;
            position: relative;
        }

        .ml-nav-section li a:hover {
            color: var(--white);
        }

        .ml-nav-section li a:hover:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 24px;
            height: 2px;
            background: var(--white);
            opacity: 0.5;
        }

        /* Bottom Section */
        .ml-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .ml-certification {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .ml-cert-badge img {
            height: 36px;
            width: auto;
            object-fit: contain;
            -o-object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
            -webkit-filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
        }

        .ml-license {
            font-size: 14px;
            color: var(--white-90);
        }

        .ml-copyright {
            font-size: 14px;
            color: var(--white-90);
            text-align: right;
        }

        .ml-copyright a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
        }

        .ml-copyright a:hover {
            color: #ffeb3b;
            text-shadow: 0 0 5px rgba(255,235,59,0.5);
        }

        /* ===== MOBILE RESPONSIVE ===== */
        @media (min-width: 1025px) {
            .ml-container {
                padding: 60px 40px;
            }
        }

        @media (max-width: 1024px) {
            .ml-container {
                padding: 50px 30px;
            }
            
            .ml-top-row {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 30px;
            }
            
            .ml-cta {
                order: 2;
                padding: 25px;
                min-height: auto;
            }
            
            .ml-nav {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }
            
            .ml-nav-section:nth-child(3) {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .demo-container {
                padding: 10px;
            }
            
            .ml-container {
                padding: 40px 25px;
            }
            
            .ml-top-row {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 30px;
            }
            
            .ml-cta {
                order: 2;
                padding: 25px;
                min-height: auto;
            }
            
            .ml-nav {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            
            .ml-nav-section:nth-child(3) {
                grid-column: 1 / -1;
            }
            
            .ml-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .ml-copyright {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .demo-container {
                padding: 5px;
            }
            
            .ml-container {
                padding: 30px 20px;
            }
            
            .ml-brand {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .ml-logo {
                justify-content: center;
            }
            
            .ml-logo-img {
                width: 45px;
                height: 45px;
            }
            
            .ml-logo-text {
                font-size: 22px;
            }
            
            .ml-hotline {
                font-size: 20px;
            }
            
            .ml-social {
                justify-content: center;
            }
            
            .ml-social-icon {
                width: 36px;
                height: 36px;
            }
            
            .ml-social-icon svg {
                width: 18px;
                height: 18px;
            }
            
            .ml-cta {
                text-align: center;
                padding: 20px;
            }
            
            .ml-cta h3 {
                font-size: 18px;
            }
            
            .ml-cta p {
                font-size: 14px;
            }
            
            .ml-btn {
                font-size: 14px;
                padding: 12px 18px;
            }
            
            .ml-nav {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            
            .ml-nav-section:nth-child(3) {
                grid-column: 1 / -1;
            }
            
            .ml-nav-section h4 {
                font-size: 15px;
            }
            
            .ml-nav-section li a {
                font-size: 14px;
            }
            
            .ml-certification {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .ml-cert-badge img {
                height: 32px;
            }
            
            .ml-license {
                font-size: 13px;
            }
            
            .ml-copyright {
                font-size: 13px;
            }
        }




.lp-viewport .lp-cover-img {
  display: block;
  margin: 0 auto;
  max-width: 90%; /* ví dụ */
}

@media (min-width: 768px) {
  .lp-viewport .lp-cover-img {
    width: 60% !important;
  }
}










.policy-page * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.policy-page {
    font-family: 'Poppins', 'UTM Avo', sans-serif !important;
    line-height: 1.6 !important;
    color: #333 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    overflow-x: hidden !important;
}

/* Container */
.policy-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.policy-container-small {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Sections */
.policy-section {
    padding: 60px 0 !important;
}

.policy-section-white {
    background: white !important;
}

.policy-section-gray {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.policy-section-red {
    background: linear-gradient(135deg, #f3020c 0%, #c91e1e 100%) !important;
    color: white !important;
}

/* Hero */
.policy-hero {
    text-align: center !important;
    padding: 60px 20px !important;
}

.policy-hero h1 {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    color: white !important;
}

.policy-hero p {
    font-size: 1.2rem !important;
    font-weight: 300 !important;
    opacity: 0.9 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.5 !important;
    color: white !important;
}

/* Section Title */
.policy-title {
    font-size: 2.2rem !important;
    color: #f3020c !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.policy-title-line {
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #f3020c, #ff6b6b) !important;
    margin: 0 auto 40px !important;
    border-radius: 2px !important;
}

/* Cards Layout */
.policy-cards {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 25px !important;
    justify-content: center !important;
}

.policy-card {
    background: white !important;
    padding: 25px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
    border-left: 4px solid #f3020c !important;
    flex: 1 1 300px !important;
    min-width: 280px !important;
    max-width: 350px !important;
    transition: transform 0.3s ease !important;
}

.policy-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
}

.policy-card-header {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 12px !important;
}

.policy-icon {
    width: 35px !important;
    height: 35px !important;
    background: rgba(243, 2, 12, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #f3020c !important;
    font-size: 1.1rem !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
}

.policy-card-title {
    color: #f3020c !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

.policy-card-text {
    color: #555 !important;
    line-height: 1.5 !important;
    font-size: 0.9rem !important;
}

/* Contract Cards */
.policy-contract-card {
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border-top: 4px solid #f3020c !important;
    flex: 1 1 300px !important;
    min-width: 280px !important;
    max-width: 350px !important;
}

.policy-contract-header {
    text-align: center !important;
    margin-bottom: 20px !important;
}

.policy-contract-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #f3020c 0%, #c91e1e 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 10px !important;
    color: white !important;
    font-size: 1.4rem !important;
}

.policy-contract-title {
    color: #f3020c !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

.policy-contract-text {
    color: #555 !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
    font-size: 0.9rem !important;
}

.policy-list {
    color: #555 !important;
    line-height: 1.4 !important;
    padding-left: 15px !important;
    font-size: 0.85rem !important;
}

.policy-list li {
    margin-bottom: 6px !important;
}

/* Support Cards */
.policy-support-cards {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    justify-content: center !important;
}

.policy-support-red {
    background: linear-gradient(135deg, #f3020c 0%, #c91e1e 100%) !important;
    color: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 30px rgba(243, 2, 12, 0.2) !important;
    flex: 1 1 400px !important;
    min-width: 350px !important;
}

.policy-support-gray {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border: 2px solid rgba(243, 2, 12, 0.1) !important;
    flex: 1 1 400px !important;
    min-width: 350px !important;
}

.policy-support-header {
    text-align: center !important;
    margin-bottom: 25px !important;
}

.policy-support-icon {
    font-size: 2.5rem !important;
    margin-bottom: 10px !important;
}

.policy-support-title {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
}

.policy-support-list {
    line-height: 1.6 !important;
    padding-left: 15px !important;
    font-size: 0.9rem !important;
    opacity: 0.95 !important;
}

.policy-support-list li {
    margin-bottom: 8px !important;
}

.policy-support-item {
    margin-bottom: 20px !important;
}

.policy-support-item:last-child {
    margin-bottom: 0 !important;
}

.policy-support-item h4 {
    color: #f3020c !important;
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
}

.policy-support-item p {
    color: #555 !important;
    line-height: 1.5 !important;
    font-size: 0.9rem !important;
}

/* CTA Section */
.policy-cta {
    text-align: center !important;
    padding: 60px 20px !important;
}

.policy-cta h2 {
    font-size: 2.2rem !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    color: white !important;
}

.policy-cta p {
    font-size: 1.1rem !important;
    margin-bottom: 30px !important;
    opacity: 0.9 !important;
    line-height: 1.5 !important;
    color: white !important;
}

.policy-contact {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
    margin-bottom: 30px !important;
}

.policy-contact-card {
    background: rgba(255,255,255,0.1) !important;
    padding: 20px !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    flex: 1 1 250px !important;
    min-width: 200px !important;
    max-width: 300px !important;
}

.policy-contact-icon {
    font-size: 1.3rem !important;
    margin-bottom: 8px !important;
    color: white !important;
}

.policy-contact-text {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: white !important;
}

.policy-contact-link {
    color: white !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 4px !important;
}

.policy-company-info {
    background: rgba(255,255,255,0.1) !important;
    padding: 25px !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.policy-company-info h3 {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
    color: white !important;
}

.policy-company-info p {
    font-size: 0.9rem !important;
    opacity: 0.9 !important;
    line-height: 1.4 !important;
    color: white !important;
}

/* Intro Card */
.policy-intro {
    background: white !important;
    padding: 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: 1px solid rgba(243, 2, 12, 0.1) !important;
    text-align: center !important;
}

.policy-intro h2 {
    font-size: 1.6rem !important;
    color: #f3020c !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.policy-intro-line {
    width: 50px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #f3020c, #ff6b6b) !important;
    margin: 0 auto 20px !important;
}

.policy-intro p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #555 !important;
    text-align: justify !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2.2rem !important;
    }
    
    .policy-hero p {
        font-size: 1.1rem !important;
    }
    
    .policy-section {
        padding: 40px 0 !important;
    }
    
    .policy-hero {
        padding: 40px 15px !important;
    }
    
    .policy-cta {
        padding: 40px 15px !important;
    }
    
    .policy-container,
    .policy-container-small {
        padding: 0 15px !important;
    }
    
    .policy-title {
        font-size: 1.8rem !important;
    }
    
    .policy-cta h2 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .policy-section {
        padding: 30px 0 !important;
    }
    
    .policy-hero {
        padding: 30px 10px !important;
    }
    
    .policy-cta {
        padding: 30px 10px !important;
    }
    
    .policy-container,
    .policy-container-small {
        padding: 0 10px !important;
    }
    
    .policy-title {
        font-size: 1.6rem !important;
    }
    
    .policy-cta h2 {
        font-size: 1.6rem !important;
    }
    
    .policy-card,
    .policy-contract-card,
    .policy-support-red,
    .policy-support-gray {
        min-width: 100% !important;
    }
    
    .policy-contact-card {
        min-width: 100% !important;
    }