/* Thanh cuộn chung */
::-webkit-scrollbar {
    width: 8px;
    /* độ rộng scrollbar dọc */
    height: 8px;
    /* độ cao scrollbar ngang */
}

/* Track (nền của scrollbar) */
::-webkit-scrollbar-track {
    background: transparent;
    /* hoặc đổi màu tuỳ bạn */
}

/* Thumb (phần cuộn) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(to left, #e60012, #ff7759);
    /* màu của thanh cuộn */
    border-radius: 10px;
    /* bo tròn cho đẹp */
}

/* Hover vào thanh cuộn */
::-webkit-scrollbar-thumb:hover {
    background-color: #4092b4;
    /* màu đậm hơn khi hover */
}

/* Áp dụng cho toàn bộ website */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    /* thon nhỏ */
    scrollbar-color: var(--color-wattora) transparent;
    /* thumb | track */
}
:root {
    --color-wattora: #02342b;
    --button-wattora: #f68319;
    --background-green-wattora: #00a941;
    --background--light-wattora: #faf6eb;
    --background-overlay-wattora: rgba(250, 246, 235, 0.35);
}

@font-face {
    font-family: "Hanken-Grotesk-Regular";
    src: url(../font/Hanken_Grotesk/HankenGrotesk-Regular.ttf);
}

@font-face {
    font-family: "Hanken-Grotesk-Medium";
    src: url(../font/Hanken_Grotesk/HankenGrotesk-Medium.ttf);
}

@font-face {
    font-family: "Hanken-Grotesk-Light";
    src: url(../font/Hanken_Grotesk/HankenGrotesk-Light.ttf);
}

@font-face {
    font-family: "Hanken-Grotesk-Bold";
    src: url(../font/Hanken_Grotesk/HankenGrotesk-Bold.ttf);
}

@font-face {
    font-family: "Hanken-Grotesk-SemiBold";
    src: url(../font/Hanken_Grotesk/HankenGrotesk-SemiBold.ttf);
}

body {
    position: relative;
    font-family: "Hanken-Grotesk-Regular", "Montserrat", "Microsoft Yahei",
        "PingFang SC", "PingFangSC-Light", "Microsoft Yahei", "Hiragino Sans GB",
        SimSun, sans-serif;
    padding-top: 100px;
    color: var(--color-wattora);
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Hanken-Grotesk-Bold", sans-serif;
}

h3 {
    font-family: "Hanken-Grotesk-SemiBold", sans-serif;
}

h4 {
    font-family: "Hanken-Grotesk-SemiBold", sans-serif;
}

h5 {
    font-family: "Hanken-Grotesk-Medium", sans-serif;
}

h6 {
    font-family: "Hanken-Grotesk-Medium", sans-serif;
}

p {
    font-family: "Hanken-Grotesk-Regular", sans-serif;
}

a {
    font-family: "Hanken-Grotesk-Medium", sans-serif;
}

button,
.btn,
input[type="submit"],
input[type="button"] {
    font-family: "Hanken-Grotesk-SemiBold", sans-serif;
}

input,
textarea,
select {
    font-family: "Hanken-Grotesk-Regular", sans-serif;
}

label {
    font-family: "Hanken-Grotesk-Medium", sans-serif;
}

::placeholder {
    font-family: "Hanken-Grotesk-Light", sans-serif;
}

ul,
ol {
    font-family: "Hanken-Grotesk-Regular", sans-serif;
}

table {
    font-family: "Hanken-Grotesk-Regular", sans-serif;
}

th {
    font-family: "Hanken-Grotesk-SemiBold", sans-serif;
}

td {
    font-family: "Hanken-Grotesk-Regular", sans-serif;
}

strong,
b {
    font-family: "Hanken-Grotesk-Bold", sans-serif;
}

em,
i {
    font-family: "Hanken-Grotesk-Medium", sans-serif;
    font-style: italic;
}

blockquote {
    font-family: "Hanken-Grotesk-Medium", sans-serif;
    font-style: italic;
}

code,
pre {
    font-family: "Courier New", Courier, monospace;
}

pre {
    padding: 1rem;
    overflow-x: auto;
    line-height: 1.5;
}

footer {
    font-family: "Hanken-Grotesk-Light", sans-serif;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    font-family: "Hanken-Grotesk-SemiBold", sans-serif;
}
/* ================================== Css header ================================= */

.header__wattora {
    position: fixed;
    top: 53px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 40px;
    z-index: 999;
    transition: all 0.36s;
    font-weight: 500;
}

.header__wrapper {
    width: 100%;
    backdrop-filter: blur(10px);
    border-radius: 0;
    transition: all 0.36s;
    background: var(--background-overlay-wattora);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 20px 40px; */
    border-radius: 20px;
}

.header__wrapper .navigation__wattora .has__dropdown::after {
    content: "";
    width: 100%;
    height: 30px;
    bottom: -100px;
    left: 0;
}

.header__wrapper .logo__wattora {
    width: 10%;
    padding-left: 40px;
}

.header__wrapper .item__left__header {
    width: 90%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 40px;
}

.header__wrapper .item__left__header .navigation__wattora {
    width: 85%;
    margin-right: 20px;
}

.header__wrapper .item__left__header .navigation__wattora ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end;
}

.header__wrapper .item__left__header .navigation__wattora ul li a:not(.item a) {
    line-height: 50px;
    color: var(--color-wattora);
    transition: all 0.36s;
    position: relative;
    font-family: "Hanken-Grotesk-Bold";
    font-size: 18px;
}

.header__wrapper .dropdown__wattora .image_custom {
    width: 300px;
    object-fit: cover;
    height: 100%;
    border-radius: 15px;
}

.header__wrapper
    .item__left__header
    .navigation__wattora
    ul
    li:not(.dropdown__wattora li) {
    margin: 0px 10px;
    padding: 20px 20px;
    transition: all 0.3s ease-in-out;
}

.header__wrapper
    .item__left__header
    .navigation__wattora
    ul
    li:hover
    a:not(.item a) {
    color: #f08330;
}

.search__contact__btn {
    display: flex;
    justify-content: space-between;
    width: 15%;
}

.wattora__product__menu___wrapper {
    padding: 2rem 1rem;
    background: #fff;
    color: #111;
    width: 100%;
}

.wattora__product__menu___container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.wattora__product__menu___title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wattora__product__menu___title a {
    font-weight: 600;
    font-size: 1.25rem !important;
}

.wattora__product__menu___list {
    list-style: none;
    padding: 0;
    margin: 25px 0 !important;
    flex-direction: column;
}

.wattora__product__menu___list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wattora__product__menu___list li a {
    color: #01203f !important;
    line-height: 1 !important;
    font-size: 18px !important;
}

.wattora__product__menu___list li:hover {
    transform: translateX(5px);
}

.wattora__product__menu___list img {
    width: 40px;
    height: 40px;
}

.wattora__product__menu___list h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-wattora);
    margin: 0;
}

.scrollWattora {
    max-height: 600px;
    overflow: auto;
    scrollbar-width: thin;
}

/* Chỉ áp dụng thanh cuộn cho khối .scrollWattora */
.scrollWattora::-webkit-scrollbar {
    width: 4px; /* mảnh hơn */
    height: 4px;
}

.scrollWattora::-webkit-scrollbar-track {
    background: transparent;
}

.scrollWattora::-webkit-scrollbar-thumb {
    background: #01203f;
    border-radius: 4px;
}

.scrollWattora::-webkit-scrollbar-thumb:hover {
    background: #01203f;
}

/* (Tùy chọn) ẩn scrollbar khi không cuộn */
.scrollWattora {
    scrollbar-width: thin; /* Firefox hỗ trợ */
    scrollbar-color: #01203f transparent;
}

.wattora__product__menu___list p {
    font-size: 0.9rem;
    color: #666;
    margin: 0.25rem 0 0;
}

.wattora__product__menu___grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 25px 0;
}

.wattora__product__menu___grid .item {
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wattora__product__menu___grid .item:hover {
    transform: translateY(-5px);
}
.wattora__product__menu___grid .item a {
    color: #01203f;
    font-size: 18px;
}

.wattora__product__menu___grid img {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 0.5rem;
    display: block;
}

.wattora__product__menu___grid p {
    font-size: 0.95rem;
    color: var(--color-wattora);
    margin: 0;
}

.text-red {
    color: #e11d48;
}

@media (max-width: 992px) {
    .wattora__product__menu___container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .wattora__product__menu___grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .wattora__product__menu___wrapper {
        padding: 1.5rem;
    }
}
@media (max-width: 600px) {
    .wattora__product__menu___title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .wattora__product__menu___list li {
        gap: 0.75rem;
    }

    .wattora__product__menu___list img {
        width: 32px;
        height: 32px;
    }

    .wattora__product__menu___grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .wattora__product__menu___grid img {
        max-width: 100px;
    }
}

.btn__contact__header {
    /* background: linear-gradient(to left, #e60012, #ff7759);
    border-radius: 8px;
    padding: 8px 33px;
    transition: all 0.36s;
    display: flex;
    color: #fff;
    gap: 5px; */

    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--button-wattora);
    color: #fff;
    padding: 8px 33px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(6, 33, 61, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header__wattora.scroll_mouse {
    padding: 0;
    top: 0;
    transition: all 0.36s ease;
}

.header__wrapper.scroll_mouse {
    border-radius: unset;
    background: #fff;
}

.underline-gradient {
    position: relative;
    line-height: 1;
    margin-bottom: 15px;
}

.underline-gradient::after {
    content: "";
    position: absolute;
    bottom: -0.375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 2px;
    border-radius: 9999px;
    background: var(--button-wattora);
    transition: width 0.3s ease;
}

@media screen and (min-width: 1400px) and (max-width: 1930px) {
    .search__contact__btn {
        gap: 15px;
        width: 20%;
    }

    .header__wrapper .item__left__header .navigation__wattora {
        width: 80%;
    }

    .header__wrapper .logo__wattora {
        width: 13%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .header__wrapper .logo__wattora {
        width: 15%;
    }
}
/* .underline-gradient:hover::after {
    width: 30%;
} */

/* === Hiệu ứng khối search trong header === */
.wattora_search_xl {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 50;
    border-radius: 20px;
}

/* Khi hiện khối search */
.wattora_search_xl.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Style form trong khối search */
.wattora_scm_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

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

.wattora_msc_input {
    flex: 1;
    padding: 12px 18px;
    border-bottom: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
    background: none;
    color: #fff;
}

.wattora_msc_submit i {
    color: #fff;
}

.wattora_search_xl .search__product {
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    max-height: 300px;
    overflow-y: auto;
    min-height: 300px;
    margin-top: 20px;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #444 #f1f1f1;
    display: none;
}

.wattora_search_xl .search__product.active {
    display: block;
}

/* Chrome, Edge, Safari */
.wattora_search_xl .search__product::-webkit-scrollbar {
    width: 1px; /* 👈 mảnh hơn — có thể giảm xuống 2px nếu muốn */
}

.wattora_search_xl .search__product::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.wattora_search_xl .search__product::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #444, #000); /* hiệu ứng đen bóng */
    border-radius: 10px;
}

.wattora_search_xl .search__product::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #666, var(--color-wattora));
}

.search__product .list__result .item_result {
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.search__product .list__result .item_result .iconArrow {
    color: #111;
    font-weight: 500;
    flex: 1;
    text-decoration: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.search__product .list__result .item_result:hover {
    background: #f9f9f9;
}

.search__product .list__result .item_result i {
    font-size: 16px;
}

.wattora_msc_submit img {
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: transform 0.2s;
}

.wattora_msc_submit img:hover {
    transform: scale(1.1);
}

.wattora_msc_submit:hover {
    cursor: pointer;
}

/* === Dropdown container === */
.dropdown__wattora {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 99;
    border-radius: 20px;
}

/* Khi hover vào menu chính */
.has__dropdown:hover .dropdown__wattora {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;

}

.has__dropdown:hover {
    background: #fff;
}

/* === Bên trong dropdown === */
.dropdown__inner {
    display: flex;
    justify-content: space-around;
    padding: 40px 80px;
    gap: 60px;
    border-radius: 20px;
}

.dropdown__col h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.dropdown__col ul {
    list-style: none;
    padding: 0;
}

.dropdown__col ul li {
    margin-bottom: 8px;
}

.dropdown__col ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.dropdown__col ul li a:hover {
    color: #d50000;
}

/* === Card phải === */
.dropdown__card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.dropdown__card:hover {
    transform: translateY(-4px);
}

.dropdown__card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.dropdown__card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dropdown__card p {
    color: #777;
    margin-bottom: 10px;
}

.dropdown__card .see__more {
    color: var(--color-wattora);
    font-weight: 600;
    text-decoration: none;
}

.header__wrapper .item__left__header .navigation__wattora ul.list__menu__style {
    display: block;
}

.header__wrapper
    .item__left__header
    .navigation__wattora
    ul.list__menu__style
    li {
    margin: 0;
}

#contact_zalo {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background-color: #0088cc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

#contact_zalo a {
    display: block;
    width: 60%;
    height: 60%;
}

#contact_zalo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hiệu ứng nhịp tim */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 136, 204, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
        transform: scale(1);
    }
}

/* Khi hover */
#contact_zalo:hover {
    transform: scale(1.15) rotate(8deg);
}

/* =====================================
   WATTORA HOME SLIDER
===================================== */
.wattora__home__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    margin-top: -100px;
}

.wattora__home__slider .wattora__home__slider__item {
    position: relative;
    cursor: grab;
}

.header_about {
    margin-bottom: 10px;
}

.header_about p {
    text-align: center;
    font-size: 18px;
}

.wattora__home__slider .wattora__home__slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 1200px) {
    .wattora__home__slider {
        height: 687px;
        overflow: hidden;
        background: linear-gradient(135deg, #06213d 0%, #0a3556 100%);
    }

    .wattora__home__slider .slick-list {
        height: 100%;
    }
    .wattora__home__slider .slick-track {
        height: 100%;
    }

    .wattora__home__slider .wattora__home__slider__item {
        height: 100%;
    }
}

@media screen and (max-width: 1560px) {
    .container__wattora {
        width: 1200px;
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 768px) {
    .container__wattora {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .mobile__logo img {
        width: 150px;
    }

    .breakcumb__wattora__container {
        display: none;
    }

    .wattora__video__overlay {
        padding-top: 100px !important;
    }
    .header__wrapper {
        background: #fff !important;
    }

    .wattora__video__hero {
        height: auto !important;
    }
}

@media screen and (max-width: 1240px) {
    .container__wattora {
        width: 80%;
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media screen and (max-width: 1440px) {
    .container__wattora {
        width: 1100px;
        padding-left: 0px;
        padding-right: 0px;
    }
}

.wattora__home__slider__caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10;
}

.wattora__home__slider__caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.wattora__home__slider__caption p {
    font-size: 1.125rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.wattora__home__btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #e60012, #ff7759);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.wattora__home__btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(to right, #ff7759, #e60012);
}

/* slick dots + arrows */
/* =====================================
   WATTORA HOME SLIDER DOTS
===================================== */
.wattora__home__slider .slick-dots {
    bottom: 25px;
}

.wattora__home__slider .wattora__home__slider_detail {
    position: relative;
    width: 100%;
    height: 100%;
}

.wattora__home__slider .slick-dots li button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wattora__home__slider .slick-dots li button:before {
    display: none;
    /* ẩn dot mặc định của slick */
}

.wattora__home__slider .slick-dots li.slick-active button {
    background: #fff;
    border: 1px solid #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 119, 89, 0.6);
}

/* =====================================
   HEADER ƯU TIÊN TRÊN SLIDER
===================================== */
.header__wattora {
    z-index: 9999;
}

/* slider thấp hơn header */
.wattora__home__slider {
    z-index: 1;
}

/* Footer Styles */
.wattora__footer__devc {
    background-color: #f5f5f5;
    color: var(--color-wattora);
    padding: 40px 20px 20px;
    border-top: 1px solid #e0e0e0;
}

.wattora__footer__devc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wattora__footer__devc-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.wattora__footer__devc-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding-right: 20px;
}

.wattora__footer__devc-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-wattora);
    font-weight: bold;
}

.wattora__footer__devc-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--color-wattora);
    font-weight: bold;
}

.wattora__footer__devc-section ul {
    list-style-type: none;
}

.wattora__footer__devc-section ul li {
    margin-bottom: 8px;
}

.wattora__footer__devc-section ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.wattora__footer__devc-section ul li a:hover {
    color: #000;
}

.wattora__footer__devc-section .list__social li {
    display: inline-block;
    margin: 0 5px;
}

.wattora__footer__devc-section .list__social li a {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wattora__footer__devc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.wattora__footer__devc-table td {
    padding: 5px 0;
    vertical-align: top;
}

.wattora__footer__devc-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.wattora__footer__devc-social-icon {
    font-size: 20px;
    color: #555;
}

.wattora__footer__devc-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.wattora__footer__devc-copyright {
    margin-bottom: 10px;
}

.wattora__footer__devc-links {
    display: flex;
    gap: 15px;
}

.wattora__footer__devc-links a {
    color: #666;
    text-decoration: none;
}

.wattora__footer__devc-links a:hover {
    text-decoration: underline;
}

.list_social_fts {
    display: flex;
    gap: 5px;
}

.list_social_fts img {
    border-radius: 50%;
}

.category__sub__global {
    margin-left: 35px;
    margin-top: 8px;
}

.category__sub__global > li {
    list-style: disc;
}

.category__sub__global__sub {
    margin-left: 30px;
    margin-top: 8px;
}

.category__sub__global__sub li {
    list-style: circle;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .wattora__footer__devc-section {
        flex: 0 0 50%;
    }

    .wattora__footer__devc-bottom {
        flex-direction: column;
        text-align: center;
    }

    .wattora__footer__devc-links {
        margin-top: 10px;
    }

    .header__wrapper .logo__wattora {
        width: 30%;
    }
}

@media (max-width: 480px) {
    .wattora__footer__devc-section {
        flex: 0 0 100%;
    }

    .wattora__footer__devc-content {
        flex-direction: column;
    }
}

.wattora__news {
    width: 100%;
    margin: 0 auto;
    background-color: #f6f6f8;
    padding-top: 60px;
    padding-bottom: 30px;
}

.wattora__news__label__detail {
    width: 1020px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 53px;
}

.wattora__news__label__detail > p {
    font-size: 36px;
    line-height: 1.5;
    color: var(--color-wattora);
    text-align: center;
    font-weight: 700;
}

.wattora__news__label__desc p {
    color: #999999;
    font-size: 16px;
}

.wattora__news__input {
    width: 508px;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 18px 28px 0px rgba(226, 208, 207, 0.24);
    display: flex;
}

.wattora__news__input .wattora__news__input__detail {
    width: calc(100% - 183px);
}

.wattora__news__input__detail input {
    width: 100%;
    height: 60px;
    padding-left: 48px;
    padding-right: 20px;
    font-size: 16px;
    color: #d4d4d4;
    border: 0;
    outline: none;
    background: none;
    line-height: 1;
    margin: 0;
}

.wattora__news__submit {
    padding: 0 18px;
    display: flex;
    align-items: center;
    background: var(--button-wattora);
    width: 183px;
    border-radius: 0 8px 8px 0;
}

.wattora__news__submit input {
    font-size: 16px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    width: 100%;
    cursor: pointer;
    border: 0;
    outline: none;
    background: none;
    font-weight: 700;
}

@media screen and (max-width: 1560px) {
    .wattora__footer__devc-content {
        padding-top: 46px;
    }
}

.wattora__footer__devc-content {
    background: #f6f6f8;
    position: relative;
}

/* === Nút mở menu === */
.mobile__menu__btn {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #111;
    cursor: pointer;
}

/* Hiện trên màn nhỏ */
@media (max-width: 992px) {
    .mobile__menu__btn {
        display: block;
    }

    .navigation__wattora,
    .search__contact__btn {
        display: none !important;
    }
}

/* === Overlay === */
.mobile__menu__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 98;
}

/* === Sidebar === */
.mobile__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 99;
    overflow-y: auto;
    padding-bottom: 40px;
}

/* Mở menu */
.mobile__menu.active {
    left: 0;
}

.mobile__menu__overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Header menu mobile */
.mobile__menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.close__menu__btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #111;
}

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

.mobile__nav li {
    border-bottom: 1px solid #f2f2f2;
}

.mobile__nav a {
    display: block;
    padding: 14px 20px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
}

.mobile__nav a:hover {
    background: #f9f9f9;
}

/* Sub menu */
.has__sub .sub__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0px;
    cursor: pointer;
}

.has__sub .toggle__btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.sub__menu {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
}

.sub__menu a {
    padding: 12px 40px;
    font-size: 14px;
}

.has__sub.open .sub__menu {
    display: flex;
}

.has__sub.open .toggle__btn i {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.header__wrapper > .search__btn__left {
    display: none;
}

/* Solution Section */
.solution__section {
    padding: 80px 0 100px;
    background: #fff;
}

.solution__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-wattora);
    letter-spacing: 2px;
    font-family: "Hanken-Grotesk-Bold";
    text-transform: uppercase;
}

.wattora__feature h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-wattora);
    letter-spacing: 2px;
    font-family: "Hanken-Grotesk-Bold";
    text-transform: uppercase;
}

.solution__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

/* Left side - Slider with Navigation */
.solution__slider__wrapper {
    width: 80%;
    display: flex;
    gap: 30px;
    align-items: center;
    overflow: hidden;
    justify-content: end;
    flex-direction: column;
    padding: 0 15px;
}

/* Custom Navigation (Dots as lines with icons) */
.solution__nav {
    display: flex;
    flex-direction: row;
    gap: 0;
    position: relative;
    width: 100%;
    justify-content: space-between;
    overflow: hidden;
    padding: 0 1px;
}

.solution__slider__wrapper .solution__slider {
    width: 100%;
    max-width: 100%;
}

.solution__nav__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.solution__nav__item span {
    font-size: 15px;
    color: #999;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav__icon:not(.solution__nav.desktop .nav__icon) {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #fff;
    position: relative;
    z-index: 2;
}

.nav__icon svg {
    width: 20px;
    height: 20px;
}

/* Connecting line between items */
.solution__nav__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -188px;
    top: -153px;
    width: 2px;
    height: 388px;
    background: #e0e0e0;
    z-index: 1;
    transform: rotate(90deg);
}

/* Active state */
.solution__nav__item.active .nav__icon {
    background: var(--button-wattora);
    border-color: #fff;
    color: #fff;
    box-shadow: 0 15px 40px rgba(216, 230, 90, 0.4);
}

.solution__nav__item.active span {
    color: #fff;
    font-weight: 600;
}

.solution__nav__item.active::after {
    background: var(--button-wattora);
}

/* Hover effect */
.solution__nav__item:hover .nav__icon {
    border-color: var(--button-wattora);
    transform: scale(1.05);
}

.solution__nav__item:hover span {
    color: #666;
}

/* Slider Content */
.solution__slider {
    flex: 1;
}

.solution__item {
    outline: none;
}

.solution__item h3 {
    font-size: 25px;
    color: var(--color-wattora);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.solution__item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.btn-view {
    background: var(--button-wattora);
    color: #fff;
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.btn-view:hover {
    background: none;
    border: 1px solid var(--button-wattora);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(216, 230, 90, 0.4);
    color: var(--button-wattora);
    text-decoration: none;
}

.btn__wattora__ {
    background: var(--button-wattora);
    color: #fff;
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.btn__wattora__:hover {
    background: none;
    border: 1px solid var(--button-wattora);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(216, 230, 90, 0.4);
    color: var(--button-wattora);
    text-decoration: none;
}
/* Right side - Video */
.solution__video {
    width: 40%;
}

.solution__video video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .solution__wrap {
        flex-direction: column;
        gap: 40px;
    }

    .solution__slider__wrapper,
    .solution__video {
        width: 100%;
    }

    .solution__nav__item span {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .solution__nav.product {
        overflow-x: auto !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .solution__title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .wattora__news__grid__container > h2 {
        font-size: 28px !important;
    }

    .wattora__news__input__detail input {
        padding-left: 15px;
        padding-right: unset;
    }

    .solution__slider__wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .wattora__news__input__detail input {
        height: 48px;
    }
    .wattora__news__submit input {
        line-height: 48px;
    }

    .wattora__news__input .wattora__news__input__detail {
        width: 100%;
    }

    .solution__nav {
        flex-direction: row;
        overflow-x: hidden;
        width: 90%;
        padding-bottom: 10px;
        justify-content: center;
    }

    .solution__nav.product {
        overflow-x: hidden;
        width: 100%;
    }

    .solution__slider__wrapper .solution__slider {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .solution__nav__item {
        flex-direction: column;
        text-align: center;
        padding: 10px;
        min-width: 80px;
        align-items: start;
    }

    .loader_icon__ {
        width: 30px !important;
        height: 30px !important;
    }

    .solution__nav__item span {
        font-size: 12px;
        white-space: normal;
    }

    .solution__nav__item:not(:last-child)::after {
        display: block;
    }

    .solution__item h3 {
        font-size: 24px;
    }

    .solution__item p {
        font-size: 14px;
    }

    .solution__nav__item:not(:last-child)::after {
        right: 3px;
        left: unset;
        top: -44%;
        transform: rotate(90deg);
        height: 112px;
    }

    .wattora__news__input {
        width: 100%;
    }
}

.wattora__news_devc {
    width: 100%;
    padding: 100px 0;
    position: relative;
}

.wattora__news_devc::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

.wattora__news_devc::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

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

.wattora__news_devc__title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--color-wattora);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.wattora__news_devc__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
}

.wattora__news_devc__list {
    width: 45%;
    max-width: 40%;
}

/* Featured Image - Left */
.wattora__news_devc__featured {
    width: 45%;
    flex-shrink: 0;
}

.wattora__news_devc__featured__img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.wattora__news_devc__featured__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.wattora__news_devc__featured__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.wattora__news_devc__featured__img:hover img {
    transform: scale(1.05);
}

/* News List - Right */
.wattora__news_devc__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

.wattora__news_devc__item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
    transition: transform 0.3s ease;
}

.wattora__news_devc__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wattora__news_devc__date {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.wattora__news_devc__item__title {
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
}

.wattora__news_devc__item__title a {
    color: var(--color-wattora);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
}

.wattora__news_devc__item__title a:hover {
    color: #06213d;
}

/* Button */
.wattora__news_devc__btn__wrap {
    text-align: center;
    margin-top: 60px;
}

.wattora__news_devc__btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #06213d 100%);
    color: #fff;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.wattora__news_devc__btn:hover {
    background: linear-gradient(135deg, #06213d 0%, #cc0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 68, 68, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .wattora__news_devc__wrap {
        flex-direction: column;
        gap: 50px;
        padding: 0 20px;
    }

    .wattora__news_devc__list {
        width: 100%;
        max-width: 100%;
    }

    .wattora__news_devc__featured {
        width: 100%;
    }

    .wattora__news_devc__list {
        gap: 30px;
    }

    .wattora__news_devc::before,
    .wattora__news_devc::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .wattora__news_devc {
        padding: 60px 0;
    }

    .wattora__news_devc__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .wattora__news_devc__item__title {
        font-size: 18px;
    }

    .wattora__news_devc__item {
        padding-bottom: 25px;
        gap: 25px;
    }

    .wattora__news_devc__btn__wrap {
        margin-top: 40px;
    }

    .wattora__news_devc__btn {
        padding: 12px 40px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .wattora__news_devc__title {
        font-size: 28px;
    }

    .wattora__news_devc__item__title {
        font-size: 16px;
    }

    .wattora__news_devc__date {
        font-size: 13px;
    }
}

.wattora__about__section {
    position: relative;
    background: #f7f7f7;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}

.wattora__about__bg {
    background: url("solar-bg.jpg") center/cover no-repeat;
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.wattora__about__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wattora__about__title {
    font-size: 42px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 15px;
}

.wattora__about__desc {
    color: var(--color-wattora);
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
}

.wattora__about__stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.wattora__about__item {
    flex: 1 1 200px;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wattora__about__item img {
    width: 80px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.wattora__about__item:hover img {
    transform: scale(1.05);
}

.wattora__about__number {
    font-size: 32px;
    font-weight: 700;
    color: #1c1c1c;
    display: inline-block;
}

.wattora__about__unit {
    font-size: 20px;
    color: #1c1c1c;
    font-weight: 700;
    margin-left: 4px;
}

.wattora__about__label {
    font-size: 16px;
    color: #777;
    margin-top: 5px;
}

.wattora__about__btn {
    background: linear-gradient(90deg, #ff4b2b, #e60012);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.wattora__about__btn:hover {
    background: linear-gradient(90deg, #e60012, #b1000e);
    transform: translateY(-2px);
}

.wattora__home__slider.slick-dotted.slick-slider {
    margin-bottom: unset !important;
}

.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.custom-pagination .page-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #01203f;
    color: #01203f;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.custom-pagination .page-item:hover {
    background-color: #01203f;
    color: #fff;
}

.custom-pagination .page-item.active {
    background-color: #01203f;
    color: #fff;
    font-weight: 600;
    pointer-events: none;
}

.custom-pagination .page-item.disabled {
    color: #aaa;
    border-color: #ddd;
    pointer-events: none;
    background-color: #f9f9f9;
}

/* Pagination */
.wattora__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.wattora__pagination .page-link {
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: var(--color-wattora);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.wattora__pagination .page-link.active {
    background: var(--button-wattora);
    color: #fff;
    border-color: #fff;
}

.wattora__pagination .page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#scroll_btn {
    display: none;
    position: fixed;
    right: 26px;
    bottom: 128px;
    z-index: 1000;
    padding: 5px 10px;
    background: var(--button-wattora);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: none;
    outline: none;
    font-size: 20px;
    color: white;
    align-items: center;
    justify-content: center;
}
