* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background-button: #ff7373;
    --background-blue: #184f86;
    --background-light-blue: #002c4d;
    --main-background: #ffffff;
    --background-product-detail: #f9f9f9;
    --background-yellow: #ffc800;
    --background-white: #ebebeb;
    --text-color-red: #d30000;
    --text-color-white: #ffffff;
    --text-color-black: #000000;
    --text-color-blue: #184f86;
    --text-color-yellow: #ffc800;
}

body {
    font-family: "Montserrat", sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/** Line-clamp **/
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-10 {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
    padding: 0;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-btn i {
    font-size: 18px;
    color: var(--color-black);
}

/* header */
.header {
    position: relative;
    display: flex;
    flex-direction: column;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.email-conttact a,
.phone-contact a {
    display: flex;
    color: var(--text-color-white);
    font-weight: lighter;
    text-decoration: none;
}

.email-conttact a img,
.phone-contact a img {
    margin-right: 7px;
}

.email-conttact a,
.phone-contact a {
    margin-right: 5px;
}

.header-top {
    display: flex;

    padding: 13px 0px;
}

.header-t {
    background: var(--background-blue);
    margin-bottom: 74px;
}

.header-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    margin-right: 20px;
}

.social-icons a {
    color: var(--text-color-white);
    text-decoration: none;
    padding: 5px;
}
.text-decoration-none img {
    width: 24px;
    height: 24px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo_content {
    display: flex;
    flex-direction: column;
}
.logo_name {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color-red);
}
.logo_description {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-color-red);
}

/* breadcrumb */
.breadcrumb-nav {
    background-color: var(--background-white);
    padding: 35px 0;
}

.flex-breadcumb {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

ul.breadcrumb li {
    display: flex;
    align-items: center;
}

ul.breadcrumb li a {
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

ul.breadcrumb li .separator {
    margin: 0 10px;
    display: flex;
    align-items: center;
}

ul.breadcrumb li .separator img {
    width: 15px;
    height: 15px;
}

ul.breadcrumb li .current {
    color: var(--text-color-red);
    font-weight: 600;
    font-size: 14px;
}

.breadcrumb-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color-blue);
}

/* footer */
.footer {
    background-color: var(--background-blue);
    color: var(--text-color-white);
    padding: 30px 0 30px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.8;
    margin: 0;
}

.footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--text-color-white);
    text-decoration: none;
    padding: 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
}

.footer-info {
    flex: 1;
    margin-right: 40px;
}

.footer-desc h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-desc .footer_description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--text-color-white);
    margin-right: 15px;
    margin-top: 3px;
}

.contact-item p {
    margin-left: 10px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    flex: 2;
    justify-content: space-between;
    gap: 30px;
}

.link-group {
    min-width: 160px;
}

.link-group h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--text-color-red);
    width: 150px;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.link-group ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.map-container {
    flex-grow: 1;
}

.map {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

/* Pagination*/
.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 10px 0px;
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.pagination-item {
    margin: 0;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: #fff;
    color: var(--text-color-black);
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-item.active .pagination-link {
    background-color: var(--background-blue);
    color: #fff;
    border-color: var(--background-blue);
}

.pagination-link:hover {
    background-color: var(--background-button);
    color: #fff;
    border-color: var(--background-button);
}

.pagination-item.disabled .pagination-link {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

/* menu */
.fixed {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.container_menu {
    max-width: 90%;
    margin: 0px auto;
}
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}

.menu-center .menu-list {
    display: flex;
    list-style: none;
    justify-content: space-between;
    gap: 40px;
}

.menu-list li {
    position: relative;
    z-index: 1001;
}

.menu-center .menu-list li a {
    font-weight: 600;
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 18px;
    text-transform: capitalize;
    padding: 10px 0;
    display: block;
}

.menu-center .menu-list li a:hover {
    color: var(--text-color-blue);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.menu-list li:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 10000;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content li a {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color-black);
    text-transform: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-content li a:hover {
    color: var(--text-color-white);
    border-left-color: var(--background-button);
    padding-left: 25px;
}

.menu-right {
    width: 250px;
    overflow: hidden;
    margin-right: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
}

.search-bar input {
    display: none;
    border: none;
    outline: none;
    border-radius: 20px;
    width: 200px;
    font-size: 16px;
    padding: 8px 10px;
}

.search-bar button {
    background: var(--background-button);
    border: none;
    outline: none;
    padding: 8px 8px;
    border-radius: 30px;
    cursor: pointer;
}

.search-bar:hover {
    border: #cccccc solid 1px;
    border-radius: 20px;
}

.search-bar:hover input,
.search-bar:focus-within input {
    display: block;
}

.search-bar input::placeholder {
    color: var(--text-color-red);
    font-weight: 500;
    font-size: 16px;
}

.search-bar:hover button {
    background: var(--main-background);
}

.search-bar:hover button img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(7465%)
        hue-rotate(0deg) brightness(91%) contrast(122%);
}

.mobile-dropdown {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    color: var(--text-color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-menu-link:hover {
    background-color: #f8f9fa;
}

.mobile-link-content {
    display: flex;
    align-items: center;
}

.mobile-link-content i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.dropdown-arrow {
    font-size: 12px;
    color: var(--text-color-blue);
    transition: transform 0.3s ease;
}

.mobile-parent-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-color-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    background-color: #f0f7ff;
    border-bottom: 1px solid #e0e7ff;
}

.mobile-parent-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
}

.mobile-dropdown.active .mobile-dropdown-content {
    border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-item {
    border-bottom: 1px solid #e9ecef;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-color-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding-left: 35px;
}

.mobile-dropdown-item a i {
    margin-right: 8px;
    width: 15px;
    text-align: center;
    font-size: 10px;
}

.mobile-dropdown-content {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* slider */
.slider {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    margin-bottom: 40px;
}

.svg-cut {
    z-index: 2;
    bottom: -1px;
    align-items: center;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
}

.svg-image-cut {
    color: var(--main-background);
}

.slider-header {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slider-header img {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: left 0.5s ease-in-out;
}

.slider-header img.active {
    left: 0;
}

.slider-content {
    position: absolute;
    z-index: 2;
    color: var(--text-color-white);
    width: 70%;
    padding: 60px;
    top: 40%;
    transform: translateY(-50%);
}

.slider-content h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slider-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-slider {
    background: var(--main-background);
    color: var(--text-color-red);
    border: none;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-slider:hover {
    background: var(--background-button);
    color: var(--text-color-white);
}

/* slogan */
.slogan-container .slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slogan-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color-red);
    margin-bottom: 10px;
}

.slogan-container .slogan .slogan-content {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color-black);
    line-height: 1.5;
    max-width: 900px;
}

/* category home */
.category-home {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 60px;
    transition: all 0.3s ease;
    position: relative;
}

.category-item {
    flex: 1;
    max-width: 400px;
    padding: 40px;
    border: 1px dashed var(--text-color-red);
    border-radius: 4px;
    text-align: center;
    position: relative;
}

.category-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fbd9d9;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: rotate(9deg);
}

.category-item:hover {
    background: var(--background-blue);
    border: none;
}

.category-item:hover::before {
    opacity: 1;
}

.category-item:hover h3,
.category-item:hover p {
    color: var(--text-color-white);
}

.category-image {
    width: 100%;
    height: 180px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.category-image img {
    max-width: 100%;
    height: auto;
}

.category-item h3 {
    font-size: 20px;
    color: var(--text-color-black);
    margin-bottom: 20px;
    font-weight: 600;
}

.category-item p {
    font-size: 16px;
    color: var(--text-color-black);
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 45px;
    height: 45px;
    background: var(--background-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-item .btn-more i {
    color: var(--text-color-white);
    font-size: 16px;
    transition: transform 0.5s ease, color 0.4s ease;
}

.category-item:hover .btn-more {
    background: var(--main-background);
}

.category-item .btn-more:hover,
.btn-more:hover {
    background: var(--background-button) !important;
}

.category-item .btn-more:hover i {
    transform: rotate(90deg);
}

.category-item:hover .btn-more i {
    color: var(--text-color-blue);
}

.category-item .btn-more:hover,
.btn-more:hover i {
    color: var(--text-color-white) !important;
}

/* mission */
.mission {
    display: flex;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mission-left {
    flex: 1;
    position: relative;
    margin-right: 30px;
}

.main-image {
    position: relative;
}

.main-img {
    width: 100%;
    display: block;
    z-index: 1;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.icon-group1 {
    position: absolute;
    z-index: -1;
    top: -5%;
    left: 10%;
    width: 200px;
    height: auto;
}

.mission-right {
    flex: 1;
    margin-left: 50px;
}

.mission-right h2 {
    font-size: 32px;
    margin: 10px 0;
    line-height: 1.2;
}

.mission-right .highlight {
    color: #e80000;
    font-weight: bold;
}

.mission-right p {
    font-size: 16px;
    line-height: 1.5;
    margin: 15px 0;
}

.feature-list li {
    list-style-type: square;
    margin-left: 17px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* mission 2 */
.mission-containerb {
    margin: 30px 0;
}

.mission-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mission-bottom-left {
    flex: 1;
    margin-right: 40px;
}

.mission-bottom-left h2 {
    font-size: 32px;
    margin: 10px 0px;
}

.mission-bottom-left p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color-black);
}

.mission-bottom-right {
    flex: 1;
    position: relative;
}

.features-grid {
    margin-top: 40px;
}

.feature-item {
    align-items: center;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-number {
    width: 55px;
    height: 35px;
    background: var(--background-button);
    color: var(--text-color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
}

.feature-item:nth-child(1) .feature-number {
    background: #ffb800;
    max-width: 35px;
}

.feature-item:nth-child(2) {
    border: 1px dashed var(--text-color-red);
    border-radius: 4px;
    align-items: center;
    margin-left: 50px;
}

.feature-item:nth-child(3) .feature-number {
    background: var(--background-blue);
}

.feature-content h3 {
    font-size: 24px;
    color: var(--text-color-black);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.image-wrapper {
    position: relative;
}

.main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
}

.highlight {
    color: var(--text-color-red);
}

/* team container */
.team-container {
    position: relative;
    width: 100%;
    height: 700px;
    margin-bottom: 40px;
}

.banner-top-team {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-container {
    position: relative;
    width: 100%;
    height: 700px;
    margin-bottom: 40px;
}

.team-video-banner {
    position: relative;
    width: 100%;
    height: 700px;
    margin-bottom: 100px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: background 0.6s ease;
}

.icon-banner {
    display: none;
    position: absolute;
    top: 20%;
    left: 47%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: heartbeat 3s infinite;
    z-index: 3;
}

.team-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 90%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    background: var(--background-white);
    width: 80%;
    z-index: 4;
    padding: 40px 0;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.team-banner {
    position: relative;
    width: 100%;
    height: 700px;
    margin-bottom: 100px;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.15);
    }

    40% {
        transform: scale(0.95);
    }

    60% {
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.6s ease;
    z-index: 1;
}

.team-container:hover .banner-img {
    transform: translateY(-70px);
    filter: brightness(0.9);
}

.team-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 90%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    background: var(--background-white);
    width: 80%;
    z-index: 2;
    padding: 40px 0;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.team-header {
    font-size: 32px;
    margin-bottom: 50px;
}

.subtitle {
    color: var(--text-color-red);
    font-size: 24px;
    display: block;
    margin-bottom: 15px;
}
.team-header h2 {
    font-size: 32px;
    color: var(--text-color-black);
    margin-bottom: 30px;
}

.team-members-home {
    display: flex;
    justify-content: center;
    justify-content: space-between;
}

.member-card-home {
    text-align: center;
    margin: 20px 30px 0px 30px;
    position: relative;
}

.member-avatar-home {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 20px;
}

.member-avatar-home img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    position: relative;
    z-index: 2;
}

.avatar-ring-home {
    position: absolute;
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 20px solid var(--background-blue);
    border-radius: 50%;
    clip-path: inset(0 0 50% 0);
    z-index: 1;
    transition: all 0.4s ease;
}

.member-card-home:hover .avatar-ring-home {
    clip-path: inset(50% 0 0 0);
    transform: translate(-50%, -50%);
    border-color: var(--background-button);
}

.member-card-home h3 {
    font-size: 18px;
    color: var(--text-color-black);
    margin-bottom: 5px;
}

.member-card-home .position-home {
    color: var(--text-color-red);
    font-size: 14px;
}

/* review */
.rate-container {
    margin-top: 200px;
}

.review-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 18px;
    margin: 60px 0 40px 0;
    padding: 60px 0 60px 0;
    position: relative;
    gap: 40px;
}

.review-left {
    width: 25%;
    margin-right: 40px;
}

/* #review-slider.owl-carousel.owl-drag .owl-item{
    width: 300px;
} */

.review-subtitle {
    color: var(--text-color-red);
    font-size: 24px;
    font-weight: 400;
    display: block;
    margin-bottom: 18px;
}

.review-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color-black);
    margin-bottom: 18px;
    line-height: 1.2;
}

.review-desc {
    color: #444;
    font-size: 16px;
    line-height: 1.5;
}

.review-right {
    width: calc(100% - 30%);
    position: relative;
}

.review-background {
    position: absolute;
    top: -13%;
    left: 70%;
    width: 180px;
    height: 180px;
    z-index: -1;
    pointer-events: none;
}

.review-background1 {
    position: absolute;
    top: 77%;
    left: -8%;
    width: 150px;
    height: 150px;
    z-index: -1;
    pointer-events: none;
}

.review-card {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 20px 28px 20px 28px;
    background: var(--main-background);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.review-card.hide {
    opacity: 0;
    transform: translateX(60px);
    pointer-events: none;
    position: absolute;
}

.review-avatar {
    display: flex;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 18px;
    border: 5px solid #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-content {
    text-align: left;
}

.review-text {
    color: #222;
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 240px;
}

.review-stars {
    color: var(--text-color-yellow);
    font-size: 18px;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2px;
}

.review-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-color-black);
}

.review-role {
    font-size: 15px;
    color: var(--text-color-red);
    font-weight: 500;
    height: 36px;
}

.review-next:hover {
    background: var(--text-color-black);
}

/* product-hot */
.product-hot-container {
    background: var(--background-white);
}

.product-card-about {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 280px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 18px 28px 18px;
    position: relative;
    transition: box-shadow 0.2s;
    background: var(--main-background);
}

.featured-products-section {
    width: 100%;
    margin: 60px 0 0 0;
    text-align: center;
    position: relative;
    padding: 75px 0px;
}

.featured-products-header {
    margin-bottom: 18px;
}

.featured-products-subtitle {
    color: var(--text-color-red);
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.featured-products-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color-black);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.featured-products-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 20px;
    gap: 20px;
}

.product-card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    position: relative;
    transition: box-shadow 0.2s;
    background: var(--main-background);
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}
.owl-stage-outer {
    padding: 20px 0;
}

.product-card-top {
    width: 250px;
    height: 230px;
    position: relative;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-image {
    width: 100%;
    margin-bottom: 0;
    z-index: 1;
}

.product-icon {
    position: absolute;
    top: -4%;
    right: 6%;
    width: 55px;
    height: 50px;
    z-index: 2;
    padding: 5px;
}

.product-icon:hover {
    background: #ffe6e6;
    transform: rotate(12deg);
}

.product-card-content {
    width: 100%;
    text-align: left;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-end;
}

.product-info {
    margin-top: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding: 10px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color-black);
    margin-bottom: 6px;
    text-align: start;
}

.product-desc {
    font-size: 15px;
    color: var(--text-color-black);
    line-height: 1.4;
    margin-bottom: 18px;
    min-height: 60px;
    font-weight: 700;
}

.product-btn-home {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--background-blue);
    color: var(--background-blue);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    width: 120px;
}

.product-btn-home:hover {
    background: var(--background-blue);
    color: var(--text-color-white);
}

.featured-products-next-home {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--background-button);
    color: var(--text-color-white);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.featured-products-next-home:hover {
    background: var(--background-blue);
}

.featured-products-next {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--background-button);
    color: var(--text-color-white);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.featured-products-next:hover {
    background: var(--background-blue);
}

/* New section */
.new-home-container {
    width: 100%;
    margin: 40px 0;
    position: relative;
    background: var(--background-white);
    padding: 60px 0;
}

.new-home-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin: 30px 0px;
}

.news-subtitle {
    color: var(--text-color-red);
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.news-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color-black);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.news-list {
    margin: 0 auto;
}

.news-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}
.product-detail-gallery {
    margin-top: 15px;
    width: 100%;
}
/* .gallery-item.owl-carousel.owl-drag .owl-item{
    width: 110px !important;
} */
/* .product-detail-image .owl-carousel .owl-stage {
    max-width: 100% !important;
} */
.gallery-wrapper {
    position: relative;
    margin-top: 15px;
    max-width: 605px; /* Giới hạn chiều rộng tối đa */
}
.product-detail-gallery {
    margin-top: 15px;
    width: 100%;
    max-width: 605px; /* Giới hạn chiều rộng tối đa */
}

.gallery-item {
    width: 110px !important; /* Force width cho item */
    margin: 0 5px;
}

.gallery-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.product-detail-description table {
    width: 100% !important;
}
.news-detail-content table {
    width: 100% !important;
}

.news-card-title a {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-color-black);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 75px;
}
.image_absolute {
    display: none;
}

.news-desc {
    font-size: 15px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.5;
    height: 90px;
    font-weight: 500;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.meta-news {
    display: flex;
    flex-direction: column;
}

.news-category {
    font-weight: 400;
    font-size: 11px;
    color: #cccccc;
}

.news-date {
    color: #cccccc;
    font-size: 11px;
}

.news-btn {
    display: inline-block;
    background: var(--background-blue);
    color: var(--text-color-white);
    padding: 10px 0;
    width: 50%;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    margin-top: 10px;
}

.news-btn:hover {
    background: var(--background-button);
}

.news-next {
    position: absolute;
    right: 40px;
    top: 105%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--background-button);
    color: var(--text-color-white);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.2s;
}

.news-next:hover {
    background: var(--background-blue);
}

/* FAQ Section */
.faq-container {
    padding: 70px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.faq-section {
    width: 100%;
    margin: 0 auto;
}

.faq-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.faq-left {
    position: relative;
    flex: 1;
}

.faq-subtitle {
    font-size: 16px;
    color: var(--text-color-black);
    margin-bottom: 40px;
    line-height: 1.5;
}

.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.faq-answer {
    padding-top: 15px;
    display: block;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.view-all-faq {
    position: absolute;
    bottom: -5px;
    right: 0;
    display: inline-block;
    color: #ff7373;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}

.view-all-faq:hover {
    text-decoration: underline;
}

.faq-right {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
}

.required {
    color: #ff7373;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #184f86;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Partner Section */
.partner-container {
    background-color: var(--background-white);
    padding: 60px 0;
    width: 100%;
}

.partner-section {
    margin: 0 auto;
    text-align: center;
}

.partner-header {
    margin-bottom: 40px;
}

.partner-subtitle {
    color: var(--text-color-red);
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.partner-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color-black);
    margin: 0;
}

/* about */
.banner {
    position: relative;
    overflow: hidden;
}

.banner-img-wrapper {
    width: 100%;
    height: 600px;
}

.banner-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-image-wrapper-advise {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-top: 70px;
}

.banner-img:hover {
    transform: translateY(-50px);
}

.banner_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 650px;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    color: var(--text-color-white);
    z-index: 2;
}

.banner_txt_advise {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    color: var(--text-color-white);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.txt_advise {
    font-size: 20px;
    width: 100%;
    padding: 20px 40px;
    text-align: center;
}

.banner_txt_advise span {
    text-transform: initial;
    line-height: 1.5;
}

.banner_txt h3 {
    font-size: 45px;
    text-transform: initial;
    color: var(--text-color-white);
}

/* about */
.about-container {
    margin: 50px 0;
}

.about {
    display: flex;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-left {
    flex: 1;
    position: relative;
    margin-right: 30px;
}

.main-image {
    position: relative;
}

.main-img {
    width: 100%;
    display: block;
    z-index: 1;
}
.image_absolute {
    position: absolute;
    top: 25%;
    left: 87%;
}
.image_relative {
    position: relative;
    width: 108px;
    height: 116px;
}
/* .icon-music {
    position: relative;
    top: 25%;
    left: 87%;
    width: auto;
    height: auto;
} */

.icon-group2 {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: block;

    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.icon-group {
    position: absolute;
    z-index: -1;
    top: 40%;
    left: 50%;
    width: auto;
    height: auto;
}

.about-group1 {
    position: absolute;
    z-index: -1;
    top: -5%;
    left: 10%;
    width: 200px;
    height: auto;
}

.about-right {
    flex: 1;
    margin-left: 20px;
}

.about-right h2 {
    font-size: 32px;
    margin: 10px 0;
    line-height: 1.2;
}

.about-right .highlight {
    color: #e80000;
    font-weight: bold;
}

.about-right p {
    font-size: 16px;
    line-height: 1.5;
    margin: 15px 0;
}

.feature-list li {
    list-style-type: square;
    margin-left: 17px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-contact {
    background-color: var(--background-button);
    color: var(--text-color-white);
    border: none;
    padding: 12px 34px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: var(--background-blue);
}

/* company stats */
.company-stat {
    padding: 40px 0;
    margin: 40px 0;
}

.stat-wrapper {
    background-color: var(--background-blue);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    flex: 1;
    padding: 40px;
    color: var(--text-color-white);
}

.stat-number {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 20px;
    font-weight: 700;
}

/* commit */
.commit {
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.commit-container {
    position: relative;
    z-index: 1;
}

.commit-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.commit-subtitle {
    color: var(--text-color-red);
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.commit-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color-black);
}

.commit-description {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-item {
    flex: 1;
    overflow: hidden;
    padding: 0;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content {
    margin-top: 20px;
    border: 1px dashed var(--text-color-red);
    padding: 30px 25px;
    height: 250px;
}

.service-content-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.service-number {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 24px;
    font-weight: 700;
}

.service-item:nth-child(3n + 1) .service-number {
    background-color: var(--text-color-yellow);
    color: var(--text-color-white);
}

.service-item:nth-child(3n + 2) .service-number {
    background-color: var(--background-button);
    color: var(--text-color-white);
}

.service-item:nth-child(3n + 3) .service-number {
    background-color: var(--background-blue);
    color: var(--text-color-white);
}

.service-content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.service-content ul {
    padding: 0;
    margin: 0;
}

.service-content ul li {
    position: relative;
    margin-left: 15px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.commit::after {
    content: "";
    position: absolute;
    top: 40%;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(
        var(--text-color-blue) 2px,
        transparent 2px
    );
    background-size: 15px 15px;
    z-index: 0;
    opacity: 0.2;
}

/* team */
.team-container-bg {
    background: var(--background-white);
    padding: 50px 0px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-subtitle {
    color: var(--text-color-red);
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.team-members {
    display: flex;
    gap: 30px;
}

.member-card {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.member-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

/* .member-social {
    position: absolute;
    bottom: 60px;
    left: 110px;
    opacity: 1;
    transition: all 0.3s ease;
    display: inline-block;
} */
.member-social {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: 10;
}

.share-icon {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-links {
    display: none;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 15px;
    padding: 15px 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 15;
}

.social-links.show {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a img {
    width: 32px;
    height: 32px;
}

.member-card {
    position: relative;
    overflow: hidden;
}

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-card:hover .share-icon {
    transform: scale(1.1);
}

.member-info {
    padding: 10px 0;
}

.member-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color-black);
    margin-bottom: 5px;
}

.member-position {
    color: var(--text-color-red);
    font-size: 14px;
    margin: 0;
}

/* product */

.products-section {
    width: 100%;
    margin: 60px 0 0 0;
    text-align: center;
    position: relative;
}

.products-header {
    margin-bottom: 18px;
}

.products-subtitle {
    color: var(--text-color-red);
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.products-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color-black);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

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

.pro-card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    position: relative;
    transition: box-shadow 0.2s;
    background: var(--main-background);
}

.pro-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.product-card-top {
    width: 250px;
    height: 230px;
    position: relative;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-image {
    width: 100%;
    margin-bottom: 0;
    z-index: 1;
}

.title-banner-pro {
    font-size: 20px;
}

.partner-logo {
    width: 100%;
}

.partner-image {
    width: 100%;
}

.product-card-content {
    width: 100%;
    text-align: left;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-end;
}

/* faq product */
.faq-product-container {
    padding: 70px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.faq-product-right {
    position: relative;
    flex: 1;
    margin-left: 50px;
}

.main-image-faq {
    position: relative;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color-black);
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 16px;
    color: var(--text-color-black);
    margin-bottom: 40px;
    line-height: 1.5;
}

.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color-black);
    margin: 0;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #ff7373;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s;
}

.faq-answer {
    padding-top: 15px;
    display: block;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.view-all-faq {
    position: absolute;
    bottom: -5px;
    right: 0;
    display: inline-block;
    color: #ff7373;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}

.view-all-faq:hover {
    text-decoration: underline;
}

.faq-product-left {
    flex: 1;
    position: relative;
}

.main-image-faq {
    width: 400px;
}

.main-img-faq {
    width: 100%;
    display: block;
    z-index: 1;
}

/* product detail */

.product-conn {
    background: var(--background-product-detail);
    padding: 1px;
}

.product-detail {
    display: flex;
    margin-top: 30px;
    gap: 40px;
}

.product-detail-left {
    flex: 1;
}

.product-detail-left img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-detail-right {
    flex: 1;
}

.product-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color-black);
    margin-bottom: 20px;
}

.sku {
    color: var(--text-color-red);
}

.product-detail-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-left: 20px;
}

.des-product-detail {
    margin-top: 40px;
}

.des-product-detail-title h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 12px;
}

.des-product-detail-content {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    width: 100%;
    margin: 0 auto;
}

.des-product-detail-content p {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.des-product-detail-content p img {
    width: 100% !important;
    height: 100% !important;
}

.des-product-detail-content ul,
.des-product-detail-content ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.des-product-detail-content li {
    margin-bottom: 8px;
}

.contact-product {
    background: var(--background-product-detail);
}

/* news */
.news-section {
    padding: 60px 0;
}

.news-main-title {
    color: var(--text-color-red);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-main-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color-black);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.news-container {
    margin: 40px 0;
}

.news-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.news-box {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    margin-bottom: 30px;
}

.news-card-item {
    display: flex;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.news-card-item:hover {
    transform: translateY(-5px);
}

.news-card-image:hover .news-read-more {
    opacity: 1;
    transform: translateY(0);
}

.news-card-image {
    flex: 0 0 50%;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-content {
    flex: 0 0 50%;
    padding: 25px 30px;
    position: relative;
}

.news-card-category {
    color: var(--text-color-red);
    font-size: 14px;
    margin-bottom: 10px;
}

.news-card-desc {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #444;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #eee;
}

.news-date,
.news-author {
    color: #999;
    font-size: 14px;
}

.news-read-more {
    display: inline-block;
    background: var(--background-blue);
    color: var(--text-color-white);
    padding: 15px 35px;
    text-decoration: none;
    position: absolute;
    bottom: 40%;
    left: 35%;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    z-index: 10;
}

.news-read-more:hover {
    background: var(--background-button);
}

/* Tin tức nổi bật */
.hot-news-section {
    margin-top: 60px;
    padding: 40px 0;
    background: var(--background-white);
}

.hot-news-heading {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-red);
    text-align: start;
    margin-bottom: 10px;
}

.hot-news-subheading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color-black);
    text-align: start;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hot-news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.hot-news-image:hover .news-read-more-hot {
    opacity: 1;
    transform: translateY(0);
}

.hot-news-card {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hot-news-card:hover {
    transform: translateY(-5px);
}

.hot-news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-read-more-hot {
    display: inline-block;
    background: var(--background-blue);
    color: var(--text-color-white);
    padding: 15px 35px;
    text-decoration: none;
    position: absolute;
    bottom: 40%;
    left: 35%;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    z-index: 10;
}

.news-read-more-hot:hover {
    background: var(--background-button);
}

.hot-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hot-news-content {
    padding: 20px;
}

.hot-news-title a {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-decoration: none;
}

.hot-news-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hot-news-views i,
.hot-news-comments i {
    color: var(--text-color-red);
    margin-right: 5px;
}

/* news-detail */
.news-detail-container {
    display: flex;
    gap: 30px;
    padding: 40px 0;
}

.news-detail-main {
    flex: 0 0 80%;
    max-width: 80%;
}

.news-detail-sidebar {
    flex: 0 0 20%;
    max-width: 20%;
}

.news-detail-header {
    margin-bottom: 25px;
}

.news-detail-category {
    color: var(--text-color-red);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.news-detail-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.news-detail-featured-image {
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
}

.news-detail-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.news-detail-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.news-detail-meta span {
    font-weight: 500;
    color: #333;
}

.sidebar-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-link {
    display: block;
    padding: 12px 15px;
    background-color: #1a6ead;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.sidebar-link:hover {
    background-color: var(--background-button);
}

/* contact */
.container-location-top {
    display: flex;
}

.location-section {
    padding: 50px 0;
    background-color: #fff;
}

.location-header {
    margin-bottom: 40px;
    flex: 40%;
}

.location-subtitle {
    color: var(--text-color-red);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.location-title {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--text-color-black);
    line-height: 1.3;
}

.contact-info-container {
    display: flex;
}

.contact-info-item {
    display: flex;
    width: 100%;
    max-width: 32%;
    align-items: flex-start;
    padding: 10px;
    height: 100px;
}

.contact-info-item:not(:last-child) {
    border-right: 1px dashed red;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-info-icon i {
    color: var(--text-color-red);
    font-size: 24px;
}

.contact-info-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color-black);
    margin-bottom: 10px;
}

.contact-info-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.map-container-r {
    margin-top: 30px;
    width: 100%;
    height: 450px;
}

.map-wrapper-r {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.contact-info-icon i {
    transition: transform 0.3s ease;
}

/* search */
.search-results-section {
    padding: 60px 0;
}

.search-header {
    margin-bottom: 30px;
}

.search-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.search-header .keyword {
    color: var(--text-color-red);
}

.search-count {
    color: #666;
}

.search-form-container {
    margin-bottom: 40px;
}

.search-page-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-page-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.btn-search-page {
    padding: 12px 20px;
    background-color: var(--background-blue);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-search-page:hover {
    background-color: var(--background-button);
}

.search-products,
.search-news {
    margin-bottom: 50px;
}

.search-products h3,
.search-news h3 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

.product-item,
.news-item {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover,
.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image img,
.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info h4,
.news-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-info h4 a,
.news-info h4 a {
    color: var(--text-color-black);
    text-decoration: none;
}

.product-info h4 a:hover,
.news-info h4 a:hover {
    color: var(--text-color-red);
}

.news-item .news-info {
    padding: 10px;
}
.news-date {
    display: block;
    font-size: 14px;
    color: var(--text-color-red);
    margin-bottom: 8px;
}

.search-empty {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.search-empty p {
    margin-bottom: 10px;
    font-size: 18px;
    color: #666;
}

.language {
    position: relative !important;
    z-index: 9999 !important;
}

.language-name {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--text-color-white);
}

.language-global {
    display: flex;

    align-items: center;
}

.language .icon {
    position: relative;
    top: -1px;
}

/* Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-color-black);
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.mobile-search {
    width: 200px;
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.mobile-search form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    border: var(--text-color-red) dashed 1px;
    border-radius: 20px;
}

.mobile-search input {
    width: 100px;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
    border: none;
}

.mobile-search button {
    background: var(--background-button);
    border: none;
    outline: none;
    padding: 8px 8px;
    border-radius: 30px;
    cursor: pointer;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--text-color-white);
}

.mobile-search.active button {
    background: var(--main-background);
}

.mobile-search.active button i {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(7465%)
        hue-rotate(0deg) brightness(91%) contrast(122%);
    color: var(--text-color-red);
}

.mobile-search input::placeholder {
    color: var(--text-color-red);
    font-weight: 500;
    font-size: 16px;
}

.mobile-header .mobile-search {
    flex: 1;
    padding: 0 10px;
    max-width: 170px;
    margin-right: 10px;
}

.mobile-header .mobile-search form {
    justify-content: flex-end;
}

.mobile-menu .mobile-search {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ebebeb;
}

.mobile-menu .mobile-search form {
    justify-content: space-between;
}

.mobile-menu .mobile-search input {
    width: 100%;
    opacity: 1;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.mobile-menu .mobile-search button {
    position: absolute;
    right: 5px;
}

.mobile-nav {
    padding: 15px 0;
    flex: 1;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--text-color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #ebebeb;
}

.mobile-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--text-color-black);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-social-link:hover {
    background-color: var(--background-blue);
    color: #fff;
}

.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-logo {
    max-width: 140px;
    display: flex;
    align-items: center;
}
.mobile-header-logo .logo_name {
    font-size: 14px;
}

.mobile-header-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-header-actions {
    display: flex;
}

.mobile-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Language Section */
.mobile-language-section {
    border-top: 1px solid #ebebeb;
    padding: 20px 15px;
    margin-top: auto;
    background-color: #f8f9fa;
}

.mobile-language-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-black);
}

.mobile-language-title i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--text-color-blue);
    font-size: 16px;
}

.mobile-language-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-lang-btn .flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.mobile-lang-btn span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* google translate */
#google_language_translator {
    display: none;
}

#goog-gt-tt,
.goog-te-balloon-frame,
#goog-gt-feedback,
#goog-gt-voting .google-te-banner-frame {
    display: none !important;
}

.language a {
    color: var(--text-color-white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    display: inline-block !important;
}

.language a:hover {
    color: var(--text-color-red);
}

.notranslate {
    translate: no;
}

/* #google_language_translator .goog-te-gadget .goog-te-combo {
	height: 27px;
	outline: none;
	width: 155px;
	border-radius: 50px;
	background-color: #fff;
	border-color: rgba(0, 0, 0, 0.4);
	text-indent: 15px;
	color: #000;
	font-size: 16px;
	margin: 0px;
} */
.goog-logo-link {
    display: none !important;
    font-size: 0px !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    display: none;
}

.goog-te-gadget img {
    display: none !important;
}

body > .skiptranslate {
    display: none;
}

body {
    top: 0px !important;
}

#review-slider .owl-carousel.owl-drag .owl-item {
    width: 70%;
}
.faq-page {
    background-color: #f8f9fa;
}

.faq-containe-detail {
    padding: 60px 0;
    min-height: 60vh;
}

.faq-main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}

.faq-main-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    margin: 15px auto 0;
    border-radius: 2px;
}

.faq-content-detail {
    margin-bottom: 15px;
}

.faq-item-detail {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.faq-item-detail:hover {
    background-color: #f9f9f9;
}
.faq-question-detail i {
    color: #007bff;
    font-size: 1.2rem;
    margin-right: 10px;
}

.faq-question-detail.active i {
    color: #0056b3;
}
.faq-question-detail {
    padding: 25px 30px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-detail:hover {
    background-color: #f8f9ff;
}

.faq-question-detail::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
    position: absolute;
    right: 0;
    top: 29%;
    padding-right: 10px;
}

.faq-question-detail.active::after {
    transform: rotate(45deg);
}

.faq-answer-detail {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #fff;
}

.faq-answer-detail.show {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer-detail p {
    margin: 0;
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

.no-faqs {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.no-faqs p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer-content {
    line-height: 1.7;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-question-detail {
        padding: 20px;
        font-size: 1.1rem;
    }
    .faq-question-detail i {
        margin-right: 6px;
        font-size: 1.1rem;
    }
    .faq-answer-detail.show {
        padding: 20px;
    }

    .faq-containe-detail {
        padding: 40px 0;
    }
    .faq-question-detail::after {
        margin-left: 10px;
        padding-right: 5px;
    }
}

@media (max-width: 480px) {
    .faq-main-title {
        font-size: 1.8rem;
    }

    .faq-question-detail {
        padding: 15px;
        font-size: 1rem;
    }

    .faq-answer-detail.show {
        padding: 15px;
    }
}

/* Review Video */
.review-video {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.review-video img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-video:hover .play-button {
    background-color: var(--background-button);
    transform: translate(-50%, -50%) scale(1.1);
}
