.link-effect {
    position: relative;
    padding-bottom: 3px;
}

.link-effect:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: var(--transition-default);
}

.link-effect:hover:before {
    width: 100%;
}

.section-gap {
    padding: 40px 0;
}

@media (max-width: 992px) {
    .section-gap {
        padding: 25px 0;
    }

    .category-product .section-product_category {
        padding: 25px 0 !important;
    }

}

.button-theme {
    padding: 10px 20px;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    font-size: 1em;
    overflow: hidden;
    color: var(--bs-white);
    background-color: var(--primary-color);
    border: 1px solid transparent;
    outline: none;
    position: relative;
    letter-spacing: 0.3px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
    text-transform: uppercase;
}

.button-theme span {
    position: relative;
    z-index: 2;
    transition: color .3s ease;
}

.button-theme::after,
.button-theme::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #333333;
    transition: all ease .5s;
}

.button-theme:before {
    transform: rotateX(90deg)
}

.button-theme:after {
    transform: rotateY(90deg)
}

.button-theme:hover {
    color: var(--bs-white);
    border: 1px solid #333333;
}

.button-theme:hover:before {
    transform: rotateX(0);
}

.button-theme:hover:after {
    transform: rotateY(0);
}

.button-theme:hover i {
    transform: translateX(5px);
}

.button-theme:hover span {
    color: #fff;
}


.button-theme.button-theme_primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--bs-white);
    position: relative;
    border: 0;
    box-shadow: 0 10px 30px rgba(213, 210, 210, 0.19);
}


.button-theme.button-theme_primary:hover {
    background-color: var(--primary-hover);
}

.slider-button {
    background-color: var(--bs-gray-200);
    height: 38px;
    width: 38px;
    font-size: 20px;
    border: 1px solid transparent;
    transition: var(--transition-default);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: var(--bs-gray-800);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.slider-button::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: var(--transition-default);
    background-color: var(--secondary-color);

}

.slider-button:hover::after {
    transform: scale(1);
}

.slider-button:hover, .slider-button:focus {
    color: var(--bs-white) !important;
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
}

.slider-button_prev {
    left: 0;
}

.slider-button_next {
    right: 0;
}


.section-swiper:hover .slider-button_next.swiper-button-disabled,
.section-swiper:hover .slider-button_prev.swiper-button-disabled {
    opacity: 0.5 !important;
}

.section-swiper:hover .slider-button {
    opacity: 1;
}

.section-swiper:hover .slider-button_prev {
    left: -25px;
}

.section-swiper:hover .slider-button_next {
    right: -25px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--bs-gray-500);
    margin: 0 5px !important;
    opacity: 1;
    transition: var(--transition-default);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading .heading-sub {
    color: var(--primary-color);
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 6px;
}

.section-heading .heading-title {
    margin-bottom: 0;
    font-size: 2em;
    font-weight: 700;
}

.section-heading .heading-title2 {
    font-family: "Anton", sans-serif;
    font-weight: 500;
}

.section-heading .heading-description {
    font-size: 1.15em;
    line-height: 1.6;
    color: var(--bs-gray-700);
    margin-top: 20px;
}

.section-heading .heading-description p:last-child,
.section-heading .heading-description ol:last-child,
.section-heading .heading-description ul:last-child {
    margin-bottom: 0;
}

.section-heading .heading-description ol,
.section-heading .heading-description ul {
    padding-left: 0;
}

.section-heading .heading-description ol li,
.section-heading .heading-description ul li {
    list-style: none;
}

.section-heading .heading-description ol li:before,
.section-heading .heading-description ul li:before {
    display: inline-block;
    margin-right: 6px;
    font-family: "Font Awesome 5 Pro";
    color: var(--primary-color);
    content: "\f2f7";
    font-size: 1.075em;
    font-weight: 900;
}

.section-heading .heading-description ol li + li,
.section-heading .heading-description ul li + li {
    margin-top: 6px;
}

.section-heading .heading-title-2 {
    margin-bottom: 0;
    font-size: 1.8em;
    font-weight: 700;
}

.section-heading .heading-line {
    position: relative;
    padding-bottom: 7px;
}

.section-heading .heading-line::before,
.section-heading .heading-line::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    background-color: var(--bs-gray-300);
    height: 2px;
    width: 100%;
    border-radius: 30px;
}

.section-heading .heading-line::after {
    background-color: var(--primary-color);
    width: 150px;
    height: 3px;
}

.header {
    z-index: 10;
    border-bottom: 1px solid var(--bs-gray-200);
    transition: all 0.3s ease-in;
}

.header.is-scrolled {
    animation: header-scrolled 1 500ms ease backwards;
}

.header.is-scroll {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    animation: header-scroll 0.5s forwards;
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
}

@keyframes header-scroll {
    0% {
        top: -50px;
    }

    100% {
        top: 0;
    }
}


@keyframes header-scrolled {
    0% {
        transform: translateY(-100%);
        background-color: var(--bs-white);
    }
    1% {
        background-color: transparent;
    }
    100% {
        transform: translateY(0);
    }
}


.header-logo {
    width: 200px;
}


.header-items {
    height: 100%;
    position: relative;
    background-color: var(--primary-bg);
    padding: 12px 15px;
    border-radius: 5px;
    display: flex;
    color: var(--bs-white);
    line-height: 1.2;
    transition: var(--transition-default);
}

.header-item .title {
    font-size: 1.1em;
}

.header-wrap__right {
    width: 100%;
    max-width: 700px;
}

.header-search {
    width: 100%;
}

.header-search .form-control {
    font-weight: 400;
    font-size: 14px;
    padding: 5px 40px 5px 20px;
    border: 1px solid var(--bs-gray-300);
    height: 48px;
}

.header-search .header-search__icon {
    width: 90px;
    height: 42px;
    right: 3px;
    top: 3px;
    bottom: 3px;
    border-radius: 5px;
}

.header-search .search-result {
    max-height: 500px;
    border: 1px solid var(--bs-gray-200);
    box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    transform: translateY(-5px);
    z-index: 21;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-search .search-result.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-search .search-result ul > li > a {
    padding: 8px;
    border-radius: 5px;
}

.header-search .search-result ul > li:not(:last-child) {
    border-bottom: 1px solid var(--bs-gray-300);
}

.header-search .search-result ul > li:hover a {
    background-color: var(--bs-gray-100);
}

.search-result .image {
    width: 70px;
    height: 70px;
}

.search-result .title {
    font-size: 15px;
    color: var(--text-color);
}

.search-result .price-sale {
    color: var(--bs-gray-700);
}

.search-result .price {
    color: #D32F2F;
}

.hamburger-button {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
    background-color: transparent;
    border: 1px solid transparent !important;
}

.hamburger-button > span {
    background-color: var(--bs-gray-800);
    height: 2px;
    border-radius: 3px;
    display: flex;
    width: 22px;
}

.header-category__title {
    height: 48px;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: var(--bs-dark);
}

.header .header-navigation > ul {
    display: flex;
    align-items: center;
}


.header .header-navigation > ul > li > a {
    white-space: nowrap;
    color: var(--bs-white);
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);

}

.header .header-navigation > ul > li:not(:first-child)::after {
    position: absolute;
    content: '';
    top: 50%;
    height: 20px;
    width: 1px;
    transform: translateY(-50%);
    border-right: 1px solid #ffffff4f
}


.header .header-navigation > ul > li > .category-list__wrap {
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(1320px - 300px);
    background-color: var(--bs-white);
    z-index: 1;
    box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    transition: var(--transition);
    padding: 10px;
    height: 450px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-navigation > ul > li > .category-list__wrap ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


.header .header-navigation > ul > li > .category-list__wrap ul > li {
    width: 15%;
}

.header .header-navigation > ul > li .category-list__wrap ul > li > a {
    font-weight: 600;
    display: inline-block;
    color: var(--bs-gray-800);
    white-space: nowrap;
}

.header .header-navigation > ul > li .category-list__wrap ul > li > a .navigation-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-navigation > ul > li .category-list__wrap ul > li > a .navigation-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* ===== MEGA CATEGORY ===== */
.header .header-navigation > ul > li > .mega-category {
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(1320px - 300px);
    background: #fff;
    z-index: 100;
    padding: 20px;
    height: 450px;
    overflow-y: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all .25s ease;
}

.mega-category__level1 {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
}

.mega-category__col {
    width: 49%;
}

.header-mobile_header {
    display: none;
}


.mega-category__title {
    font-weight: 700;
    font-size: 1.3em;
    color: #000;
    display: block;
    margin-bottom: 12px;
}

.mega-category__title:hover {
    color: var(--secondary-hover);
}

.mega-category__title i {
    display: none;
}

.mega-category__level2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.mega-category__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #333;
    border-radius: 5px;
    border: 1px solid rgba(188, 188, 188, 0.65);
    padding: 5px;
    height: 100%;
}

.mega-category__icon {
    width: 90px;
    height: 90px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.mega-category__icon img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.mega-category__name {
    line-height: 1.4;
    font-weight: 600;
    display: inline-block;
    color: var(--bs-gray-800);
    font-size: 1.1em;
}

.mega-category__item a:hover .mega-category__name {
    color: var(--secondary-hover);
}


.header .header-overlay {
    background: rgb(0 0 0 / 91%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.close-navigation {
    background-color: transparent;
    border: 1px solid transparent !important;
    color: var(--bs-black);
    font-size: 25px;
    width: 35px;
    height: 35px;
    display: flex;
    margin: 25px 35px 10px 35px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.section-hero .swiper-pagination {
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
    z-index: 2;
    flex-direction: column;
    width: unset;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--primary-color);
}

.section-hero .swiper-pagination .swiper-pagination-bullet {
    background: transparent;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    border: 1px solid transparent;
    transition: var(--transition-default);
}


.section-hero .swiper-pagination .swiper-pagination-bullet:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-default);
    background: var(--bs-white) !important;
}

.section-hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    background: var(--primary-color) !important;
}

.hero-item .hero-item_image video,
.hero-item .hero-item_image img {
    width: 100% !important;
    height: auto !important;
    vertical-align: middle;
}


.hero-content .hero-content_title {
    color: var(--bs-white);
    font-size: 1.8em;
}

.hero-content .hero-content_desc {
    font-size: 1.2em;
    color: var(--bs-white);
    line-height: 24px;
}

.hero-content .hero-content_desc p:last-child,
.hero-content .hero-content_desc ul:last-child,
.hero-content .hero-content_desc ol:last-child {
    margin-bottom: 0;
}

.hero-content .button-theme {
    font-size: 13px;
}

.section-left_wrap .section-wrap__heading {
    border-radius: 5px 5px 0 0;
    padding: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--primary-color);
}

.section-left_wrap .section-wrap__scroll {
    height: 330px;
    overflow-y: auto;
    overflow-x: hidden;
}

.section-left_wrap .section-wrap__scroll .card-blog:not(:last-child) {
    border-bottom: 1px solid #d5e5f487;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.section-left_wrap .section-wrap__scroll .card-blog__date {
    color: #e5121b;
    text-align: center;
    background-color: #faedee;
    border-radius: 5px;
    padding: 8px 10px;
}

.section-left_wrap .section-wrap__scroll .card-blog__date .date {
    font-size: 1.2rem;
    font-weight: 600;
}

.section-left_wrap .section-wrap__scroll .card-blog__title {
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item {
    font-size: 1.075em;
    position: relative;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a {
    text-transform: capitalize;
    color: var(--bs-gray-700);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a:hover {
    color: var(--secondary-hover);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item + .breadcrumb-item {
    padding-left: 12px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-gray-700) !important;
}

.section-pagination {
    margin-top: 30px;
}

.section-pagination .pagination .page-item .page-link {
    outline: none !important;
    box-shadow: none !important;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-gray-200);
    color: var(--bs-gray-700);
    font-weight: 600;
    border: 0;
    font-size: 13px;
    transition: var(--transition);
}

.section-pagination .pagination .page-item.pageactive .page-link,
.section-pagination .pagination .page-item .page-link:hover {
    background-color: var(--secondary-color);
    color: var(--bs-white);
}

.empty-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 15px;
    font-size: 1.25em;
    color: var(--bs-gray-700);
}



footer {
    padding-top: 50px;
    background-color: #121212;
    color: var(--bs-gray-200);
    font-size: 15px;
}

.footer-logo {
    width: 200px;
}

.footer-contact .icon {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--bs-black);
}

.footer-contact .title {
    color: var(--bs-white);
    opacity: 0.85;
}

.footer-contact .text:hover {
    color: var(--bs-gray-200) !important;
}

.footer-column__title {
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-size: 1.3em;
}

.footer-text > li > a {
    color: var(--bs-white);
    transition: var(--transition);
    opacity: 0.85;
    width: max-content;
    position: relative;
    display: inline-flex;
}

.footer-text > li > a::before,
.footer-text > li > a::after {
    position: absolute;
    content: '';
    background-color: var(--bs-white);
    transition: all 300ms ease;
    opacity: 0;
}

.footer-text > li > a::before {
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: -15px;
    bottom: 0;
    top: 50%;
}

.footer-text > li > a::after {
    left: 0;
    width: 0;
    bottom: 0;
    height: 1px;
    background-color: #ffffff73;
    opacity: 1;
}

.footer-text > li > a:hover::after {
    width: 100%;
}

.footer-text > li > a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-text > li > a:hover {
    opacity: 1;
    padding-left: 10px;
}

.footer-social > a {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bs-white);
    transition: var(--transition-default);
}

.footer-social > a:hover {
    background-color: var(--secondary-hover);
    color: var(--primary-color);
}

.section-pagination__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-pagination__wrap {
    font-size: 13px;
}

.footer .footer-terms {
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(255, 255, 255, 48%);
    padding: 20px 0;
}

.footer-statistical li {
    white-space: nowrap;
}

.footer-statistical li:not(:first-child) {
    margin-left: 10px;
    padding-left: 10px;
}

.footer-statistical li:not(:first-child)::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff75;
    height: 20px;
    width: 1px;
    display: block;
}

.footer .footer-map iframe {
    height: 200px;
    width: 100% !important;
}

.section-pagination__wrap .progressbar {
    width: 200px;
}

.section-pagination__wrap .swiper-pagination-progressbar.swiper-pagination-horizontal {
    position: unset !important;
    background-color: rgba(51, 51, 51, .25);
    height: 1px;

}
.section-pagination__wrap .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: #000000;
}