﻿/* Video Section Styles */
/* Override mạnh mẽ cho video title - Độ ưu tiên cao nhất */
html body .video-section-bg h3.video-section-title,
html body .video-section-bg .video-section-title,
html body h3.video-section-title,
html body .video-section-title,
.video-section-bg h3.video-section-title,
.video-section-bg .video-section-title,
h3.video-section-title,
.video-section-title {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
}

/* Override mạnh mẽ nhất cho video title - CUỐI CÙNG */
h3[class*="video-section-title"],
.video-section-title[style*="font-family"],
h3.video-section-title[style*="font-family"] {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
}

/* Override font Beautique Display cho video và achievements sections */
.video-section-bg *,
.video-section-bg h3,
.video-section-bg p,
.video-section-bg span,
.video-section-bg div,
#achievements-section *,
#achievements-section h3,
#achievements-section p,
#achievements-section span,
#achievements-section div {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* Override cụ thể cho các class có font Beautique Display */
.video-section-title,
.achievements-title,
.achievements-subtitle,
.achievement-title,
.achievement-description,
.achievement-year {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* Override mạnh mẽ nhất cho tất cả h3 trong video và achievements sections */
html body .video-section-bg h3,
html body #achievements-section h3,
html body .video-section-title,
html body .achievements-title,
html body .achievement-title {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-weight: 800 !important;
    font-style: normal !important;
    text-transform: none !important;
}

/* Override mạnh mẽ nhất cho tất cả p trong achievements section */
html body #achievements-section p,
html body .achievements-subtitle,
html body .achievement-description {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-weight: 300 !important;
    font-style: normal !important;
}

/* Override mạnh mẽ nhất cho tất cả div trong achievements section */
html body #achievements-section div,
html body .achievement-year {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-weight: 800 !important;
    font-style: normal !important;
}

.video-section-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.video-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(204, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 68, 68, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.video-section-title {
    color: #333333;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: none; /* bỏ bóng làm chữ nhoè khác font */
    letter-spacing: 0; /* bỏ dãn chữ làm cảm giác khác font */
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-style: normal !important;
    text-transform: none !important;
}

.video-title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #cc0000, #ff4444);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    position: relative;
}

.video-title-decoration::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.video-section-subtitle {
    color: #666666;
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cc0000, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-play-button i {
    font-size: 2rem;
    color: #ffffff;
    margin-left: 4px; /* Để icon play cân đối */
}

.video-container:hover .video-play-button {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(204, 0, 0, 0.4);
}

/* Responsive styles for video section */
@media (max-width: 992px) {
    .video-section-title {
        font-size: 1.8rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .video-section-title {
        font-size: 1.5rem;
        max-width: 700px;
        line-height: 1.4;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .video-section-title {
        font-size: 1.3rem;
        max-width: 100%;
        line-height: 1.4;
        padding: 0 15px;
    }
    
    .video-container {
        border-radius: 15px;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
    
    .video-wrapper iframe {
        border-radius: 15px;
    }
    
    .video-overlay {
        border-radius: 15px;
    }
}

/* Achievements Section Styles - Only for achievements section */
/* Override mạnh mẽ cho tất cả text trong achievements section - BẢO VỆ ICON FONTS */
html body #achievements-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
html body #achievements-section h3:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
html body #achievements-section p:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
html body #achievements-section span:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
html body #achievements-section div:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
#achievements-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
#achievements-section h3:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
#achievements-section p:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
#achievements-section span:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
#achievements-section div:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]) {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* BẢO VỆ ICON FONTS - ĐẢM BẢO ICONS HIỂN THỊ ĐÚNG */
html body #achievements-section .fas,
html body #achievements-section .far,
html body #achievements-section .fab,
html body #achievements-section .fa,
html body #achievements-section [class*="fa-"],
#achievements-section .fas,
#achievements-section .far,
#achievements-section .fab,
#achievements-section .fa,
#achievements-section [class*="fa-"],
.achievement-icon i,
.achievement-icon .fas,
.achievement-icon .far,
.achievement-icon .fab,
.achievement-icon .fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro" !important;
    font-weight: 900 !important;
}

#achievements-section {
    background: #000000;
    position: relative;
    overflow: hidden;
}

#achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(204, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 68, 68, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(204, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.achievements-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.achievements-badge {
    display: inline-block;
    background: linear-gradient(135deg, #cc0000, #ff4444);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}

/* Override cực mạnh cho achievements title */
html body #achievements-section .achievements-title,
html body .achievements-title,
.achievements-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* Override cực mạnh cho achievements subtitle */
html body #achievements-section .achievements-subtitle,
html body .achievements-subtitle,
.achievements-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

.achievements-showcase {
    position: relative;
    z-index: 2;
}

.achievements-timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cc0000, #ff4444, #cc0000, transparent);
    transform: translateY(-50%);
    z-index: 1;
}

.achievement-item {
    position: relative;
    height: 100%;
    margin-bottom: 3rem;
    z-index: 2;
}

.achievement-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #cc0000, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.achievement-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.achievement-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1), rgba(255, 68, 68, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
}

.achievement-item:hover .achievement-content {
    transform: translateY(-15px) scale(1.05);
    border-color: rgba(204, 0, 0, 0.5);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(204, 0, 0, 0.3);
}

.achievement-item:hover .achievement-content::before {
    opacity: 1;
}

.achievement-item:hover .achievement-number {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.5);
}

.achievement-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #cc0000, #ff4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 15px 30px rgba(204, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 20px 40px rgba(204, 0, 0, 0.5),
        0 0 30px rgba(255, 68, 68, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.achievement-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

/* Override cực mạnh cho achievement title */
html body #achievements-section .achievement-title,
html body .achievement-title,
.achievement-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* Override cực mạnh cho achievement description */
html body #achievements-section .achievement-description,
html body .achievement-description,
.achievement-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* Override cực mạnh cho achievement year */
html body #achievements-section .achievement-year,
html body .achievement-year,
.achievement-year {
    display: inline-block;
    background: linear-gradient(135deg, #cc0000, #ff4444);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

.achievement-year::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.achievement-item:hover .achievement-year::before {
    left: 100%;
}

/* Individual item animations */
.achievement-item-1 { animation-delay: 0.1s; }
.achievement-item-2 { animation-delay: 0.2s; }
.achievement-item-3 { animation-delay: 0.3s; }
.achievement-item-4 { animation-delay: 0.4s; }
.achievement-item-5 { animation-delay: 0.5s; }
.achievement-item-6 { animation-delay: 0.6s; }

.achievement-item {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles for achievements section */
@media (max-width: 992px) {
    .achievements-title {
        font-size: 2.5rem;
    }
    
    .achievement-content {
        padding: 35px 25px;
    }
    
    .achievement-icon {
        width: 90px;
        height: 90px;
    }
    
    .achievement-icon i {
        font-size: 2.2rem;
    }
    
    .achievement-title {
        font-size: 1.2rem;
    }
    
    .achievements-subtitle {
        font-size: 1.1rem;
    }
    
    .achievements-timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .achievements-title {
        font-size: 2rem;
    }
    
    .achievement-content {
        padding: 30px 20px;
    }
    
    .achievement-icon {
        width: 80px;
        height: 80px;
    }
    
    .achievement-icon i {
        font-size: 2rem;
    }
    
    .achievement-title {
        font-size: 1.1rem;
    }
    
    .achievement-description {
        font-size: 0.95rem;
    }
    
    .achievements-subtitle {
        font-size: 1rem;
    }
    
    .achievement-year {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .achievements-title {
        font-size: 1.8rem;
    }
    
    .achievement-content {
        padding: 25px 15px;
    }
    
    .achievement-icon {
        width: 70px;
        height: 70px;
    }
    
    .achievement-icon i {
        font-size: 1.8rem;
    }
    
    .achievement-title {
        font-size: 1rem;
    }
    
    .achievement-description {
        font-size: 0.9rem;
    }
    
    .achievements-subtitle {
        font-size: 0.95rem;
    }
    
    .achievement-year {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .achievement-number {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
}

/* OVERRIDE CUỐI CÙNG VÀ MẠNH MẼ NHẤT - ĐẢM BẢO FONT ARIAL */
/* Override cho video section */
html body .video-section-bg,
html body .video-section-bg *,
html body .video-section-bg h3,
html body .video-section-bg p,
html body .video-section-bg span,
html body .video-section-bg div {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* Override cho achievements section */
html body #achievements-section,
html body #achievements-section *,
html body #achievements-section h3,
html body #achievements-section p,
html body #achievements-section span,
html body #achievements-section div {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* Override cụ thể cho các class quan trọng */
html body .video-section-title,
html body .achievements-title,
html body .achievements-subtitle,
html body .achievement-title,
html body .achievement-description,
html body .achievement-year {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
    -webkit-text-fill-color: initial !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-style: normal !important;
}

/* Reset bổ sung cho tiêu đề h3/h5 trong 2 section để tránh hiệu ứng từ CSS khác */
html body .video-section-bg h3,
html body #achievements-section h3,
html body #achievements-section h5 {
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
    -webkit-text-fill-color: initial !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-style: normal !important;
}

/* OVERRIDE CUỐI CÙNG - KHÔNG THỂ BỊ GHI ĐÈ */
/* CSS này có độ ưu tiên cao nhất, đặt ở cuối file */
html body .video-section-bg h3.video-section-title,
html body .video-section-bg .video-section-title,
html body h3.video-section-title,
html body .video-section-title,
.video-section-bg h3.video-section-title,
.video-section-bg .video-section-title,
h3.video-section-title,
.video-section-title,
html body #achievements-section h3.achievements-title,
html body #achievements-section .achievements-title,
html body h3.achievements-title,
html body .achievements-title,
#achievements-section h3.achievements-title,
#achievements-section .achievements-title,
h3.achievements-title,
.achievements-title {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    color: #333333 !important;
}

html body #achievements-section h5.achievement-title,
html body #achievements-section .achievement-title,
html body h5.achievement-title,
html body .achievement-title,
#achievements-section h5.achievement-title,
#achievements-section .achievement-title,
h5.achievement-title,
.achievement-title {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-transform: none !important;
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    color: #ffffff !important;
}

/* Override cho phần Thông tin ngành nghề - đảm bảo khoảng cách chữ bình thường */
html body .product-info-section .info-subtitle,
html body .product-info-section .info-description,
html body .product-info-section .info-text,
html body .product-info-section .product-info-box p,
html body .product-info-section .product-info-box h5,
html body .product-info-section .product-info-box h3,
html body .product-info-section .product-info-box-title,
html body .product-info-section .section-heading-line,
html body .product-info-section *,
.product-info-section .info-subtitle,
.product-info-section .info-description,
.product-info-section .info-text,
.product-info-section .product-info-box p,
.product-info-section .product-info-box h5,
.product-info-section .product-info-box h3,
.product-info-section .product-info-box-title,
.product-info-section .section-heading-line,
.product-info-section * {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    text-transform: none !important;
    font-style: normal !important;
}

/* Override cực mạnh cho toàn bộ Product Info Section */
html body .product-info-section,
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
.product-info-section,
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]) {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    text-transform: none !important;
    font-style: normal !important;
}

/* OVERRIDE CUỐI CÙNG - KHÔNG THỂ BỊ GHI ĐÈ CHO PRODUCT INFO SECTION */
/* CSS này có độ ưu tiên cao nhất, đặt ở cuối file */
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::before,
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::after,
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::hover,
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::focus,
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::active,
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]),
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::before,
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::after,
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::hover,
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::focus,
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"])::active {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    text-transform: none !important;
    font-style: normal !important;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* BẢO VỆ FONT AWESOME ICONS */
html body .product-info-section .fas,
html body .product-info-section .far,
html body .product-info-section .fab,
html body .product-info-section .fa,
html body .product-info-section [class*="fa-"],
.product-info-section .fas,
.product-info-section .far,
.product-info-section .fab,
.product-info-section .fa,
.product-info-section [class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro" !important;
}

/* OVERRIDE CỤ THỂ CHO INFO-SUBTITLE VÀ INFO-DESCRIPTION */
html body .product-info-section .info-subtitle,
html body .product-info-section .info-description,
html body .product-info-section .info-text-content,
html body .product-info-section .info-item,
html body .product-info-section .info-subtitle *,
html body .product-info-section .info-description *,
html body .product-info-section .info-text-content *,
html body .product-info-section .info-item *,
.product-info-section .info-subtitle,
.product-info-section .info-description,
.product-info-section .info-text-content,
.product-info-section .info-item,
.product-info-section .info-subtitle *,
.product-info-section .info-description *,
.product-info-section .info-text-content *,
.product-info-section .info-item * {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    text-transform: none !important;
    font-style: normal !important;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* OVERRIDE CUỐI CÙNG - KHÔNG THỂ BỊ GHI ĐÈ */
/* CSS này có độ ưu tiên cao nhất, đặt ở cuối file */
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]):not(.ls-1):not(.ls-2):not(.ls-3),
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]):not(.ls-1):not(.ls-2):not(.ls-3)::before,
html body .product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]):not(.ls-1):not(.ls-2):not(.ls-3)::after,
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]):not(.ls-1):not(.ls-2):not(.ls-3),
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]):not(.ls-1):not(.ls-2):not(.ls-3)::before,
.product-info-section *:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]):not(.ls-1):not(.ls-2):not(.ls-3)::after {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    text-transform: none !important;
    font-style: normal !important;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* OVERRIDE CỰC MẠNH CHO INFO-SUBTITLE VÀ INFO-DESCRIPTION */
html body .product-info-section .info-subtitle[style*="letter-spacing"],
html body .product-info-section .info-description[style*="letter-spacing"],
html body .product-info-section .info-subtitle,
html body .product-info-section .info-description,
html body .product-info-section .info-text-content,
html body .product-info-section .info-item,
.product-info-section .info-subtitle[style*="letter-spacing"],
.product-info-section .info-description[style*="letter-spacing"],
.product-info-section .info-subtitle,
.product-info-section .info-description,
.product-info-section .info-text-content,
.product-info-section .info-item {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    text-transform: none !important;
    font-style: normal !important;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* OVERRIDE CUỐI CÙNG - KHÔNG THỂ BỊ GHI ĐÈ */
/* CSS này có độ ưu tiên cao nhất, đặt ở cuối file */
html body .product-info-section .info-subtitle,
html body .product-info-section .info-description,
html body .product-info-section .info-text-content,
html body .product-info-section .info-item,
html body .product-info-section .info-subtitle *,
html body .product-info-section .info-description *,
html body .product-info-section .info-text-content *,
html body .product-info-section .info-item *,
html body .product-info-section .info-subtitle::before,
html body .product-info-section .info-description::before,
html body .product-info-section .info-text-content::before,
html body .product-info-section .info-item::before,
html body .product-info-section .info-subtitle::after,
html body .product-info-section .info-description::after,
html body .product-info-section .info-text-content::after,
html body .product-info-section .info-item::after,
.product-info-section .info-subtitle,
.product-info-section .info-description,
.product-info-section .info-text-content,
.product-info-section .info-item,
.product-info-section .info-subtitle *,
.product-info-section .info-description *,
.product-info-section .info-text-content *,
.product-info-section .info-item *,
.product-info-section .info-subtitle::before,
.product-info-section .info-description::before,
.product-info-section .info-text-content::before,
.product-info-section .info-item::before,
.product-info-section .info-subtitle::after,
.product-info-section .info-description::after,
.product-info-section .info-text-content::after,
.product-info-section .info-item::after {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    text-transform: none !important;
    font-style: normal !important;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

/* OVERRIDE CUỐI CÙNG - KHÔNG THỂ BỊ GHI ĐÈ */
/* CSS này có độ ưu tiên cao nhất, đặt ở cuối file */
html body .product-info-section .info-subtitle,
html body .product-info-section .info-description,
html body .product-info-section .info-text-content,
html body .product-info-section .info-item,
html body .product-info-section .info-subtitle *,
html body .product-info-section .info-description *,
html body .product-info-section .info-text-content *,
html body .product-info-section .info-item *,
html body .product-info-section .info-subtitle::before,
html body .product-info-section .info-description::before,
html body .product-info-section .info-text-content::before,
html body .product-info-section .info-item::before,
html body .product-info-section .info-subtitle::after,
html body .product-info-section .info-description::after,
html body .product-info-section .info-text-content::after,
html body .product-info-section .info-item::after,
.product-info-section .info-subtitle,
.product-info-section .info-description,
.product-info-section .info-text-content,
.product-info-section .info-item,
.product-info-section .info-subtitle *,
.product-info-section .info-description *,
.product-info-section .info-text-content *,
.product-info-section .info-item *,
.product-info-section .info-subtitle::before,
.product-info-section .info-description::before,
.product-info-section .info-text-content::before,
.product-info-section .info-item::before,
.product-info-section .info-subtitle::after,
.product-info-section .info-description::after,
.product-info-section .info-text-content::after,
.product-info-section .info-item::after {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: inherit !important;
    text-transform: none !important;
    font-style: normal !important;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

