:root {
    --bg-header-top: #ff6600;
    --bg-footer: #f0f0f0;
    --bg-copyright: #ebebeb;
    --bg-body: #f7f7f7;
    --bg-white: #ffffff;
    --bg-menu: #ffffff;
    --color-red: #e60023;
    --color-red-primary: #c1121f;
    --color-body: #343a40;
    --color-black: #000000;
    --color-white: #fff;
    --color-fa: #fafafa;
    --color-primary: #757575;
    --color-gray: #434343;
    --color-orange: #f25c05;
    --color-orange-opacity: #e94134;
    --color-red-price: #e94134;
}

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

button:disabled {
    cursor: no-drop;
    opacity: 0.7;
    pointer-events: none;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    background-color: var(--bg-body);
    color: var(--color-body);
    font-size: 1rem;
    top: 0 !important;
}

@font-face {
    font-family: "Allison";
    src: url("../font/Allison-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

/** 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;
}

/** Maintenance **/
.maintenance {
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px 0px;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

/** Header **/
.header {
    position: relative;
    background: transparent;
}

.header .container {
    background: transparent;
}

.header-top {
    padding: 20px 0;
    background: var(--bg-header-top);
    font-size: 15px;
}

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

.flex-header-top-right {
    display: flex;
    justify-content: start;
    flex: 1;
    gap: 36px;
}

.flex-header-top-right a {
    line-height: 1;
    display: inline-block;
}

.flex-header-top-right img {
    transition: all 0.3s;
}

.flex-header-top-right a:hover img {
    opacity: 0.7;
}

.flex-header-top-left {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 260px;
}

.header-top-info {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
}

.header-menu .level-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu .level-1 li a {
    font-family: "Roboto";
    font-size: 15px;
    font-weight: 450;
    text-decoration: none;
    color: var(--bg-white);
    transition: all 0.3s;
}

.header-menu .level-1 li a:hover {
    opacity: 0.7;
}

.header-account-infomation ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: auto;
    position: relative;
    bottom: -6px;
}

.header-account-infomation ul li a {
    color: var(--bg-white);
    text-decoration: none;
}

.header-search-menu {
    flex: 1;
    gap: 13px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header-account-infomation {
    max-width: 360px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.header-account-infomation .language img {
    max-width: 29px;
}

.header-account-infomation .mana a {
    position: relative;
}

.header-account-infomation .mana .mana-text {
    position: absolute;
    bottom: -6px;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto";
    font-weight: 700;
    color: var(--bg-white);
    font-size: 10px;
}

.header-account-infomation .mana .mana-text .mana-text-first {
    color: #1dec0a;
}

.header-search-form {
    width: 100%;
    background: #f5f5f5;
    display: flex;
    justify-content: start;
    align-items: center;
    border: 1px solid transparent;
}

.header-search-form .keyword {
    height: 40px;
    box-sizing: border-box;
    border: none;
    background-color: transparent;
    border-radius: 0px;
    padding-left: 15px;
    flex: 1;
}

.header-search-form .keyword:focus {
    outline: none;
    box-shadow: none;
}

.header-search-form .btn-search {
    width: 50px;
    display: block;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 0px;
    padding: 0;
    margin: 0;
}

.logo-text {
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo-text h2 {
    letter-spacing: 2px;
}

.logo-text p {
    margin: 0;
    font-family: "Roboto";
    font-size: 15px;
    font-weight: 500;
}

/* menu */
.mobile-menu,
.mobile-header,
.mobile-menu-overlay {
    display: none;
}

.menu {
    background-color: var(--bg-menu);
    position: relative;
    z-index: 2;
}

.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

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

/** Profile menu **/
.menu__icon--user {
    position: relative;
    cursor: pointer;
    background-color: #f5f5f5;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    justify-content: center;
    align-items: center;
}

.menu__icon--user .avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.dropdown-user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    display: none;
    z-index: 9999;
}

.dropdown-user-menu li {
    list-style: none;
}

.dropdown-user-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 15px;
    font-weight: normal;
}

.dropdown-user-menu li a:hover {
    background-color: #f2f2f2;
}

.menu__icon--user:hover .dropdown-user-menu {
    display: block;
}

/** Footer **/
.footer {
    background-color: var(--bg-footer);
    padding-top: 40px;
}

.footer-main {
    padding-bottom: 30px;
    max-width: 1440px;
    margin: 0 auto;
}

.flex-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-company {
    flex: 2;
}

.company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-direction: column;
}

.footer-company h4 {
    display: flex;
    color: var(--color-black);
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    line-height: 1.5;
}

.footer-company .company-desc {
    display: flex;
    justify-content: center;
    font-size: 15px;
    font-weight: 300;
    margin: 5px 0;
    line-height: 1.5;
}

.company-info {
    margin: 20px 0;
}

.footer-address {
    display: flex;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    margin: 8px 0;
}

.footer-phone {
    display: flex;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    margin: 8px 0;
    text-align: center;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 1px;
    background-color: var(--color-orange);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 5px;
    max-width: 70%;
}

.pay-row-image{
    overflow: hidden;
}

.payment-row img {
    width: 100%;
    height: 100%;
}

.certifications {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.line-footer {
    border-top: 1px solid var(--color-orange);
    margin: 20px auto;
    max-width: 900px;
}

.social-links {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 50%;
    align-items: center;
    padding: 20px 0;
}

.social-link {
    width: 40px;
    height: 40px;
    max-width: 460px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background-color: #1877f2;
    color: white;
}

.social-link.tiktok {
    background-color: #000;
    color: white;
}

.social-link.messenger {
    background-color: #0084ff;
    color: white;
}

.copyright {
    background-color: #333;
    color: var(--color-black);
    padding: 15px 0;
    text-align: center;
}

.flex-copyright {
    font-size: 14px;
}

.flex-copyright span {
    font-weight: bold;
}

/* Popup */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-container {
    position: relative;
    transform: scale(0.8);
    animation: popupScale 0.3s ease-out forwards;
}

.popup-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.popup-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes popupScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Banner */
.banner {
    position: relative;
}

.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-carousel img {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* Slide home */
.slideshow {
    background: var(--bg-white);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.banner-grid {
    display: grid;
    grid-template-areas:
        "main main sub1"
        "main main sub2";
    grid-template-columns: 1fr 1fr 390px;
    grid-template-rows: auto auto;
    gap: 20px;
}

.main-banner {
    grid-area: main;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sub-banner-1,
.sub-banner-2 {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-item {
    position: relative;
}

.slider-item a {
    display: block;
    line-height: 0;
}

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

.sub-banner-item {
    opacity: 1;
    transform: none;
    transition: none;
}

.sub-banner-item a {
    display: block;
    line-height: 0;
}

.sub-banner-carousel .owl-item {
    opacity: 0;
    /* transform: translateY(50px); */
    transition: none;
}

.sub-banner-carousel .owl-item.active {
    opacity: 1;
    /* transform: translateY(0); */
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sub-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sub-banner-item:hover img {
    transform: scale(1.05);
}

.sub-banner-carousel .sub-banner-item.animate-in {
    opacity: 1;
    transform: none;
}

/* Slider navigation */
.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);
}

/* Responsive styles */

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

.product-menu li {
    line-height: 1.2;
    margin-left: 20px;
}

.product-menu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.product-menu li a:hover {
    background: #f8f8f8;
    color: #c72323;
}

.banner1 {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.news-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.news-video {
    flex: 1;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.news-list {
    width: 400px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
}

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

.news-header h3 {
    color: #c72323;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.view-all {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.view-all i {
    margin-left: 5px;
    font-size: 12px;
}

.news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

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

.news-image {
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

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

.news-content {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.news-category {
    color: #c72323;
    font-size: 13px;
}

.news-date {
    color: #666;
    font-size: 13px;
}

.news-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 999;
}

.floating-contact a {
    width: 45px;
    height: 45px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 20px;
}

.scroll-circle {
    position: fixed;
    right: 20px;
    bottom: 140px;
    width: 50px;
    height: 50px;
    z-index: 999;
    cursor: pointer;
}

.scroll-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-circle .bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 5;
}

.scroll-circle .progress {
    fill: none;
    stroke: #007bff;
    stroke-width: 5;
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.2s linear;
}

.scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #007bff;
    font-size: 16px;
    pointer-events: none;
}

.contact-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 0px;
    background: #fff;
}

.contact-btn {
    background: #ffd700;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/** Pagination **/
.pagination-box {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 20px 0;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 102, 0, 0.5);
    border: none;
    background: transparent;
    opacity: 0.5;
}

.pagination a:hover:not(.active):not(.disabled) {
    transform: scale(1.1);
    opacity: 0.8;
}

.pagination .page-number.active {
    color: #ff5100;
    font-weight: bold;
    opacity: 1;
}

.pagination a.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination .prev-page,
.pagination .next-page {
    font-size: 22px;
    color: rgba(255, 102, 0, 0.5);
    opacity: 0.5;
    transition: all 0.3s;
}

.pagination .prev-page:hover:not(.disabled),
.pagination .next-page:hover:not(.disabled) {
    opacity: 0.8;
    transform: scale(1.1);
}

.pagination a.active {
    color: #fff;
    border-color: var(--color-orange);
}

.pagination a:hover:not(.active) {
    background-color: var(--bg-footer);
}

.pagination .prev-page,
.pagination .next-page {
    font-size: 16px;
}

/** Button loading **/
.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading span {
    display: none;
}

.btn-loading.is-loading span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinLoading 0.75s linear infinite;
}

@keyframes spinLoading {
    100% {
        transform: rotate(360deg);
    }
}

/** Notify **/
.notyf {
    padding: 15px;
    z-index: 9999999999 !important;
}

.notyf__message {
    white-space: nowrap;
}

.notyf__toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 20px 12px;
    font-size: 14px;
    font-weight: 500;
    max-width: 100%;
}

.notyf__ripple {
    opacity: 0.12;
}

.notyf__wrapper {
    padding: 4px 8px;
}

.notyf__dismiss-btn {
    background: transparent;
    opacity: 1;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

.notyf__dismiss {
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

/* Product Sale */
.product-sale {
    padding: 30px 0;
    position: relative;
}

.product-sale-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.product-sale-title h2 {
    color: var(--color-orange);
    font-size: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin: 0;
}

.product-sale-title h2 img {
    margin: 0 2px;
}

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

.product-item-sale {
    position: relative;
    background: var(--bg-white);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 40px 0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.product-flash-sale-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
}

.product-image-sale {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.product-image-sale img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

.product-info-sale {
    margin-top: auto;
    padding: 0;
    width: 100%;
}

.product-price-sale {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.product-price-tmd {
    text-align: center;
    margin-bottom: 10px;
}

.product-price-tmd a {
    font-family: "Josefin Sans";
    font-size: 20px;
    font-weight: 600;
    color: var(--color-red-price);
    text-decoration: none;
}

.product-price-tmd span {
    font-family: "Josefin Sans";
    font-size: 20px;
    font-weight: 400;
    color: var(--color-red-price);
    text-decoration: underline;
    margin-left: 3px;
}

.hot-selling-badge {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-fa);
    position: relative;
    width: 175px;
}

.hot-selling-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-selling-icon img {
    position: absolute;
    left: -10px;
    top: -10px;
}

.hot-selling-text {
    font-weight: lighter;
    background: linear-gradient(to right, #ff0000 75%, #ffb199 75%);
    border-radius: 20px;
    padding: 3px 25px;
    flex: 1;
    text-align: center;
}

/** Partner **/

.partner {
    padding-top: 60px;
    padding-bottom: 30px;
    position: relative;
}

.partner-wrapper {
    background: var(--bg-body);
}

.heading-title-partner {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.heading-title-partner h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--color-orange);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heading-title-partner h2::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-orange);
    margin: 0 auto;
    width: 60px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
}

.partner-item {
    background-color: var(--bg-white);
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.partner-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    z-index: 1;
}

.partner-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.partner-item img {
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.05);
}

/* List categories */
.list-category {
    padding: 30px 0;
}

.list-category-wrapper {
    position: relative;
    padding: 20px 0 0 0;
    background: var(--bg-white);
}

.list-category-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    padding: 0 20px;
}

.list-category-title h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    margin: 0;
}

.list-category-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.list-category-item {
    border-right: 1px solid var(--color-primary);
    border-top: 1px solid var(--color-primary);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.list-category-grid .list-category-item:nth-child(7n) {
    border-right: none;
}

.list-category-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 102, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 1;
}

.list-category-item:hover::before {
    height: 100%;
}

.list-category-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.category-image {
    border-radius: 50%;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
}

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

.list-category-item:hover .category-image {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
}

.list-category-item:hover .category-image img {
    transform: scale(1.1);
}

.list-category-item h3 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.list-category-item:hover h3 {
    color: var(--color-orange);
}

@keyframes categoryPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }

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

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

.list-category-item:hover .category-image img {
    animation: categoryPulse 1.5s infinite;
}

/* Product News */
.product-sale-wrapper {
    background: var(--bg-white);
    padding: 20px;
}

.product-new {
    padding: 40px 0px;
}

.product-home-wrapper {
    background: var(--bg-white);
    padding: 20px;
}

.product-new-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    cursor: pointer;
}

.product-new {
    position: relative;
}

.product-new-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.product-new-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background-color: var(--color-primary);
}

.product-new-title h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    margin: 0;
}

.product-item-new {
    border: 1px solid var(--bg-body);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.product-item-new:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Product Best Seller */
.product-best-seller {
    padding: 40px 0px;
}

.product-best-seller-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    cursor: pointer;
}

.product-best-seller {
    position: relative;
}

.product-best-seller-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.product-best-seller-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background-color: var(--color-primary);
}

.product-best-seller-title h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    margin: 0;
}

.product-item-best-seller {
    border: 1px solid var(--bg-body);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.product-item-best-seller:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/** Product Hot **/
.product-hot {
    padding: 40px 0px;
}

.product-hot-grid {
    position: relative;
}

.product-hot {
    position: relative;
}

.product-hot-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.product-hot-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background-color: var(--color-primary);
}

.product-hot-title h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    margin: 0;
}

.view-more {
    position: relative;
    display: inline-block;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-more::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-orange-opacity);
    transition: width 0.3s ease;
}

.view-more:hover {
    color: var(--color-orange-opacity);
}

.view-more:hover::after {
    width: 100%;
}

.product-hot-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    cursor: pointer;
}

.product-item-hot {
    border: 1px solid var(--bg-body);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.product-item-hot:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    width: 32px;
    height: 32px;
}

.product-heart img {
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.product-heart img.hover-img {
    opacity: 0;
}

.product-heart:hover img.default-img,
.product-heart.favorite img.default-img {
    opacity: 0;
}

.product-heart:hover img.hover-img,
.product-heart.favorite img.hover-img {
    opacity: 1;
}

.product-image img {
    width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 14px;
}

.product-name a {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.4;
    text-decoration: none;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.4em);
    max-height: calc(2 * 1.4em);
    transition: all 0.3s;
}

.product-name a:hover {
    color: var(--color-orange);
}

.product-badge {
    color: var(--color-orange);
    padding: 4px 8px;
    border-radius: 5px;
    border: 1px solid var(--color-orange);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
    align-self: flex-start;
}

.product-badge:hover {
    color: var(--color-fa);
    background-color: var(--color-orange);
}

.product-price {
    padding: 9px 0 18px 0;
}

.price-current {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-red-price);
}

.price-old {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary);
    text-decoration: line-through;
    margin-left: 15px;
}

.view-detail {
    padding: 6px 34px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    font-weight: normal;
    transition: color 0.3s ease;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.view-detail:hover {
    color: var(--color-fa);
    box-shadow: none;
    background-color: var(--color-orange);
}

/** Market combo **/
.market-combo {
    padding: 60px 0;
    background: var(--bg-white);
    margin-top: 20px;
}

.market-combo-heading {
    text-align: center;
    margin-bottom: 40px;
}

.market-combo-heading h2 {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    padding-bottom: 15px;
}

.market-combo-heading h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 5px;
    background-color: var(--color-orange);
}

.combo-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
    margin: 0 auto;
}

.combo-banner a{
    display: block;
    line-height: 0;
}

.combo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.combo-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.combo-product-item {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo-product-item:hover {
    transform: translateY(-5px);
}

.combo-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.combo-product-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.combo-product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.combo-product-info-title {
    padding-right: 20px;
}

.combo-product-info-title h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.4;
}

.combo-product-info-title desc {
    font-size: 13px;
    color: var(--color-black);
    line-height: 1.5;
    font-weight: 300;
}

.combo-product-info-desc {
    position: relative;
    display: block;
}

.combo-product-price {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}

.combo-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-red-price);
}

.combo-badge {
    color: var(--color-orange);
    padding: 4px 8px;
    border-radius: 5px;
    border: 1px solid var(--color-orange);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    position: absolute;
    right: 0;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
}

.combo-product-actions {
    display: flex;
    justify-content: center;
}

.combo-view-detail {
    padding: 6px 34px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.combo-view-detail:hover {
    color: var(--color-fa);
    background-color: var(--color-orange);
    text-decoration: underline;
}

/** Procedure affiliate **/
.affiliate-container {
    background: var(--bg-white);
    padding: 40px;
}

.procedure-affiliate-index {
    padding-top: 60px;
    padding-bottom: 40px;
}

.procedure-affiliate-heading {
    text-align: center;
    margin-bottom: 50px;
}

.procedure-affiliate-heading h2 {
    font-size: 25px;
    font-weight: bold;
    color: var(--color-orange);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.procedure-affiliate-heading::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background-color: var(--color-orange);
    margin: 0 auto;
}

.procedure-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 850px;
    margin: 40px auto;
}

.procedure-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.step-icon {
    position: relative;
    flex-shrink: 0;
}

.step-icon .icon-circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-icon .icon-circle img {
    object-fit: cover;
    border-radius: 50%;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--color-orange);
    color: var(--color-fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.step-content {
    flex: 1;
    max-width: 235px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-black);
    margin-bottom: 10px;
    line-height: 1.5;
    position: relative;
}

.step-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 215px;
    height: 1px;
    opacity: 0.4;
    background-color: var(--color-orange-opacity);
}

.step-content .desc {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/** News Index **/
.news-wrapper {
    background: var(--bg-white);
    padding: 20px;
}

.news-index {
    padding-top: 40px;
    padding-bottom: 80px;
}

.heading-title-news {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.heading-title-news h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    position: relative;
    padding-bottom: 15px;
}

.heading-title-news h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 2px;
    background-color: var(--color-orange);
}

.news-view-all {
    position: relative;
    display: inline-block;
    color: var(--color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-view-all::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-orange-opacity);
    transition: width 0.3s ease;
}

.news-view-all:hover {
    color: var(--color-orange-opacity);
}

.news-view-all:hover::after {
    width: 100%;
}

.news-item-index {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.news-item-index:hover {
    transform: translateY(-4px);
}

.news-item-index .thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.news-item-index .info {
    padding: 16px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-item-index h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-item-index h3:hover {
    color: var(--color-orange);
}

.news-item-index h3 a {
    color: var(--text-color-black);
    text-decoration: none;
}

.news-item-index p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: auto;
}

/* Marketing Page */

/* Member Section */
.member-section {
    padding-bottom: 60px;
}

.member-section .container {
    background: var(--bg-body);
}

.member-section-header {
    text-align: center;
    margin-bottom: 40px;
    background: var(--color-orange);
    padding: 23px 0;
}

.member-section-header h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-fa);
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin: 0;
}

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

.member-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-orange);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-name {
    color: var(--color-black);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid var(--color-orange);
    width: 100%;
}

.member-stats {
    padding: 15px;
}

.member-stats ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-stats ul li {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    padding: 15px 15px;
    position: relative;
}

.member-stats ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-size: 16px;
}

/* Recruitment Page */

/* Full-time Job Section */
.full-time-job {
    padding: 60px 0;
}

.job-section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
}

.job-section-header h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-orange);
    margin: 0;
}

.job-section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background-color: var(--color-primary);
}

.job-section-header .view-more {
    color: var(--color-orange);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

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

.job-card {
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.job-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.job-logo img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s;
}

.job-card:hover .job-logo img {
    transform: scale(0.95);
}

.view-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 42, 42, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    pointer-events: none;
}

.job-card:hover .view-detail-overlay {
    transform: scaleX(1);
    pointer-events: auto;
}

.view-detail-btn {
    background-color: var(--color-orange);
    color: var(--color-fa);
    padding: 8px 34px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transform: translateY(20px);
    transition: transform 0.3s, background-color 0.3s;
}

.job-card:hover .view-detail-btn {
    transform: translateY(0);
}

.job-info {
    padding: 15px 0;
}

.job-info h3 {
    font-size: 16px;
    margin: 0 0 10px;
}

.job-info h3 a {
    color: var(--color-black);
    text-decoration: none;
}

.job-info h3 a:hover {
    color: var(--color-orange);
}

.job-desc {
    font-size: 14px;
}

.job-apply-btn {
    display: block;
    color: var(--color-red-price);
    font-weight: 600;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.job-apply-btn:hover {
    color: var(--color-red-price);
    text-decoration: underline;
}

/* Part Time Job */
.full-time-job {
    padding: 60px 0;
}

/* Regulations */
.regulations {
    padding: 60px 0;
}

.regulations-header {
    text-align: center;
    margin-bottom: 40px;
}

.regulations-header h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-orange);
    position: relative;
    display: inline-block;
    margin: 0;
}

.regulations-header h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 93px;
    height: 2px;
    background-color: var(--color-orange);
}

.regulations-content {
    margin: 0 auto;
}

.regulations-content p{
    margin-bottom: 1rem;
    line-height: 1.4;
}

.regulations-list {
    padding-left: 25px;
    counter-reset: regulation-counter;
}

.regulation-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 15px;
    line-height: 1.6;
    font-size: 16px;
    color: var(--text-color-black);
    font-weight: 300;
}

.regulation-item:last-child {
    margin-bottom: 0;
}

.regulation-text {
    text-align: justify;
}

/* Group Job */
.group-job {
    padding: 60px 0;
}

.group-job .container {
    background-color: var(--bg-body);
}

.group-job-header {
    text-align: center;
    margin-bottom: 40px;
}

.group-job-header h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-orange);
    position: relative;
    display: inline-block;
    margin: 0;
}

.group-job-header h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 93px;
    height: 2px;
    background-color: var(--color-orange);
}

.group-job-content {
    padding: 20px 0;
}

.team-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px;
    margin: 0 auto;
}

.team-badge-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.team-badge-link:hover {
    transform: translateY(-5px);
}

.team-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    z-index: 2;
}

.badge-content img {
    position: relative;
}

.team-name {
    position: absolute;
    top: 14%;
    max-width: 40%;
    font-family: "Allison", cursive;
    color: #eeb748;
    font-size: 36px;
    font-weight: lighter;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

/* Video */

.video-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.video-section-header {
    margin-bottom: 40px;
}

.video-section-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-orange-opacity);
    position: relative;
    display: inline-block;
    margin: 0;
}

.video-section-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-orange);
}

.video-carousel-wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.video-carousel {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.video-item {
    flex: 0 0 calc(50% - 10px);
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-thumbnail {
    background: transparent;
    border-radius: 8px;
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.plyr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.plyr-modal.active {
    display: flex;
}

.plyr-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.plyr-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

#videoPlayer {
    width: 100%;
    height: 100%;
}

#videoPlayer .plyr {
    width: 100%;
    height: 100%;
}

.video-play-btn {
    background: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Recruitment Detail */

.company-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-red-price);
    margin-bottom: 15px;
}

.recruitment-detail {
    padding: 40px 0;
}

.recruitment-flex {
    display: flex;
    justify-content: space-between;
}

.recruitment-images {
    width: 60%;
    display: flex;
    gap: 10px;
}

.thumbnails-column {
    width: 120px;
}

.thumbnails-column {
    position: relative;
    max-width: 110px;
    flex-shrink: 0;
}
.thumbnails-column .slick-slide {
    margin: 6px 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.thumbnails-column .slick-current {
    opacity: 1;
}

.thumbnails-column .slick-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 !important;
    margin: 0;
}

.thumbnails-column .slick-slide {
    margin: 0;
}

.thumbnails-column .thumb-prev,
.thumbnails-column .thumb-next {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    background: transparent;
    opacity: 0.5;
}

.thumbnails-column .thumb-prev {
    top: -6px;
}

.thumbnails-column .thumb-next {
    bottom: 6px;
}

.thumbnails-column .thumb-prev i,
.thumbnails-column .thumb-next i {
    font-size: 32px;
}

.thumbnails-column .thumbnail-grid a {
    display: block;
    transition: border-color 0.3s ease;
    margin-bottom: 16px;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.thumbnail-item img {
    width: 100%;
    display: block;
}

.main-image-container {
    overflow: hidden;
}

.main-image-container img {
    width: 100%;
    object-fit: cover;
}

.contact-form {
    width: 40%;
}

.contact-form-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

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

.form-label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-label .required {
    color: var(--color-red);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--color-orange);
    outline: none;
}

.gender-options {
    display: flex;
    gap: 30px;
}

.gender-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-btn {
    background-color: var(--color-white);
    color: var(--color-orange);
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 50%;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.submit-btn:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

textarea.form-control {
    min-height: 70px;
    resize: vertical;
}

.error-message {
    color: var(--color-red);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Description Job */
.recruitment-description {
    padding: 40px 0;
    margin-top: 30px;
}
.recruitment-description .container {
    background-color: var(--bg-white);
    padding: 20px;
}

.recruitment-content p{
    margin-bottom: 1rem;
    line-height: 1.4;
}

.section-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 15px;
    position: relative;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background-color: var(--color-primary);
}
.job-feature-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    margin: 20px 0 15px 0;
}

.job-description-list {
    counter-reset: job-list;
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-description-list > li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.job-description-list > li::before {
    counter-increment: job-list;
    content: counter(job-list) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
}

.job-description-list ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 25px;
}

.job-description-list ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 15px;
}

.job-description-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-size: 16px;
}

.part-time-job-carousel .container {
    background-color: var(--bg-white);
    padding: 40px 20px;
}

/** Menu mobile **/
.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;
    display: block;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -82%;
    width: 82%;
    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 {
    max-width: 150px;
}

.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-bottom: 10px;
    flex: 1;
    background: #f8f9fa;
}

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

.mobile-menu-item:not(:first-child) {
    border-top: 1px solid #ebebeb;
}

.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.active a {
    color: var(--text-color-red);
}

.mobile-menu-item i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.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: flex;
    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;
    display: none;
}

.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;
}

.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 #ddd;
    padding: 15px;
    margin-top: auto;
    background-color: #f8f9fa;
}

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

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

.mobile-language-options {
    display: flex;
    flex-direction: row;
    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%;
}

.mobile-menu-footer {
    padding: 15px;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.mobile-menu-footer .support-info {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-footer .support-info p {
    margin: 5px 0;
    color: #333;
}

.mobile-menu-footer .support-info a {
    color: #007bff;
    text-decoration: none;
}

/* MenuMobile submenu */
.mobile-has-submenu {
    position: relative;
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
    color: #888;
}

.mobile-submenu-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-menu-item .active-span {
    font-weight: 600;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 0;
    transition: 0.2s all;
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 4px 0;
}

.mobile-submenu-item {
    list-style: none;
}

.mobile-submenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-level-3 {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.mobile-submenu-level-3 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-4 {
    background-color: #f9f9f9;
    padding-left: 20px;
}

.mobile-submenu-level-4 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-5 {
    background-color: #f9f9f9;
    padding-left: 30px;
}

.mobile-submenu-level-5 .mobile-submenu-item a {
    font-size: 14px;
}

/** Static page **/
.static-main {
    padding-top: 10px;
    padding-bottom: 30px;
}

.title-main {
    font-size: 28px;
    color: #e60023;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    margin: 16px 0;
}

/** Breadcrumb **/

.breadcrumb-nav {
    margin: 16px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 8px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
}

.breadcrumb-link {
    color: #333;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-link:hover {
    color: #e63946;
    background-color: transparent;
}

.breadcrumb-current {
    font-weight: bold;
    color: #333;
    padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/** Empty data **/
.empty-state {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 24px;
}

.empty-content i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-content h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-content p {
    color: #999;
    margin-bottom: 30px;
}

.empty-content a {
    color: #333;
}

/** Phone fixed **/
.fixed-social {
    position: fixed;
    bottom: 4rem;
    right: 0.25rem;
    padding: 0.5rem;
    z-index: 1000;
}

.fixed-social .link-item {
    position: relative;
    margin-bottom: 0.625rem;
}

.fixed-social .link-item span {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0.625rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 0;
    font-size: 3.75rem;
    border: 3px solid #ff6600;
    border-right: 0;
}

.fixed-social .social-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.625rem;
    background-color: #ff6600;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.social-button svg {
    width: 24px;
    height: 24px;
}

.fixed-social .social-button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.fixed-social .social-button img {
    width: 1.75rem;
    height: auto;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0.7);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0.7);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0.7);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0.7);
    }

    70% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        -webkit-box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 10px rgba(146, 22, 30, 0);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
        box-shadow: 0 0 0 0 rgba(146, 22, 30, 0);
    }
}

.pulse-1 {
    -webkit-animation: pulse 0.8s infinite;
    animation: pulse 0.8s infinite;
}

.pulse-2 {
    -webkit-animation: pulse 1.2s infinite 0.2s;
    animation: pulse 1.2s infinite 0.2s;
}

.pulse-3 {
    -webkit-animation: pulse 1.5s infinite 0.4s;
    animation: pulse 1.5s infinite 0.4s;
}

.pulse-4 {
    -webkit-animation: pulse 1.7s infinite 0.1s;
    animation: pulse 1.7s infinite 0.1s;
}

.link-item-phone {
    position: relative;
}

.phone-sub {
    position: absolute;
    right: calc(100% + 12px);
    min-width: 150px;
    max-width: 250px;
    background-color: rgb(146, 22, 30);
    border-radius: 6px;
    bottom: 0px;
    transform-origin: bottom right;
    transform: scale(0);
    transition: 0.3s all;
}

.phone-sub.open {
    transform: scale(1);
}

.phone-sub-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    border-bottom: 1px solid #e3e3e3;
    color: #fff;
}

.phone-sub-item:last-child {
    border-bottom: 0px;
}

.phone-sub-item i {
    color: #fff;
    transform: rotate(90deg);
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.phone-sub-item .icon {
    color: var(--color-01);
    width: 30px;
    height: 30px;
    margin-right: 5px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.phone-sub-item .icon svg {
    fill: var(--color-01);
}

.phone-sub-item:hover {
    span:not(.icon) {
        opacity: 0.6;
    }
}

/** Google translate **/
.skiptranslate {
    display: none;
}

#google_language_translator {
    clear: both;
    width: auto !important;
    text-align: right;
    display: none;
}

/** Marketing stat **/
.stat-main canvas {
    max-width: 100%;
    height: 600px !important;
}

.flex-chart {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.chart-left {
    flex: 1;
}

.chart-right {
    width: 100%;
    max-width: 300px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.stat-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--bg-white);
    padding: 20px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.stat-box:nth-child(2n) {
    border-right: 0px;
}

.stat-box:nth-child(8),
.stat-box:nth-child(7) {
    border-bottom: none;
}

.stat-title,
.stat-value {
    font-family: "Roboto";
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.stat-info {
    text-align: center;
}

.stat-main {
    padding: 60px 0;
}

.hotline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    flex: 1;
    height: 42px;
}

.hotline-item {
    display: flex;
    align-items: center;
    justify-content: start;
}

.hotline-item:last-child {
    margin-bottom: 0;
}

.hotline-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    flex-shrink: 0;
}

.hotline-icon.red {
    background-color: #e74c3c;
}

.hotline-icon.green {
    background-color: #27ae60;
}

.hotline-icon::before {
    content: "📞";
    color: white;
    font-size: 18px;
}

.hotline-number {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.hotline-number:hover {
    color: #333;
}

.hotline-item:hover {
    transition: all 0.3s ease;
}

/**  Btn eye **/
.btn-eyes {
    position: absolute;
    right: 1px;
    top: 1px;
    height: 40px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 0;
    border: none;
    background: transparent;
}

.btn-eyes:focus,
.btn-eyes:focus-visible {
    outline: none;
    box-shadow: none;
}

.btn-eyes .eye,
.btn-eyes .eye-slash {
    height: 18px;
    width: 18px;
    position: relative;
    display: block;
}

.btn-eyes .eye svg,
.btn-eyes .eye-slash svg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.btn-eyes .eye {
    display: none;
}

.btn-eyes.active .eye {
    display: block;
}

.btn-eyes.active .eye-slash {
    display: none;
}
