:root {
    --color-main: #0565bf;
    --color-text: #111;
    --font-main: "Roboto-R"
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    color: #111;
    top: 0 !important;
    position: relative;
    margin: auto;
}

[x-cloak] {
    display: none !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.5
}

img {
    max-width: 100%;
    height: auto !important;
    vertical-align: top;
    display: inline-block
}

a {
    text-decoration: none !important
}

.h-card,
.hidden-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.scale-img {
    overflow: hidden
}

.scale-img img {
    transition: all .3s
}

.scale-img:hover img.w-100 {
    transform: scale(1.2, 1.2)
}

.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3
}

.webkit-line-clamp-1 {
    -webkit-line-clamp: 1
}

.webkit-line-clamp-2 {
    -webkit-line-clamp: 2
}

.transition {
    transition: .3s all
}

.p-relative {
    position: relative;
}

.share {
    padding: 17px 10px 10px 10px;
    line-height: normal;
    background: rgba(128, 128, 128, .15);
    margin-top: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.pagination li a,
.pagination li span {
    cursor: pointer;
    border-radius: 5px !important;
    border: 1px solid #cacaca;
    background: #ffff;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d4d4d;

    padding: 5px
}

.pagination li a:hover {
    color: var(--color-main);
    border-color: var(--color-main)
}

.pagination .page-item.active .page-link {
    background: #069E34;
    border-color: #069E34;
    color: #fff
}

.wrap-main {
    margin: 30px 0
}

.wrap-content {
    max-width: 1300px;
    padding: 0 15px;
    margin: 0 auto
}

.social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 10px
}

.social li {
    display: inline-block
}

.social li:hover img {
    transform: rotateY(360deg);
    transition: all .5s linear
}

.header-main__langs {
    position: relative;
    z-index: 12;
    min-width: 86px;
    font-family: 'Hanken-Grotesk-B';
}

.header-main__lang-current {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid rgba(109, 2, 1, .16);
    border-radius: 999px;
    color: #2f2f2f;
    background: #fff;
    box-shadow: 0 8px 18px rgba(49, 15, 8, .08);
    cursor: pointer;
}

.header-main__lang-current img,
.header-main__langs a img {
    flex: 0 0 auto;
    width: 24px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.header-main__lang-current span,
.header-main__langs a span {


    line-height: 1;
}

.header-main__lang-current i {
    margin-left: auto;
    color: #d82023;
    font-size: 10px;
    transition: transform .2s ease;
}

.header-main__lang-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 100%;
    padding: 6px;
    border: 1px solid rgba(109, 2, 1, .12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(49, 15, 8, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.header-main__lang-list::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 8px;
}

.header-main__langs a {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 8px;
    color: #333;
}

.header-main__langs a.active,
.header-main__langs a:hover {
    color: #d82023;
    background: #fff4d0;
}

.header-main__langs:hover .header-main__lang-list,
.header-main__langs:focus-within .header-main__lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-main__langs:hover .header-main__lang-current,
.header-main__langs:focus-within .header-main__lang-current {
    border-color: rgba(109, 2, 1, .32);
}

.header-main__langs:hover .header-main__lang-current i,
.header-main__langs:focus-within .header-main__lang-current i {
    transform: rotate(180deg);
}

@keyframes notifyPhone {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

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

.menu-res {
    display: none
}

.header-wrap-in {
    position: relative;
}
.header-wrap.header_fix{
    position: fixed;
    z-index: 999;
    background: #0b1c3f !important;
    box-shadow: 0px 0px 5px #999;
}
.menu-main {
    position: relative;
    z-index: 99;
}

.menu ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none
}

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

.title-menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    line-height: 50px;
    background: url(../images/menu.png) no-repeat left center;
    padding-left: 40px;
    padding-right: 30px;
}

.title-menu:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    right: 0px;
    background: #ffffff8a;

}

.title-menu h4 {
    font-size: 15px;
    text-transform: uppercase;
    margin: 0px;
    line-height: 50px;
    font-family: 'Hanken-Grotesk-B';
    padding-right: 30px;
    cursor: pointer;
}

.menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #333;
    font-size: 15px;
    transition: .2s;
    padding: 10px 0px;
    font-family: 'Hanken-Grotesk-B';
}

.menu ul li a i {}

.menu ul li a.active,
.menu ul li:hover>a {
    color: #d82023;
}

.menu .menu_lvl {
    position: absolute;
    top: calc(100% + 12px);
    opacity: 0;
    visibility: hidden;
    width: 260px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background: #0565bf;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: top .25s ease, opacity .25s ease, visibility .25s ease;
    z-index: 999999 !important;
}

.menu ul li:hover > .menu_lvl {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.menu .menu_lvl li {
    position: relative;
}

.menu .menu_lvl .menu_lvl {
    border-radius: 5px;
    left: 100%;
    top: -8px;
    margin-left: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease, left .25s ease;
}

.menu .menu_lvl li:hover > .menu_lvl {
    opacity: 1;
    visibility: visible;
    left: 100%;
}

.menu ul li ul li a:after {
    display: none !important
}

.menu_dmsp>a {
    gap: 7px;
}

.menu_dmsp>a::after,
.menu_dmsp .menu_lvl li:has(> .menu_lvl)>a::after {
    font-family: "Font Awesome 6 Pro";
    font-size: 11px;

    font-style: normal;
    line-height: 1;
    opacity: .75;
}

.menu_dmsp>a::after {
    content: "\f107";
    transition: transform .2s ease;
}

.menu_dmsp:hover>a::after {
    transform: rotate(180deg);
}


.menu_dmsp .menu_lvl::before {
    content: "";
    position: absolute;
    inset: auto 0 100% 0;
    height: 12px;
}

.menu_dmsp .menu_lvl ul {
    max-height: 420px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu_dmsp .menu_lvl ul::-webkit-scrollbar {
    width: 4px;
}

.menu_dmsp .menu_lvl ul::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
}

.menu_dmsp .menu_lvl li>a {
    justify-content: space-between;
    min-height: 40px;
    padding: 10px 14px !important;
    border-bottom: 0;
    color: #ffffff !important;
    font-size: 14px !important;
    font-family: 'Hanken-Grotesk-M', sans-serif;
    text-align: left;
    text-transform: none !important;
    border-radius: 6px;
    transition: all .25s ease;
}

.menu_dmsp .menu_lvl li:has(> .menu_lvl)>a::after {
    content: "\f105" !important;
    display: inline-block !important;
    flex: 0 0 auto;
    color: #ffffff;
    opacity: .8;
    transition: transform .25s ease;
}

.menu_dmsp .menu_lvl li:hover>a {
    color: #fff0a2 !important;
    background: transparent !important;
}

.menu_dmsp .menu_lvl li:hover:has(> .menu_lvl)>a::after {
    transform: translateX(3px);
    color: #fff0a2 !important;
}

/* Bean-style header */


.header-body-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    position: relative;
}

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

.header-logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.header-logo-circle:hover {
    transform: scale(1.05);
}

/* Row 1: Contact row */
/* Row 2: Search and Consult */
/* Row 3: Keywords */



.bean-nav__inner {
    display: flex;
    align-items: stretch;
    gap: 22px;
    min-height: 52px;
}

.bean-nav__menu-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.bean-nav__list {
    height: 100%;
    justify-content: space-between;
    gap: 0;
}

.bean-nav__item {
    position: relative;
    flex: 0 0 auto;
}


.bean-nav__link.active,
.bean-nav__item:hover>.bean-nav__link {
    color: #9f0406 !important;
}

@keyframes beanPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 226, 108, .7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(252, 226, 108, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(252, 226, 108, 0);
    }
}


.title-main {
    text-align: center;
    margin-bottom: 20px;

    h1,
    h2 {
        margin-bottom: 0;
        font-size: 30px;
        color: #333;
        text-transform: uppercase;
        font-family: 'Hanken-Grotesk-B';

    }

    p {
        margin: 10px 0px 0px;
    }
}

.tt-bt {
    display: flex;
    align-items: end;
    gap: 20px;
}

.tt-bt h2 {
    color: #333;
    font-size: 26px;
    text-transform: uppercase;
    margin: 0px;

    line-height: 1;
    margin-bottom: 10px;
    cursor: pointer;
}

.tt-bt h2.active {
    color: #0051C6;
    font-size: 44px;
    text-transform: uppercase;

}

.title-detail {
    margin-bottom: 20px
}

.title-detail h1 {
    font-size: clamp(22px, calc(30/1200*100vw), 30px);
    color: var(--color-main);
    margin-bottom: 0
}

.product-list {
    position: relative;
    overflow: hidden;
}

.product-list a:after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #00000074;
}

.product-item {
    position: relative;
}

.product-item a {
    display: block;
    position: relative
}

@keyframes notifyPhone {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

.main-widget {
    position: fixed;
    right: 14px;
    bottom: 20px;
    z-index: 99;
    top: auto !important
}

.main-widget .img {
    width: 25px;
    height: 25px
}

.main-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-bottom: 5px
}

.main-icon p {
    font-size: 10px;
    color: #fff;
    margin: 0
}

.out-circle {
    overflow: hidden;
    padding: 17px;
    border-radius: 100%;
    background: var(--color-main);
    width: 60px;
    height: 60px
}

.main-icon {
    line-height: 0;
    color: #fff;
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.main-icon i {
    width: 26px;
    height: 26px;
    transform: translateX(2px)
}

.ser-icon {
    display: inline-flex;
    position: absolute;
    font-size: 18px;
    top: 0;
    left: 0;
    padding: 10%;
    background: #fff;
    max-width: 100%;
    overflow: hidden;
    border-radius: 100%;
    color: var(--color-main);
    width: 70%;
    height: 70%;
    margin: 15%;
    transition: .2s all
}

.unsee {
    opacity: 0;
    transform: scale(0)
}

.process {
    display: inline-flex;
    transform: translateX(0);
    transition: .15s linear transform;
    line-height: 0
}

.ser-icon .item {
    margin-right: 40px;
    width: 30px;
    height: 30px;
    color: var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center
}

.ser-icon .item svg {
    width: 25px;
    height: 25px;
    color: var(--color-main)
}

.ser-icon i:nth-child(2n) {
    color: #000
}

.def-content {
    position: absolute;
    bottom: 62px;
    right: 0;
    background: #fff;
    border-radius: 8px;
    transition: .2s all;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    width: 300px;
    z-index: 1
}

.def-content:before {
    position: absolute;
    bottom: -8px;
    right: 22px;
    left: auto;
    display: inline-block !important;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
    content: ''
}

.def-content .def-header {
    background: var(--color-main);
    padding: 10px;
    border-radius: 8px 8px 0 0;
    color: #fff;
    position: relative;
    font-size: 16px;
}

.def-content .def-header .close-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    left: initial;
    padding: 0;
    margin: 0;
    border: 0 none;
    background: 0 0;
    line-height: 1;
    width: 26px;
    height: 26px;
    cursor: pointer;
    color: #fff;
    background: var(--color-main);
    border-radius: 50%;
    text-align: center
}

.def-content .item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 10px;
    transition: .3s linear all
}

.def-content .item>a .img {
    flex-grow: 0;
    flex: none;
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 50%;
    color: #fff !important
}

.def-content .item>a .img svg {
    height: 20px;
    width: 20px
}

.def-content .item>a .detail {
    flex-grow: 1;
    line-height: normal
}

.def-content .item>a .detail .arcu-item-title {
    font-size: 15px;
    display: block;
    line-height: normal;
    color: #000
}

.def-content .item>a .detail .arcu-item-subtitle {

    color: #787878
}

.def-content .item.phone>a .img {
    background: #4eb625
}

.def-content .item.mess>a .img {
    background: #31adff
}

.def-content .item.zalo>a .img {
    background: #0165f8
}

.def-content .item.map>a .img {
    background: #d94234
}

.def-content .item:last-child {
    margin-bottom: 0
}

.main-widget .close-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 25px;
    top: 0;
    padding: 10px;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 1;
    text-align: center;
    color: #fff;
    background: var(--color-main);
    border-radius: 100%;
    transition: .2s all;
    transform: rotate(0);
    cursor: pointer
}

.main-widget .close-icon svg {
    width: 25px;
    height: 25px
}

.close-icon.unsee {
    transform: rotate(180deg)
}

.pregan {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color-main);
    z-index: -2;
    border-radius: 100%;
    opacity: .6;
    animation: zoomzoom 3s linear .2s infinite
}

.pregan:nth-child(1) {
    animation-delay: .5s
}

.main-widget .item svg {
    fill: var(--color-main)
}

.def-content .item svg {
    fill: #fff
}

.def-content .item:hover {
    background: #f1f1f1
}

@keyframes zoomzoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1.2)
    }
}

.scroll {
    cursor: pointer;
}

.scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 98;
    top: auto;
    width: 40px;
    height: 40px;
    display: flex;
    background: 0 0;
    text-decoration: none;
    transition: all .3s ease-out 0s;
    transform: translateY(-20px);
    background-color: color-mix(in srgb, var(--color-main) 10%, #fff);
    border-radius: 7px;
    cursor: pointer
}


.scrollToTop svg {
    width: 100%;
    height: 100%;
    transform: rotate(270deg)
}

.scrollToTop svg path {
    stroke: var(--color-main)
}

.scrollToTop:hover {
    background: var(--color-main)
}

.scrollToTop:hover svg path {
    stroke: color-mix(in srgb, var(--color-main) 10%, #fff)
}

.footer-copyright b {
    color: #9F0406;
    font-family: 'Hanken-Grotesk-B';
}

.form-group,
.form-group-select {
    position: relative;
    margin-bottom: 15px
}

.footer-main__left {
    width: 43%;
}

.footer-main__branch-name {
    cursor: pointer;
}

.footer-main__map {
    position: relative;
    height: 100%;
    min-height: 540px;
    border-radius: 30px;
    overflow: hidden;
}

.footer-main__map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

.restaurant-footer .footer-main__left {
    width: auto;
}

.restaurant-footer__primary,
.restaurant-footer__secondary,
.restaurant-footer__branches {
    display: grid;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.restaurant-footer__intro {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .75);

    line-height: 1.7;
}

.restaurant-footer__intro p:last-child {
    margin-bottom: 0;
}

.restaurant-footer__contacts,
.restaurant-footer__support-list,
.restaurant-footer__link-list {
    display: flex;
    flex-direction: column;
}

.restaurant-footer__contact-link,
.restaurant-footer__link,
.restaurant-footer__support-phone,
.restaurant-footer__branch-hotline {
    transition: color .2s ease, border-color .2s ease, opacity .2s ease;
}

.restaurant-footer__contact-link:hover,
.restaurant-footer__link:hover,
.restaurant-footer__support-phone:hover,
.restaurant-footer__branch-hotline:hover {
    color: #fff;
}


.restaurant-footer__social-list,
.restaurant-footer__payment-list {
    display: flex;
    justify-content: start;
    gap: 8px;
}

.restaurant-footer__social-link,
.restaurant-footer__payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
}

.restaurant-footer__social-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.restaurant-footer__zalo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 4px;
}

.restaurant-footer__zalo:hover {
    border-color: rgba(255, 255, 255, .4);
}

.restaurant-footer__zalo-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.restaurant-footer__zalo-title {
    display: block;
    margin-bottom: 4px;

}

.restaurant-footer__zalo-text {
    display: block;
    color: rgba(255, 255, 255, .7);

    line-height: 1.5;
}

.restaurant-footer__branch-map iframe {
    border: 0;
}

.restaurant-footer__copyright b {
    color: #fff;
}


.restaurant-footer>.wrap-content {
    position: relative;
    z-index: 1;
}


.restaurant-footer__heading {
    font-size: 16px;
    font-family: 'Hanken-Grotesk-B';
    margin-bottom: 20px;
}

.restaurant-footer__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .82);
}

.restaurant-footer__link::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f3c94d;
}

.restaurant-footer__link:hover {
    color: #f3c94d;
}

.restaurant-footer__hotline,
.restaurant-footer__zalo {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.restaurant-footer__hotline:hover,
.restaurant-footer__zalo:hover {
    border-color: #f3c94d;
    background: rgba(255, 255, 255, .16);
}

.restaurant-footer__hotline-label,
.restaurant-footer__zalo-text {
    display: block;
    color: rgba(255, 255, 255, .72);
    line-height: 1.45;
}

.restaurant-footer__hotline strong,
.restaurant-footer__zalo-title {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
}

.restaurant-footer__zalo-media {
    display: flex;
    flex: 0 0 80px;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 8px;
    border-radius: 50%;
    background: #fff;
    flex-basis: 58px;
}

.restaurant-footer__branches {
    position: relative;
    display: block;
    padding: 34px 0;
}

.restaurant-footer__branch-map {
    min-height: 450px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, .22);
}


.form-group input,
.form-group textarea {
    width: 100%;

    transition: .1s ease;
    resize: vertical;
    background: #fff !important;
    box-shadow: none !important;
    border-radius: 5px;
    border: 1px solid #cacaca
}

.form-group.novalidate input,
.form-group.novalidate textarea {
    border: 1px solid #e2e2e2 !important
}

.form-group input {
    height: 50px
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #7799d0 !important
}

.form-group label,
.form-group-select>label {
    position: absolute;
    left: 12px;
    top: 12px;

    color: #777;
    transition: .1s ease;
    pointer-events: none;
    background-color: transparent;
    margin: 0;
    line-height: 1.5
}

.form-group>span {
    position: absolute;
    right: 12px;
    top: 12px;
    transition: .1s ease;
    pointer-events: none;
    display: inline-block;
    max-width: 20px
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--main-color);
    outline: 0
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label,
.form-group-select>label {
    top: -10px;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    left: 8px;
    transform: none
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    overflow: hidden;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.custom-file-label::after {
    content: attr(title);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0
}

.modal {
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.7);
}

.modal-header {
    border-bottom: 1px solid #d1d5db;
    background: rgba(249, 250, 251, .6)
}

.modal-title {

    letter-spacing: .05em;
    color: #111827
}

.modal-btn--close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;

    color: #fff;
    background: red;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    overflow: hidden;
    border-radius: 50%
}

.invalid-feedback {
    font-size: 13px
}

.invalid-feedback svg {
    width: 20px;
}

.breadCrumbs {
    background: color-mix(in srgb, var(--color-main) 10%, #fff);
    margin-bottom: 30px
}

.breadcrumb {
    gap: 10px;
    padding: 10px 0 !important;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 15px
}

.breadcrumb li a {
    flex: 1 1 0%;
    color: #666;
    transition: .2s;
}

.breadcrumb li a:hover {
    color: var(--color-main)
}

.breadcrumb li.active a {

    color: var(--color-main)
}

.breadcrumb li svg {
    width: 7px;
    color: #666;
    margin-top: 2px
}

.box-toc {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06)
}

.box-toc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #f8fafc;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    user-select: none
}

.box-toc__header:hover {
    background: #f1f5f9
}

.box-toc__title {
    font-size: 16px;
    color: var(--color-text);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Hanken-Grotesk-B';
}

.box-toc__title i {
    font-size: 20px
}

.box-toc__body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .28s ease, opacity .2s ease
}

.box-toc--open .box-toc__body {
    max-height: 1000px;
    opacity: 1;
    border-top: 1px solid #e2e8f0
}

.box-toc__list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    transform: translateY(-6px);
    transition: transform .28s ease
}

.box-toc--open .box-toc__list {
    transform: translateY(0)
}

.box-toc__item {
    margin: 0;
    position: relative
}

.box-toc__link {
    display: block;
    padding: 8px 20px;
    color: #64748b;
    text-decoration: none;
    font-size: .95rem;
    line-height: 1.5;
    border-left: 3px solid transparent
}

.box-toc__link:hover {
    color: var(--color-main) !important;
    background: #eff6ff !important
}

.box-toc__link--active {
    color: var(--color-main);

    background: #eff6ff;
    border-left-color: var(--color-main)
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 20px;
    align-items: start;
}

.news-detail-main {
    min-width: 0;
}

.news-detail-title h1 {
    margin: 0;
    color: #333;
    font-size: 26px;
    font-family: 'Hanken-Grotesk-M';
}

.news-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 8px 0 16px;
    color: #888;

}

.news-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-detail-main .box-toc {
    margin: 0 0 18px;
    border: 0;
    border-radius: 0;
    background: #e4ffe8;
    box-shadow: none;
}

.news-detail-main .box-toc__header {
    justify-content: space-between;
    padding: 10px 16px;
    background:
        color-mix(in srgb, var(--color-main) 10%, #fff);
    border: 0;
}

.news-detail-main .box-toc__title {
    width: 100%;
    color: #111;
    font-size: 15px;
    text-transform: none;
    cursor: pointer;
}

.news-detail-main .box-toc__title i {
    order: 2;
    margin-left: auto;
    padding: 7px;
    color: #fff;
    background: #ef0000;
    font-size: 18px;
}

.news-detail-main .box-toc__body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.news-detail-main .box-toc--open .box-toc__body {
    max-height: 1000px;
    opacity: 1;
    border-top: 0;
}

.news-detail-main .box-toc__list {
    padding: 0 16px 16px 30px;
    list-style: disc;
}

.news-detail-main .box-toc__link,
.news-detail-main .box-toc__item--h2 .box-toc__link,
.news-detail-main .box-toc__item--h3 .box-toc__link,
.news-detail-main .box-toc__item--h4 .box-toc__link {
    padding: 6px 0;
    border-left: 0;
    color: #222;
    background: transparent;
    font-size: 15px;

    line-height: 1.45;
}

.news-detail-main .box-toc__link:hover,
.news-detail-main .box-toc__link--active {
    color: #238000 !important;
    background: transparent !important;
}

.news-detail-sidebar {
    display: grid;
    gap: 30px;
    position: sticky;
    top: 10px;
}

.news-side-box {
    padding: 24px 20px;
    border: 1px solid #f1f1f1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.news-side-title {
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    margin: 0 0 20px;
    color: #333;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Hanken-Grotesk-B', sans-serif;
    letter-spacing: 0.5px;
}

.news-side-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 45px;
    height: 2px;
    background: #c8960c;
}

.news-side-category {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-side-category__item {
    position: relative;
    border-bottom: 1px dashed #ececec;
}

.news-side-category__item:last-child {
    border-bottom: 0;
}

.news-side-category a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 40px;
    padding: 8px 34px 8px 0;
    color: #333;
    font-size: 15px;
    line-height: 1.35;
}

.news-side-category a:hover {
    color: #238000;
}

.news-side-toggle {
    position: absolute;
    top: 4px;
    right: 0;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 6px;
    background: #f6f6f6;
    color: #666;

    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.news-side-toggle:hover {
    background: #fce26c;
    color: #8f0305;
}

.news-side-toggle i {
    transition: transform .2s ease;
}

.news-side-category__item.is-open>.news-side-toggle i {
    transform: rotate(45deg);
}

.news-side-children {
    display: none;
    margin: 0;
    padding: 0 0 6px 14px;
    list-style: none;
}

.news-side-children .news-side-category__item {
    border-bottom: 0;
}

.news-side-children a {
    min-height: 34px;
    padding-top: 6px;
    padding-bottom: 6px;

}

.news-side-children .news-side-children {
    padding-left: 12px;
}

.news-side-children .news-side-children a {}

.news-side-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-side-item {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-side-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.news-side-photo {
    display: block;
    overflow: hidden;
    background: #f4f4f4;
    border-radius: 6px;
}

.news-side-photo img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-side-item:hover .news-side-photo img {
    transform: scale(1.08);
}

.news-side-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-side-name {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    font-family: 'Hanken-Grotesk-M', sans-serif;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-side-item:hover .news-side-name {
    color: #c8960c;
}

.news-side-date {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 12px;
    font-family: 'Roboto-R', sans-serif;
}

.news-detail-share {
    margin-top: 20px;
}


.content-main {
    line-height: 26px
}

.content-main h1 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px
}

.content-main h2 {
    margin: 20px 0;
    font-size: 19px
}

.content-main h3 {
    margin: 15px 0 20px;
    font-size: 17px
}

.content-main h4 {
    margin: 10px 0 20px;
    font-size: 15px
}

.content-main table {
    width: 100%;
    margin: 10px 0 20px;
    font-size: 13px
}

.content-main table th {
    background: #444;
    color: #fff;
    text-align: center;
    padding: 12px 7px
}

.content-main table tr td {
    padding: 10px 7px
}

.content-main tr:nth-child(odd) {
    background: #fff
}

/* .content-main ol,
.content-main ul {
    list-style-type: disc;
    margin: 10px 0
} */

.content-main ol li,
.content-main ul li {
    margin-bottom: 10px
}

.content-main a {
    color: #05f;

    display: contents
}

.content-main iframe {
    width: 100% !important;
    display: block;
    margin: 10px auto 20px
}

.content-main tr:nth-child(even) {
    background: #f4f4f4;
    background-color: #f2f2f2;
}

.content-main tr:hover {
    background-color: #ddd
}

.content-main th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: var(--color-main);
    color: #fff
}

.content-main td,
.content-main th {
    border: 1px solid #ddd;
    padding: 8px
}

.content-main figcaption {
    text-align: center
}

.content-main a img {
    max-width: 100%;
    height: auto !important
}

.content-main blockquote {
    border-left: solid 3px #ccc;
    padding-left: 20px;
    margin-left: 20px;
    font-style: italic
}

@keyframes shine {
    to {
        background-position-x: -200%
    }
}

.ggdich-box {
    position: relative;
    display: inline-block
}

.ggdich-box__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    color: inherit
}

.ggdich-box__icon {
    margin-right: 6px
}

.ggdich-box__dropdown {
    position: absolute;
    z-index: 15;
    top: 100%;
    left: 0;
    margin-top: 10px;
    min-width: 150px;
    background-color: #fff;
    padding: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05)
}

.ggdich-box__item {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #000;
    margin-bottom: 10px;
    transition: color .2s
}

.ggdich-box__item:last-child {
    margin-bottom: 0
}

.ggdich-box__item:hover {
    color: #c0392b
}

.ggdich-box__flag {
    margin-right: 7px;
    display: inline-block;
    max-width: 22px
}

.ggdich-box__flag img {
    width: 100%;
    display: block
}

.prodetail__gallery {
    position: relative
}

.prodetail__qty-btn svg {
    width: 14px;
    height: 14px
}

.prodetail__qty-input {
    width: 60px;
    height: 35px;
    border: none;
    text-align: center;
    outline: 0;
    -moz-appearance: textfield;
    border-left: solid 1px #dadada;
    border-right: solid 1px #dadada
}

.prodetail__qty-input::-webkit-inner-spin-button,
.prodetail__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.prodetail__btn-text {

    text-transform: uppercase
}

.prodetail__btn-subtext {
    display: block;


    text-transform: none
}

.prodetail__tab-header li.active:after {
    width: 100%
}

.prodetail__tab-body {
    display: none
}

.prodetail__tab-body[x-show] {
    display: block
}

.prodetail__attribute-label {
    display: block;
    font-size: clamp(14px, calc(16/1200*100vw), 16px);

    margin-bottom: 10px
}

.prodetail__attribute-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 5px 12px;
    border: 1px solid #dadada;
    background: #fff;
    color: #111;
    font-size: clamp(12px, 1.5vw, 14px);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
}

.prodetail__attribute-btn.active .prodetail__attribute-check {
    display: flex
}

.company {
    margin-top: 20px;
}

.company p {}

.contact-flex {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 20px
}

.contact-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px
}

.contact-form {
    margin-top: 20px;
    background: #f5f5f5;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px
}

.contact-input {
    margin-bottom: 10px
}

.contact-input input,
.contact-input textarea {
    border-radius: 7px;
    border: 1px solid #e1e1e1;
    text-indent: 0;
    color: #000;

    min-height: 40px
}

/* Sort */
.sort-select {
    display: flex;
    justify-content: end;
    margin: 20px 0px;
    position: relative;
}

.sort-select .click-sort {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;

    padding: 6px 10px 6px 8px;
    margin: 0px;
}

.sort-select-main {
    display: grid;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
    position: absolute;
    padding: 0 7px;
    top: 30px;
    right: 0;
    width: 160px;
    z-index: 2;
}

.sort-select-main p {
    border-bottom: 1px solid #f1f1f1;
    margin: 0px;
    order: 2;
}

.sort-select-main p:has(.check) {
    order: 1;
}

.sort a {
    color: #000;

    line-height: 17px;
    padding: 11px 3px;
    display: block;
    cursor: pointer;
}

.sort a.check i {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
    vertical-align: middle;
}

.sort a.check i::after {
    content: '';
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
    top: -4px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

.sort-select .sort-show {
    padding-right: 12px;
    position: relative;
}

/* About */
/* .wrap-about:after{
    content: '';
    position: absolute;
    width: 450px;
    background: #9F0406;
    top:0px;
    bottom: 40px;
    right: 0px;
    z-index: -1;
} */


.welcome {
    position: absolute;
    right: 20px;
    top: 10%;

    font-size: 48px;
    -webkit-text-stroke: 1px #fce26c;
    text-transform: uppercase;
    width: 70px;
    text-align: center;
}

.slider-tc .splide__track {
    overflow: visible;
}

/* === FIELDS LIST & SUBCATEGORIES STYLES === */
.fields-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.field-row {
    display: grid;
    grid-template-columns: 50% 50%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 2px 10px rgb(0 0 0 / 10%);
}

.field-row--reverse {
    direction: rtl;
}

.field-row--reverse>* {
    direction: ltr;
}

.field-row__img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.field-row__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.field-row:hover .field-row__img-wrap img {
    transform: scale(1.05);
}

.field-row__body {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.field-row--reverse .field-row__body {
    align-items: flex-end;
    text-align: right;
}

.field-row__num {
    position: relative;
    padding-left: 80px;
    font-size: 32px;

    font-family: 'Hanken-Grotesk-B', sans-serif;
    color: #333;
}

.field-row__num::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background: #c8960c;
}

.field-row--reverse .field-row__num {
    padding-left: 0;
    padding-right: 80px;
}

.field-row--reverse .field-row__num::before {
    left: auto;
    right: 0;
}

.field-row__title {
    font-family: 'Hanken-Grotesk-B', sans-serif;
    font-size: 24px;
    color: #c8960c;
    text-transform: uppercase;
    margin: 0;
}

.field-row__title a {
    color: #c8960c;
    text-decoration: none;
}

.field-row__title a:hover {
    color: #b18204;
}

.field-row__desc {
    font-family: 'Roboto-R', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.field-row__btn {
    display: inline-block;
    padding: 10px 30px;
    background: #c8960c;
    color: #fff !important;
    border-radius: 30px;
    font-family: 'Hanken-Grotesk-B', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: none;
    text-decoration: none;
}

.field-row__btn:hover {
    background: #b18204;
}

/* fields cap 2 styles */
.fields-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin: 20px 0;
    font-family: 'Roboto-R', sans-serif;
}

.fields-breadcrumb a {
    color: #c8960c;
    text-decoration: none;
}

.fields-breadcrumb a:hover {
    text-decoration: underline;
}

/* FIELDS / LĨNH VỰC FIGMA SECTION */
.info-fields {
    padding: 80px 0 !important;
    background: linear-gradient(180deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%) !important;
    position: relative;
}

.fields-container {
    max-width: 1900px;
}

.fields-title {
    font-family: 'Hanken-Grotesk-B', sans-serif;
    font-size: 40px;

    line-height: 1.2;
    text-align: center;
    background: linear-gradient(180deg, #0565bf 0%, #043775 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.fields-desc {
    font-family: 'Hanken-Grotesk-R';
    font-size: 15px;

    color: #3a3a3a;
    text-align: center;
    letter-spacing: 0.75px;
    margin-bottom: 40px;
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.fields-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.fields-ctrl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(4, 55, 117, 0.2);
    background: #ffffff;
    color: #043775;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.fields-ctrl-btn:hover {
    background: #043775;
    color: #ffffff;
    border-color: #043775;
    box-shadow: 0 6px 15px rgba(4, 55, 117, 0.2);
}

.fields-ctrl-prev {
    left: 0;
}

.fields-ctrl-next {
    right: 0;
}

.fields-splide {
    position: relative;
}

@media (max-width: 767px) {
    .fields-slider-wrapper {
        padding: 0;
    }
    .fields-ctrl-btn {
        display: none;
    }
}

.field-card {
    position: relative;
    width: 100%;
    aspect-ratio: 416 / 590;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.field-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
}

.field-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

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

.field-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.5s ease;
}

.field-card:hover .field-bg-image img {
    transform: scale(1.08);
}

.field-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 55, 117, 0) 36%, #043775 100%);
    pointer-events: none;
    z-index: 1;
}

/* Gold decorative nested icon box */
.field-icon-container {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 80px;
    height: 80px;
    padding: 3px;

    border-radius: 8px;
    z-index: 2;
}

.field-icon-container::before,
.field-icon-container::after {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(255, 240, 162, 0.6);
    border-radius: 8px;
    pointer-events: none;
    z-index: -1;
    animation: fieldRipple 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.field-icon-container::after {
    animation-delay: 1.2s;
}

@keyframes fieldRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.field-icon-middle {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 3px;

    border-radius: 6px;
}

.field-icon-middle::before,
.field-icon-middle::after {
    content: "";
    position: absolute;
    inset: -1px;

    border-radius: 6px;
    pointer-events: none;
    z-index: -1;
    animation: fieldRippleMiddle 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.field-icon-middle::after {
    animation-delay: 1.2s;
}

@keyframes fieldRippleMiddle {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

.field-icon-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(4, 55, 117, 0.15);
    border: 1px solid #fff0a2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.field-icon-inner::before,
.field-icon-inner::after {
    content: "";
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(255, 240, 162, 0.6);
    border-radius: 4px;
    pointer-events: none;
    z-index: -1;
    animation: fieldRippleInner 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.field-icon-inner::after {
    animation-delay: 1.2s;
}

@keyframes fieldRippleInner {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.field-icon-img img {
    width: 32px;
    height: 32px;
    object-fit: contain !important;
}

.field-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.field-title {
    font-family: 'Hanken-Grotesk-M', sans-serif;
    font-size: 28px;

    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 5px;
    word-break: break-word;
}

.field-desc {
    font-family: 'Hanken-Grotesk-M', sans-serif;
    font-size: 13px;

    line-height: 1.5;
    text-transform: uppercase;
    background: linear-gradient(180deg, #d6a73c 0%, #fff0a2 56%, #dcb045 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    word-break: break-word;
}

.field-btn-wrapper {
    display: block;
}

.field-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #3d3d3d;
    font-family: 'Hanken-Grotesk-B', sans-serif;

    font-size: 11px;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    height: 32px;
    padding: 0 22px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.field-card:hover .field-btn {
    background: #0565bf;
    color: #ffffff;
}


/* DT */
/* DT / PARTNERS FIGMA SECTION */
.info-dt {
    padding: 80px 0 !important;
    background: #f8f8f8 !important;
    position: relative;
}

.dt-title {
    font-family: 'Hanken-Grotesk-B', sans-serif;
    font-size: 40px;

    text-align: center;
    background: linear-gradient(180deg, #0565bf 0%, #043775 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.dt-desc {
    font-family: 'Roboto-R', sans-serif;
    font-size: 15px;

    color: #3a3a3a;
    text-align: center;
    letter-spacing: 0.75px;
    margin-bottom: 40px;
}

.dt-slider-wrapper {
    position: relative;
    padding: 0 45px;
}

.dt-splide {
    position: relative;
    border-top: 1px solid rgba(4, 55, 117, 0.1);
    border-bottom: 1px solid rgba(4, 55, 117, 0.1);
    padding: 30px 0;
    background: transparent;
}

.dt-splide .splide__slide {
    border-right: 1px dashed rgba(64, 64, 64, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-splide .splide__slide:last-child {
    border-right: none;
}

.dt-item {
    width: 170px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.dt-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.dt-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    transition: transform 0.3s ease;
}

.dt-link:hover .dt-img img {
    transform: scale(1.05);
}

.dt-ctrl-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 50px;
    background: url(../images/bg_bt.png);
    border: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
    outline: none;
    padding: 0;
}

.dt-ctrl-btn:hover {
    opacity: 0.9;
}

.dt-ctrl-prev {
    left: 0;
}

.dt-ctrl-next {
    right: 0;
}

/* QT */
/* Pro NB */


.title-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 14px 18px;
    border: 1px solid rgba(159, 4, 6, .12);
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(159, 4, 6, .06), rgba(252, 226, 108, .16), #fff);
}

.title-list h2 {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    font-size: 32px;
    color: #9F0406;
    text-transform: uppercase;

    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1.1;
}

.title-list h2:after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: #fce26c;
}

.home-product-ajax-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.pro {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@keyframes stroke {
    0% {
        stroke-dasharray: 4, 4;
        stroke-dashoffset: 600;
    }

    100% {
        stroke-dasharray: 4, 4;
        stroke-dashoffset: 0;
    }
}

@keyframes bgSwing {
    0% {
        background-position: left center;
    }

    50% {
        background-position: 10px center;
    }

    100% {
        background-position: left center;
    }
}

/* .criteria-img img{animation:mycriteria 5s infinite;}
*/


@keyframes star {
    0% {
        transform: rotate(0) scale(0)
    }

    50% {
        transform: rotate(180deg) scale(1.5)
    }

    100% {
        transform: rotate(360deg) scale(0)
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ringring {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -moz-transform: rotate(0) scale(1) skew(1deg);
        -o-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
        -o-transform: rotate(25deg) scale(1) skew(1deg);
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
        -o-transform: rotate(25deg) scale(1) skew(1deg);
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -moz-transform: rotate(0) scale(1) skew(1deg);
        -o-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -moz-transform: rotate(0) scale(1) skew(1deg);
        -o-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Slider */
/* Ngăn chặn dịch chuyển bố cục (CLS) cho các bộ slide Splide trước khi khởi tạo */
.splide.slideshow {
    aspect-ratio: 1920 / 770;
    /* 1. Giữ tỷ lệ khung hình cố định cho slideshow */
    overflow: hidden;
    position: relative;
    background: #f1f1f1;
    /* Màu nền tạm thời khi ảnh đang tải */
}

.splide.slideshow img {
    width: 100%;
    height: auto;
}

.splide:not(.is-initialized) .splide__list {
    display: flex;
    /* 2. Dàn các slide theo hàng ngang từ đầu */
    overflow: hidden;
    flex-wrap: nowrap;
}

.splide:not(.is-initialized) .splide__slide {
    flex-shrink: 0;
    width: 100%;
}

@keyframes star {
    0% {
        transform: rotate(0) scale(0)
    }

    50% {
        transform: rotate(180deg) scale(1.5)
    }

    100% {
        transform: rotate(360deg) scale(0)
    }
}

/* Blog */
.blog-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 5px #0000004a;
    margin: 2px;
}

/* Service */


.service-item {
    overflow: hidden;
}

.service-item__info {
    position: absolute;

    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-item__info h3 {
    font-size: 45px;

    color: #fff;
    margin: 0px;
}

.service-item__info:hover {
    background: #f181302e;
}

/* KH */


.home-customer-contact {
    --home-customer-slider-height: 450px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.home-customer-contact .title-main {
    margin-bottom: 18px;
}

.home-customer-contact .slider-kh {
    flex: 1;
    min-width: 0;
    height: var(--home-customer-slider-height);

}

.home-customer-contact .splide__track {
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.home-customer-contact .splide__list {
    height: 100%;
}

.home-customer-contact .splide__slide {
    height: 100%;
}

/* Social */
/* Album */


.news-detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    margin: 20px 0px;
}

.news-detail-gallery a {
    border: 1px solid #f1f1f1;
    padding: 10px;
    border-radius: 8px;
}

.album-item__name {
    font-family: 'Hanken-Grotesk-B';
    color: #333;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
}

/* Booking */


#booking .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

#booking .modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

#booking .modal-title {
    color: #9F0406;
    font-family: 'Hanken-Grotesk-B';
    text-transform: uppercase;
}

#booking .modal-body {
    padding: 20px;
}

#booking .title-dl h2 {
    display: none;
}

#booking .title-dl p {
    margin: 0 0 18px;
    color: #64748b;
    line-height: 1.6;
}

#booking .contact-input {
    margin-bottom: 12px;
}

#booking .form-control {
    min-height: 44px;
    border-color: #e1e5ea;
    border-radius: 8px;
    font-size: 14px;
}

#booking textarea.form-control {
    min-height: 90px;
}

.title-dl {
    text-align: center;
}

.title-dl h2 {
    color: #F0914B;
    text-transform: uppercase;

    font-size: 40px;
    box-shadow: none;
}

.social-item__button {
    margin: 20px auto 20px;
    padding: 10px;
    display: block;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fce26c;

    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-item__button h3 {

    font-size: 18px;

    line-height: 1.25;
    color: #9f0406;
}

.social-item__button:hover {
    background: #ffc233;
    transform: translateY(-3px);
}

.social-item__arrow {
    width: 14px;
    height: 8px;
    display: block;
    background-image: url("../images/down_link.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0px auto;
    cursor: pointer;
}

.name-link a {
    display: none;
}

.name-link a:first-child {
    display: block;
}

.social-item__button.active {
    display: block;
}


.info-news {
    padding: 40px 0;
    width: 100%;
    background: #fff8df;
}

.video-showcase {
    position: relative;
}

.video-card--featured {
    min-height: 300px;
    border-radius: 16px;
}

.video-card--small {
    border-radius: 14px;
}

.video-card__title {
    display: block;
    font-size: 18px;
    font-family: 'Hanken-Grotesk-B';
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.info-news .wrap-content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.title-main--left {
    text-align: left;
}


.title-main--left h2,
.title-main--left p {
    text-align: left;
}

.newsnb--vertical {
    flex: 1;
    min-height: 0;
    padding: 2px;
}

.newsnb--vertical .splide__track {
    height: var(--home-news-panel-height) !important;
}

.home-video-player__frame {
    position: relative;
    display: block;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
}

.home-video-player__thumb {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-video-player__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .18);
    transition: background .25s ease;
}

.home-video-player__frame:hover .home-video-player__thumb {
    transform: scale(1.05);
}

.home-video-player__frame:hover::after {
    background: rgba(0, 0, 0, .28);
}

.home-video-player__title {
    margin: 14px 0 12px;
    color: #d82023;
    font-family: 'Hanken-Grotesk-B';
    font-size: 18px;
    line-height: 1.4;
}

.home-video-select {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(109, 2, 1, .18);
    border-radius: 8px;
    color: #333;
    background: #fff;

    outline: none;
}

.home-video-select:focus {
    border-color: rgba(109, 2, 1, .42);
    box-shadow: 0 0 0 3px rgba(109, 2, 1, .08);
}


/* Splide layout */
.newsnb .splide__track {
    overflow: hidden;
}

.newsnb .splide__list {
    align-items: stretch;
}

.newsnb .splide__slide {
    height: auto;
}

.grid-news {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
    align-items: stretch;
}

.grid-news .news-item {
    min-width: 0;
}

/* News item */
.news-item {
    width: 100%;
    height: 100%;
}

.news-item>a {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    color: inherit;
    text-decoration: none;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.news-item>a:hover {
    border-color: #c8960c;
    box-shadow: 0 10px 25px rgba(200, 150, 12, 0.08);
}

.news-item__pic {
    width: 100%;
    aspect-ratio: 400 / 280;
    overflow: hidden;
    background: #fdfaf4;
}

.news-item__pic .scale-img,
.news-item__pic .img-item-news {
    width: 100%;
    height: 100%;
}

.news-item__pic img,
.news-item__pic picture,
.news-item__pic .w-100 {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.news-item__info {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
    gap: 8px;
}

.news-item__info::before {
    display: none;
}

.news-item__name {
    font-family: 'Hanken-Grotesk-B', sans-serif;
    font-size: 16px;
    line-height: 1.45;
    color: #222;
    text-transform: uppercase;
    transition: color .3s ease;
    margin: 0;
}

.news-item__desc {
    font-family: 'Roboto-R', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item__next {
    margin-top: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Hanken-Grotesk-B', sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #c8960c;
    background: transparent;
    border: none;
    padding: 0;
    min-width: 0;
    line-height: 1.5;
    text-decoration: none;
    transition: color .3s ease;
}

.news-item__next::before,
.news-item__next::after {
    display: none;
}

.news-item__next span {
    display: inline-block;
    color: #c8960c;
    font-size: 16px;
    line-height: 1;

    transition: transform 0.3s ease, color 0.3s ease;
}

.news-item>a:hover .news-item__pic img {
    transform: scale(1.05);
}

.news-item__pic img {
    transition: transform 0.5s ease;
}

.news-item>a:hover .news-item__name {
    color: #c8960c;
}

.news-item>a:hover .news-item__next {
    color: #b18204;
}

.news-item>a:hover .news-item__next span {
    color: #b18204;
    transform: rotate(90deg);
}

/* Canh khoảng cách 3 item giống Figma */
/* Tablet */
/* Mobile */
/* Menu quán */


.f-flipbook {
    display: block;
    position: relative;
    background: url(../images/bg_book.png) no-repeat center;
    background-size: 100% 100%;
    max-width: 1083px;
    padding: 4% 5% 2% 5%;
    margin: 0px auto;
}

.f-flipbook .shadow {
    box-shadow: none !important;
}

.flipbook {
    margin: auto !important;
    max-width: 100%;
    overflow: hidden;
}

.f-flipbook button {
    position: absolute;
    top: 50%;
    border: none;
    background: transparent;
    width: 55px;
    height: 35px;
    z-index: 0;
}

.f-flipbook .turn-next {
    right: -60px;

}

.f-flipbook .turn-prev {
    left: -60px;
    transform: rotate(180deg);
}

.page-wrapper {
    max-width: 420px;
    transition: all 0.5s;
}

/* .flipbook .page {
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
} */

.flipbook-viewport .page img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
}

.video-page {
    padding: 12px 0 34px;
}

.video-page .title-main {
    margin-bottom: 26px;
}

.video-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.video-list-card {
    display: block;
    height: 100%;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.video-list-card:hover {
    color: inherit;
    border-color: rgba(184, 32, 37, .24);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
}

.video-list-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #f3f3f3;
    overflow: hidden;
}

.video-list-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.video-list-card:hover .video-list-card__media img {
    transform: scale(1.055);
}

.video-list-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .46) 100%);
    pointer-events: none;
}

.video-list-card__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-list-card__play span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    background: #b82025;
    box-shadow: 0 10px 22px rgba(184, 32, 37, .34);
    transition: transform .25s ease, background .25s ease;
}

.video-list-card:hover .video-list-card__play span {
    background: #94171b;
    transform: scale(1.08);
}

.video-list-card__body {
    padding: 14px 16px 16px;
}

.video-list-card__title {
    min-height: 48px;
    margin: 0;
    color: #1f1f1f;
    font-size: 16px;

    line-height: 1.5;
}

.video-list-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #777;

}

.video-empty {
    padding: 26px 20px;
    border: 1px dashed rgba(0, 0, 0, .16);
    border-radius: 8px;
    color: #555;
    text-align: center;
    background: #fafafa;
}

.menu-page {
    padding: 16px 0 42px;
}

.menu-page__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.menu-page__sort {
    position: relative;
    flex: 0 0 auto;
}

.menu-page__sort-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(159, 4, 6, .18);
    border-radius: 8px;
    color: #2c2c2c;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
    cursor: pointer;
}

.menu-page__sort-toggle strong {
    color: #9F0406;

}

.menu-page__sort-toggle i {
    color: #9F0406;
    font-size: 11px;
}

.menu-page__sort-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    min-width: 210px;
    padding: 8px;
    border: 1px solid rgba(159, 4, 6, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
}

.menu-page__sort-panel p {
    margin: 0;
}

.menu-page__sort-panel a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 6px;
    color: #333;
    cursor: pointer;
}

.menu-page__sort-panel a:hover,
.menu-page__sort-panel a.check {
    color: #9F0406;
    background: #fff4d0;
}

.menu-page__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
}

.menu-product-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.menu-product-card:hover {
    border-color: rgba(159, 4, 6, .24);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
}

.menu-product-card__link {
    display: block;
    color: inherit;
}

.menu-product-card__link:hover {
    color: inherit;
}

.menu-product-card__photo {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f4f4f4;
    overflow: hidden;
}

.menu-product-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.menu-product-card:hover .menu-product-card__photo img {
    transform: scale(1.055);
}

.menu-product-card__body {
    padding: 14px 15px 16px;
    text-align: center;
}

.menu-product-card__name {
    margin: 0;
    font-family: 'Hanken-Grotesk-B';
    font-size: 15px;
    line-height: 1.45;
    text-transform: uppercase;
}

.menu-product-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 28px;
    margin-top: 8px;
}

.menu-product-card__price-new {
    color: #9F0406;
    font-family: 'Hanken-Grotesk-B';
    font-size: 17px;

}

.menu-product-card__price-old {
    color: #8a8a8a;

    text-decoration: line-through;
}

.menu-product-card__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    color: #fff;
    background: #069E34;
    font-size: 12px;

}

.menu-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 12px 12px;
}

.menu-product-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    min-height: 40px;
    padding: 7px 9px;
    border: 1px solid #9F0406;
    border-radius: 7px;
    font-family: 'Hanken-Grotesk-B';
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.menu-product-card__btn--cart {
    color: #9F0406;
    background: #fff;
}

.menu-product-card__btn--buy {
    color: #fff;
    background: #9F0406;
}

.menu-product-card__btn:hover {
    transform: translateY(-1px);
}

.menu-product-card__btn--cart:hover {
    color: #fff;
    background: #9F0406;
}

.menu-product-card__btn--buy:hover {
    border-color: #fce26c;
    color: #9F0406;
    background: #fce26c;
}

.menu-page__empty {
    padding: 26px 20px;
    border: 1px dashed rgba(0, 0, 0, .16);
    border-radius: 8px;
    color: #555;
    text-align: center;
    background: #fafafa;
}

.prodetail {
    display: block;
    width: 100%;
    padding: 16px 0 48px;
}

.prodetail__header {
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.prodetail__gallery,
.prodetail__info {
    min-width: 0;
}

.prodetail__thumb {
    margin-bottom: 16px;
    border: 1px solid #ececec;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .07);
}

.prodetail__thumb .splide__slide a {
    display: block;
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
}

.prodetail__thumb img,
.product_nav_placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prodetail__nav .splide__slide {
    opacity: .6;
    transition: opacity .3s;
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.prodetail__nav .splide__slide.is-active {
    opacity: 1;
    border: solid 1px var(--color-main) !important;
    overflow: hidden;
    border-color: #9F0406 !important;
}

.product_nav_placeholder {
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
}

.prodetail__info {
    position: relative;
    padding: 32px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
}

.prodetail__title {
    font-size: 32px;
    font-family: 'Hanken-Grotesk-B';
    margin-bottom: 10px;
    margin: 0 0 16px;
    color: #8f0305;
    line-height: 1.25;
}

.prodetail__option {
    margin: 0 0 16px;
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px 12px;
    flex-wrap: wrap;
    color: #666;
}

.prodetail__option li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.prodetail__option li.line {
    color: #d7d7d7;
}

.prodetail__option label {
    margin: 0;
    color: #555;
}

.prodetail__option li span {
    color: #8f0305;
}

.prodetail__price {
    margin: 16px 0 24px;
    font-size: clamp(14px, calc(15/1200*100vw), 15px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.prodetail__price-new {
    font-size: 25px;
    font-family: 'Hanken-Grotesk-B';
    color: #8f0305;
    line-height: 1;
}

.prodetail__price-old {
    text-decoration: line-through;
    color: #8a8a8a;
    margin: 0;
    font-size: 16px;
}

.prodetail__price-discount {
    background: #0c8f3b;
    color: #fff;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
}

.prodetail__price-discount::before {
    content: "";
    border-right: 6px solid #d0021b;
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translate(0, -50%);
    display: none;
}

.prodetail__desc {
    margin: 0 0 24px;
    padding: 16px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    color: #555;
    background: #fafafa;
    line-height: 1.65;
}

.prodetail__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.prodetail__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-block: clamp(7px, calc(10/1200*100vw), 10px);
    border: solid 1px #333;
    border-radius: 8px;
    font-size: clamp(14px, calc(15/1200*100vw), 15px);
    transition: all .3s;
    text-decoration: none;
    min-height: 48px;
    cursor: pointer;
    padding: 10px 16px;
    border-width: 1px;
    font-family: 'Hanken-Grotesk-B';
    box-shadow: none;
}

.prodetail__btn:hover {
    color: #fff !important;
    background: color-mix(in srgb, var(--color-main) 70%, #000) !important;
    transform: translateY(-1px);
}

.prodetail__btn svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}

.prodetail__btn--hotline {
    color: #fff !important;
    background: #8f0305;
    border-color: #8f0305;
}

.prodetail__btn--add {
    color: #8f0305;
    background: #fff;
    border-color: rgba(143, 3, 5, .28);
}

.prodetail__btn--buy {
    color: #8f0305;
    background: #fce26c;
    border-color: #fce26c;
}

.prodetail__btn--zalo {
    color: #fff !important;
    background: #0068ff;
    border-color: #0068ff;
    padding: 5px 10px;
    text-align: left;
    justify-content: center;
}

.prodetail__attribute {
    margin-bottom: 24px;
}

.prodetail__attribute-label,
.prodetail__qty-group label {
    color: #2b2b2b;
    font-family: 'Hanken-Grotesk-B';
}

.prodetail__attribute-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
}


.prodetail__attribute-btn:hover {
    border-color: #8f0305;
}

.prodetail__attribute-btn.active {
    border-color: #8f0305;
    color: #8f0305;
    background: #fff4d0;
}

.prodetail__attribute-check {
    position: absolute;
    bottom: -1px;
    right: -1px;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    color: #fff;
    background-color: var(--color-main);
    background: #8f0305;
}

.prodetail__qty-group {
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.prodetail__qty-group label {
    margin-right: 15px;
    margin: 0;
}

.prodetail__qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #dadada;
    border-radius: 8px;
    overflow: hidden;
    border-color: #e6e6e6;
}

.prodetail__qty-btn,
.prodetail__qty-input {
    width: 42px;
    height: 40px;
}

.prodetail__qty-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fafafa;
    transition: .2s;
}

.prodetail__qty-btn:hover {
    background: #fff4d0;
    color: #8f0305;
}

.prodetail__social {
    margin: 24px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #ececec;
}

.prodetail__social-title {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: #555;
}

.prodetail__tabs {
    margin-top: 0;
    padding: 24px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}

.prodetail__tab-header {
    display: flex;
    gap: 24px;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
    border-color: rgba(143, 3, 5, .16);
}

.prodetail__tab-header li {
    padding: 10px 0;
    font-size: clamp(14px, calc(18/1200*100vw), 18px);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    transition: color .3s;
    color: #444;
    font-family: 'Hanken-Grotesk-B';
}

.prodetail__tab-header li.active {
    color: #8f0305;
}

.prodetail__tab-header li:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8f0305;
    transition: width .3s;
}

.prodetail__detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
    margin-top: 32px;
}

.prodetail__content-wrap {
    position: relative;
    max-height: 360px;
    overflow: hidden;
    transition: max-height .35s ease;
}

.prodetail__content-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 96px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 84%);
    pointer-events: none;
    transition: opacity .25s ease;
}

.prodetail__content-wrap.is-expanded {
    max-height: none;
}

.prodetail__content-wrap.is-expanded::after {
    opacity: 0;
}

.prodetail__content-action {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.prodetail__content-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 132px;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(143, 3, 5, .2);
    border-radius: 999px;
    color: #8f0305;
    background: #fff4d0;
    font-family: 'Hanken-Grotesk-B';

    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.prodetail__content-toggle:hover {
    color: #fff;
    border-color: #8f0305;
    background: #8f0305;
}

.prodetail__content-toggle i {
    font-size: 11px;
    transition: transform .2s ease;
}

.prodetail__content-toggle i.is-active {
    transform: rotate(180deg);
}

.prodetail__related {
    margin-top: 40px;
}

.prodetail__hot {
    padding: 24px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}

.prodetail__hot-title {
    margin: 0 0 14px;
    color: #8f0305;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Hanken-Grotesk-B';
}

.prodetail__hot-list {
    display: grid;
    gap: 12px;
}

.prodetail-hot-slider {
    height: 478px;
}

.prodetail-hot-slider .splide__track {
    height: 100%;
}

.prodetail__hot-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    color: #222;
}

.prodetail__hot-photo {
    display: block;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 6px;
    background: #fff;
    aspect-ratio: 1;
}

.prodetail__hot-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.prodetail__hot-item:hover .prodetail__hot-photo img {
    transform: scale(1.06);
}

.prodetail__hot-info {
    display: grid;
    align-content: start;
    gap: 6px;
    min-width: 0;
}

.prodetail__hot-name {
    color: #222;


    line-height: 1.35;
}

.prodetail__hot-item:hover .prodetail__hot-name {
    color: #8f0305;
}

.prodetail__hot-price {
    color: #8f0305;


}

.partner-slider {
    margin-top: 24px;
}

/* Tags */
.info-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.info-tags a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    color: #333;
    font-size: 14px;

    line-height: 1.3;
    text-decoration: none;
    transition: all 0.25s ease;
}

.info-tags a i {
    font-size: 13px;
    color: #f24c3e;
    transition: all 0.25s ease;
}

.info-tags a:hover {
    background: #f24c3e;
    border-color: #f24c3e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(242, 76, 62, 0.22);
}

.info-tags a:hover i {
    color: #fff;
}


/* Product list page filter sidebar and layout */
.product-layout {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.left-product {
    width: 260px;
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .03);
    align-self: start;
}

.right-product {
    flex: 1 1 auto;
    min-width: 0;
}

.sidebar-filter__title {
    font-size: 18px;
    font-family: 'Hanken-Grotesk-B';

    color: #9F0406;
    border-bottom: 2px solid #9F0406;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.sidebar-filter__mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-filter__mobile-header strong {
    font-size: 18px;
    color: #333;
}

.filter-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 15px;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-group__title {
    font-size: 15px;
    font-family: 'Hanken-Grotesk-B';

    color: #333;
    margin-bottom: 12px;
}

.filter-group__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-item {
    display: flex;
    align-items: center;
}

.filter-item__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    width: 100%;
    user-select: none;
}

.filter-item__label input {
    width: 18px;
    height: 18px;
    accent-color: #9F0406;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-item__label span {
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.filter-item__label input:checked+span {
    color: #9F0406;

}

.filter-mobile-btn-wrap {
    display: none;
    margin-bottom: 20px;
}

.filter-mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #9F0406;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Hanken-Grotesk-B';

    cursor: pointer;
    box-shadow: 0 6px 16px rgba(159, 4, 6, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.filter-mobile-btn:hover {
    background: #850305;
    transform: translateY(-1px);
}


/* Search Suggest Dropdown */
.bean-header__search {
    position: relative;
    overflow: visible !important;
    /* Allow suggestions dropdown to show */
}

.bean-header__search-input {
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

.show-search {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(159, 4, 6, 0.15);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    padding: 8px 0;
    display: none;
}

.box-search {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 16px;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.25s ease;
}

.box-search:last-child {
    border-bottom: none;
}

.box-search:hover {
    background-color: #fff8f8;
}

.pic-search {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.pic-search img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-item-search {
    flex: 1 1 auto;
    min-width: 0;
}

.ds-item-search .name-product {
    margin: 0 0 4px;
    font-size: 14px;
    font-family: 'Hanken-Grotesk-B';

    line-height: 1.35;
}

.ds-item-search .name-product a {
    color: #333;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ds-item-search .name-product a:hover {
    color: #9F0406;
}

.price-product {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.price-product .price-new {
    color: #9F0406;

}

.price-product .price-old {
    color: #888;
    text-decoration: line-through;
}

.price-product .price-per {
    color: #069E34;

}

/* Clinic Footer Overrides */


.restaurant-footer__primary {
    grid-template-columns: 1fr 2fr;
    padding: 60px 0 40px;
    display: grid;
    gap: 48px;
    border-bottom: 1px solid #d82023 !important;
}

.restaurant-footer__secondary {
    grid-template-columns: 1.4fr 2fr;
    padding: 40px 0 60px;
    align-items: center;
    gap: 48px;
    display: grid;
    border-bottom: none !important;
}

.restaurant-footer__company {
    display: flex;
    flex-direction: column;
}


.restaurant-footer__heading::after {
    content: none !important;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: #f3c94d;
    display: none !important;
}

.restaurant-footer__link-list {
    gap: 12px;
    color: rgba(255, 255, 255, .75);
    display: flex;
    flex-direction: column;
    margin-bottom: 24px !important;
    padding-left: 0;
    list-style: none;
}

.restaurant-footer__link-list li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.restaurant-footer__map-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: underline !important;

}

.restaurant-footer__map-link:hover {
    color: #ffae00;
}

/* Bottom elements */


.restaurant-footer__copyright {
    padding: 0;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    border-top: none;
    margin-top: 24px;
}

.restaurant-footer__social-list {
    gap: 12px;
    display: flex;
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}

.restaurant-footer__social-link {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b10104 !important;
    font-size: 20px;
    transition: all 0.2s ease;
}

.restaurant-footer__social-link:hover {
    opacity: .82;
    transform: translateY(-2px);
    background: #ffae00;
    color: #b10104 !important;
}

/* =====================================================================
   Branch Location Banner (.info-cs)
   ===================================================================== */


.info-cs__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: end;
}

/* Responsive for .info-cs */
/* =====================================================================
   FAQ & Why Treat Parasitosis Section (.info-ts-qs)
   ===================================================================== */
/* Common Header Styles */
/* FAQ Accordion Styles */
/* Why Section (Radial/Circular Layout) */
/* Offset middle cards to make it feel radial */
/* Góc sức khỏe section */
/* Tab Buttons */


.tab-news-btn {
    font-family: 'Roboto-R', sans-serif;
    font-size: 14px;
    color: #000b29;
    background: transparent;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    height: 32px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;

}

.tab-news-btn:hover,
.tab-news-btn.active {
    background-color: rgb(239, 0, 0);
    border-color: rgb(239, 0, 0);
    color: #ffffff;
}

/* Grid Layout */
.tab-news-grid {
    display: flex;
    gap: 30px;
}

.tab-news-left {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

.tab-news-right {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

/* Main Card */
.tab-news-main-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.tab-news-main-img-wrap {
    width: 100%;
    height: 378px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
}

.tab-news-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.tab-news-main-card:hover .tab-news-main-img-wrap img {
    transform: scale(1.06);
}

.tab-news-main-content {
    display: flex;
    flex-direction: column;
}

.tab-news-date {
    font-family: 'Roboto-R', sans-serif;
    font-size: 12px;
    color: #fd5301;

    margin-bottom: 8px;
}

.tab-news-title {
    font-family: 'Hanken-Grotesk-M', sans-serif;
    font-size: 24px;
    color: #222;

    line-height: 1.3;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.tab-news-main-card:hover .tab-news-title,
.tab-news-sub-card:hover .tab-news-title {
    color: #f00401;
}

.tab-news-desc {
    font-family: 'Roboto-R', sans-serif;
    font-size: 14px;
    color: #5e5e5e;
    line-height: 1.55;
    margin: 0;
}

/* Sub Card (Right Column) */
.tab-news-static-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tab-news-sub-card {
    display: flex;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
}

.tab-news-sub-img-wrap {
    width: 210px;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.tab-news-sub-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.tab-news-sub-card:hover .tab-news-sub-img-wrap img {
    transform: scale(1.06);
}

.tab-news-sub-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tab-news-sub-content .tab-news-title {
    font-size: 18px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.tab-news-sub-content .tab-news-desc {
    line-height: 1.5;
}

/* Vertical Splide Customization */
.splide.slider-tab-news {
    height: 530px;
    overflow: hidden;
}

.splide.slider-tab-news .splide__track {
    height: 100% !important;
}

.splide.slider-tab-news .splide__list {
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

.splide.slider-tab-news .splide__slide {
    height: auto !important;
    margin-bottom: 24px;
}

/* Kiểm tra thăm khám bệnh section */
/* Video ngắn nổi bật section */
/* Video Shorts Card Layout */
/* Hover effects */
/* Adjust .home-news-video to be single-column when there is only news column */
/* ==========================================================================
   Services Section (.info-service)
   ========================================================================== */
/* Hover effects */
/* Custom Styles for Info About */
/* 1. Welcome Section */
/* 2. Middle Row Grid */
/* Left Column - Về chúng tôi */
/* Right Column - First Doctor Profile */
/* Large image overlapping the container */
/* Doctor info card with peach background */
/* 3. Bottom Carousel (Doctors Slider) */


/* ==========================================================================
   WESTLAKE HANOI PREMIUM DESIGN CUSTOM OVERRIDES
   ========================================================================== */

/* Header absolute & transparent over slider on homepage */
.bean-header {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
}

.bean-header__main {
    background: transparent !important;
    display: flex;
    align-items: center;
    padding: 15px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Header style for inner pages (when com != 'trang-chu') */
.header-wrap-in.bean-header {
    position: relative;
    background: #0b1c3f !important;
    /* Premium dark navy background matching Westlake Hanoi brand */
}

.header-wrap-in .bean-header__main {
    background: #0b1c3f !important;
    border-bottom: none;
}

/* White menu text in header */
.bean-header .menu ul li a {
    color: #ffffff !important;

    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 0px;
}

.bean-header .menu ul li a.active,
.bean-header .menu ul li:hover>a {
    color: #fff0a2 !important;
    /* Gold hover color matching Figma */
}

/* Menu desktop positioning */
.bean-header .menu_desktop {
    display: flex;
    align-items: center;
    gap: 40px;
    /* space between menu items */
    justify-content: center;
}

/* Right header actions (Search + Languages) */
.bean-header__right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 99999 !important;
}

.bean-header__search-toggle {
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.bean-header__search-toggle:hover {
    color: #fff0a2;
}

.bean-header__lang-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bean-header__lang-list a {
    display: block;
    width: 24px;
    height: 16px;
    transition: opacity 0.2s ease;
}

.bean-header__lang-list a:hover {
    opacity: 0.8;
}

.bean-header__lang-list a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* Rectangular logo image containment */
.header-logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0 !important;
}

/* Slider and text overlay styles */
.slide-wrap {
    position: relative;
    width: 100%;
}


/* ==========================================================================
   FOOTER DESIGN OVERRIDES
   ========================================================================== */
.restaurant-footer {
    padding-top: 0;
    background: #ffffff !important;
    color: #414141 !important;
    padding: 30px 0 30px 0 !important;
    border-top: 1px solid #f1f1f1;
}

.restaurant-footer a {
    color: #414141 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.restaurant-footer a:hover {
    color: #0a539e !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Column 1: Logo & Socials */
.footer-col-logo {
    align-items: center;
    text-align: center;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img img {
    max-width: 199px;
    height: auto;
}

.footer-logo-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #414141;
    margin-bottom: 25px;
    max-width: 280px;
}

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

.footer-social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.footer-social-item:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.footer-social-img img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

/* Titles */
.footer-col-title {
    font-size: 15px;
    color: #363636;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    font-family: 'Hanken-Grotesk-B', sans-serif;
}

/* Column 2: Company Info */
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    font-size: 16px;
    color: #0a539e;
    margin-top: 2px;
}

.footer-contact-text {
    font-size: 13px;
    line-height: 1.6;
    color: #414141;
}

.footer-contact-text strong {}

/* Column 3: Links */
.footer-links-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li {
    position: relative;
    padding-left: 15px;
}

.footer-links-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #363636;
    font-size: 14px;
    top: -2px;
}

.footer-links-list a {
    font-size: 14px;
    color: #363636 !important;
}

/* Column 4: Newsletter */
.footer-newsletter-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #4b4b4b;
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-input-group {
    position: relative;
    width: 100%;
}

.footer-newsletter-input {
    width: 100%;
    height: 50px;
    padding: 10px 40px 10px 15px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.footer-newsletter-input:focus {
    border-color: #0a539e;
}

.footer-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7b7b7b;
    font-size: 16px;
    pointer-events: none;
}

.footer-submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 4px;
    font-size: 13px;

    color: #1b1b1b;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(-83.3675deg, #d6a73c 14.264%, #fff0a2 50.128%, #dcb045 99.159%);
    transition: opacity 0.2s ease;
}

.footer-submit-btn:hover {
    opacity: 0.9;
}

/* Footer Bottom Copyright & Scroll Top */
.footer-bottom {
    position: relative;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e2e2;
}

.footer-copyright {
    text-align: center;
    color: #212121;
    font-size: 13px;
}

.footer-copyright strong {
    color: #0a539e;

}

.footer-scroll-top-btn {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a539e !important;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.footer-scroll-top-btn:hover {
    background: #0a539e;
    color: #ffffff !important;
    border-color: #0a539e;
}

/* Responsive */


/* ==========================================================================
   BLOG / NEWS SECTION OVERRIDES (FIGMA COMPLIANT)
   ========================================================================== */
.info-blog {
    background: linear-gradient(180deg, #0565bf 0%, #043775 100%) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.blog-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1900px;
}

/* Left Panel Info */
.blog-left-panel {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.blog-section-tag {
    font-family: 'Hanken-Grotesk-B', sans-serif;
    font-size: 35px;

    line-height: 30px;
    letter-spacing: normal;
    background: linear-gradient(-7.14841deg, rgb(214, 167, 60) 38.728%, rgb(255, 240, 162) 21.98%, rgb(220, 176, 69) 68.208%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.blog-section-title {
    font-family: 'Hanken-Grotesk-B', sans-serif;
    font-size: 58px;

    line-height: 75px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.blog-section-subtitle {
    font-family: 'Roboto-R', sans-serif;
    font-size: 30px;

    line-height: 22px;
    letter-spacing: 10.5px;
    color: #ffffff;
    margin-top: 10px;
    display: block;
}

/* Slider Custom Controls */
.blog-slider-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.blog-ctrl-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.blog-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}


/* Right Slider Panel */
.blog-right-slider {
    min-width: 0;
}

/* Blog Card Styling */
.blog-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 1px 0px rgba(143, 143, 143, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
    color: inherit !important;
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 52.63%;
    /* 200/380 ratio */
    border-radius: 5px;
    overflow: hidden;
}

.blog-card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-body {
    padding: 15px 3px 0 3px;
    /* 10px card padding + 3px body padding = 13px inset */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto-R', sans-serif;
    font-size: 13px;
    color: #131313;
    margin-bottom: 5px;
}

.blog-card-date-icon {
    font-size: 14px;
    color: #0565bf;
    display: inline-flex;
    align-items: center;
}

.blog-card-title {
    font-family: 'Hanken-Grotesk-B', sans-serif;
    font-size: 15px;
    color: #1d1d1d !important;
    line-height: 25px;
    margin: 5px 0;
}

.blog-card-desc {
    font-family: 'Roboto-R', sans-serif;
    font-size: 13px;
    color: #787878 !important;
    line-height: 25px;
    margin: 5px 0 0 0;
    text-align: justify;
}

/* Responsive */


/* ==========================================================================
   INFO ABOUT - LỜI NGÕ (WESTLAKE HANOI FIGMA NODE 24-380)
   ========================================================================== */
.info-about {
    position: relative;
    background: linear-gradient(180deg, #0565bf 0%, #043775 100%) !important;
    padding: 40px 0 80px !important;
    overflow: hidden;
}

/* Big watermark background text */
.about-bg-text {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Hanken-Grotesk-B', sans-serif;

    font-size: 140px;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 24.725%, rgba(153, 153, 153, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 4px;
}

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

/* ── Hero: Year block ── */
.about-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.about-year-block {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;

}

.about-year-block:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 1px;
    background: linear-gradient(180deg, #D6A73C 0%, #FFF0A2 56.77%, #DCB045 100%);
}

.about-year-divider {
    text-align: center;
}

.about-year-divider img {
    margin-bottom: 10px;
}

.about-year-label {
    font-family: 'Hanken-Grotesk-B', sans-serif;

    font-size: 25px;
    color: #ffffff;
    line-height: 1.2;
}

.about-year-range {
    font-family: 'Roboto-R', sans-serif;

    font-size: 14px;
    color: #ffffff;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

/* ── Content: Lời ngõ text ── */
.about-content {
    max-width: 1097px;
    margin: 0 auto 40px;
    font-family: 'Roboto-R', sans-serif;

    font-size: 16px;
    line-height: 35px;
    color: #ffffff;
    text-align: justify;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 35px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ── Info bar: Address + Hotline ── */
.about-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-top: 1px solid rgba(255, 240, 162, 0.3);
    border-bottom: 1px solid rgba(255, 240, 162, 0.3);
    padding: 12px 30px;
    margin: 0 auto 40px;
    max-width: 1188px;
}

.about-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 20px;
}

.about-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 18px;
}


.about-info-text {
    font-family: 'Roboto-R', sans-serif;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.6;
}

.about-info-label {

    margin-right: 5px;
}

.about-hotline-number {

    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-hotline-number:hover {
    color: #fff0a2 !important;
}

.about-info-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(6, 74, 147, 0) 0%, #064a93 50%, rgba(6, 74, 147, 0) 100%);
    flex-shrink: 0;
}

/* ── Stats cards grid ── */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 30px 20px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Decorative SVG bg inside card */
.about-stat-card::before {
    content: '';
    position: absolute;
    inset: -4% -7% -11% -7%;
    background: url('../images/stat_bg.svg') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    opacity: 0.5;
}

.about-stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.about-stat-digit {
    font-family: 'Roboto-B', sans-serif;
    font-size: 65px;
    line-height: 1;
    background: linear-gradient(180deg, #0565bf 0%, #043775 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-unit {
    font-family: 'Roboto-B', sans-serif;
    font-size: 30px;
    background: linear-gradient(180deg, #0565bf 0%, #043775 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-name {
    font-family: 'Hanken-Grotesk-B', sans-serif;

    font-size: 20px;
    color: #414141;
    text-transform: capitalize;
    margin-bottom: 8px;
    line-height: 1.3;
}

.about-stat-desc {
    font-family: 'Roboto-R', sans-serif;
    color: #838383;
    margin: 0;
}

/* ── Responsive ── */