@font-face {
    font-family: "Lily Script";
    src: url("../assets/fonts/lilyscript-regular.woff2") format("woff2"),
        url("../assets/fonts/lilyscript-regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

* {
    font-family: "Nunito", sans-serif;
    /* font-optical-sizing: auto; */
}

:root,
:host {
    margin-left: 0;
}

:root {
    --primary-color: #ea6b7d;
    --primary-color-dark: #ff6e83;
    --primary-light-color: #fac8cb;
    --primary-light-color-1: #fac8cb;
    --primary-light-color-2: #fee9e8;
    --tblr-primary-darken: color-mix(
        in oklab,
        var(--primary-color),
        transparent 20%
    );
    --text-color: #2c2c2c;
    --muted-color: #667189;
    --light-bg: #ffffff;
    --border-color: #d9d9d9;
    --tblr-body-color: var(--text-color);
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1250px;
    }
}

@media (min-width: 1300px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1300px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1350px;
    }
}


.text-dark {
    color: var(--text-color) !important;
}

body {
    background-color: #ffffff;
    font-feature-settings: "cv03", "cv04", "cv11";
    letter-spacing: 0.0375em;
}

.text-primary {
    color: var(--primary-color) !important;
}

.min-vh-90 {
    min-height: 50vh;
}

.dropdown-item.active, .dropdown-item:focus {
    color: var(--primary-color);
    background-color: var(--primary-light-color-2);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    /* box-shadow: 0 0 0 0.25rem rgba(255, 186, 196, 0.25); */
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* .btn .icon {
    color: var(--text-color);
} */

.lily-bg-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.lily-bg-light-primary {
    background-color: #fff1f1;
}

.btn-style-lily {
    background-color: var(--primary-light-color);
    color: var(--text-color);
}

.btn-style-lily:hover {
    background-color: var(--text-color);
    color: #fff;
}

.btn-style-lily-1 {
    background-color: var(--primary-color);
    color: #FFF;
}

.btn-style-lily-1:hover {
    background-color: var(--text-color);
    color: #fff;
}

.lily-text-light-primary {
    color: var(--primary-light-color-1);
}

.btn-bg-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
}

.btn-outline-dark:hover .icon {
    color: #FFF;
}

.lily-btn {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.lily-btn-large {
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
}

.lily-btn-dark:hover,
.lily-btn-dark:active {
    background-color: var(--primary-color);
}

.lily-btn-dark:active {
    color: #FFF !important;
}

.btn-lily-active, .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #FFF;
    background-color: var(--primary-light-color);
    box-shadow: none;
}

.btn-dark {
    background-color: var(--text-color);
}

.btn-dark:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-control {
    border-radius: 0.375rem;
    padding: 0.75rem 0.75rem;
    border: 1px solid var(--border-color);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-rounded {
    border-radius: 10rem;
}

button.input-icon-addon {
    border: none;
    background: none;
}

.c-page-title {
    font-size: 28px;
    font-weight: 600;
}

.lt-0 {
    letter-spacing: 0;
}



.form-check-input:checked~.form-check-label {
    color: var(--text-color);
}

.nav-link:focus-visible {
    box-shadow: none;
}

/* select2 */

.select2-container--bootstrap-5 .select2-dropdown, 
.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection, 
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

@media screen and (max-width: 767px) {
    .c-page-title {
        font-size: 24px;
    }
}

@media (min-width: 768px) and (max-width: 1023.99px) {

}

/* header */

#mainMenu .navbar-toggler {
    flex: 1;
    justify-content: start;
}

#mainMenu .btn-toggle {
    /* background-color: var(--text-color); */
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: none;
    border-radius: 100%;
    color: var(--text-color);
    font-size: 26px;
    padding: 0;
}

#mainMenu.stuck {
    background-color: #ffffff;
}

#mainMenu .navbar-toggler-icon {
    color: #fff;
}

.navbar-expand-md .nav-item.active:after {
    display: none;
}

#mainMenu .header-right,
#mainMenu .header-left {
    flex: 1;
    gap: 10px;
}

#mainMenu .header-right .search-header {
    margin-right: 10px;
}

#mainMenu .nav-link {
    color: var(--text-color);
    font-size: 14px;
    white-space: nowrap;
}

#mainMenu .nav-link:hover,
#mainMenu .nav-link.active,
#mainMenu .nav-link:not(.link-icon):focus {
    color: var(--primary-color-dark);
    background-color: transparent;
}

#mainMenu .nav-link i {
    font-size: 24px;
}

#mainMenu header.navbar {
    height: 70px;
}

.logo-header {
    width: 130px;
}

.header-menu {
    gap: 5px;
}

.header-menu .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}

#mainMenu .link-icon {
    /* background-color: var(--text-color); */
    border-radius: 100%;
    width: 35px;
    height: 35px;
    color: #fff;
    padding: 5px;
}

#mainMenu .link-icon img {
    width: 20px;
    height: 23px;
    /* width: 28px;
    height: 32px; */
}

#mainMenu .link-icon.account {
    padding: 8px;
}

#mainMenu .link-icon:hover {
    /* background-color: var(--primary-color); */
    color: #fff;
}

#mainMenu .dropdown-item:hover, 
#mainMenu .dropdown-item:focus, 
#mainMenu .dropdown-item:active {
    color: var(--primary-color);
    background-color: var(--primary-light-color-2);
}

#openCart .cart-counter {
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
}

.header-right .form-control {
    height: 35px;
    color: var(--text-color);
    border-color: #a7a6a6;
    background: transparent;
}

.header-right .form-control::placeholder {
    text-transform: uppercase;
    color: var(--text-color);
}

.input-icon-addon {
    color: var(--text-color);
}

.header-menu .dropdown-menu {
    min-width: 140px;
    width: 140px;
}

.header-menu .dropdown-item {
    min-width: 100%;
}

@media screen and (max-width: 767px) {
    #openCart .cart-counter {
        left: 75%;
    }
}

/* swiper */

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
    box-shadow: 0px 0px 3.08px 0px #00000040;
    border-radius: 50%;
    background-color: #ffffff;
    font-size: 14px;
    width: 40px;
    height: 40px;
    color: #00000099;
}

.swiper-btn-prev-bestseller,
.swiper-btn-next-bestseller {
    top: 33%;
    opacity: 0;
    transition: opacity 0.2s linear;
}

.slider-rsp-col-4:hover .swiper-btn-prev-bestseller,
.slider-rsp-col-4:hover .swiper-btn-next-bestseller {
    opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    opacity: 0.5;
    width: 15px;
    height: 15px;
}

.slider-banner-home .swiper-pagination {
    text-align: right;
    padding-inline: 80px;
}

@media screen and (max-width: 767px) {
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .slider-banner-home .swiper-pagination {
        text-align: center;
        padding-inline: 0;
    }

    .logo-header {
        width: 100px;
    }

    #mainMenu header.navbar {
        height: 55px;
    }

    #mainMenu .link-icon {
        padding: 0;
        justify-content: end;
    }
}

@media (min-width: 768px) and (max-width: 1023.99px) {
    #mainMenu .nav-link {
        font-size: 10px;
    }

    .navbar .navbar-nav .nav-link {
        min-height: 2rem;
        padding: .5rem;
    }

    .header-right .form-control {
        height: 25px;
        font-size: 10px;
    }

    #mainMenu .link-icon img {
        width: 17px;
        height: 20px;
    }

    #openCart .cart-counter {
        font-size: 10px;
    }
}

/* Home */

.slider-banner-home {
    width: 100%;
    height: auto;
}

.slider-banner-home .banner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-banner-home .banner-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-box-text {
    position: absolute;
    left: 5%;
    bottom: 5%;
    width: 650px;
    height: auto;
    z-index: 1;
}

.slider-banner-home .banner-title,
.slider-banner-home .banner-desc {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    text-transform: uppercase;
}

.slider-banner-home .banner-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-color);
    text-transform: uppercase;
}

.slider-banner-home .banner-desc {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0;
}

.slider-banner-home .swiper-slide-active .banner-title,
.slider-banner-home .swiper-slide-active .banner-desc {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 0.2s;
    transition: all 0.4s ease-in-out;
}

.slider-banner-home .swiper-slide-active .banner-desc {
    transition-delay: 0.4s;
}

.delivery-option {
    background-color: #fee9e8;
    border-radius: 18px;
    padding: 19px 16px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    max-width: 350px;
}
.delivery-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.custom-radio {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #f58ba5;
}

.custom-radio .dot {
    width: 16px;
    height: 16px;
    background-color: #fe8f9f;
    border-radius: 50%;
}
.delivery-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}
.delivery-desc {
    font-size: 12px;
    color: #222121;
}
.delivery-price {
    background-color: #fbcfd8;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
}

.more-description p {
    font-size: 13.5px;
    letter-spacing: 0;
}
@media screen and (max-width: 767px) {
    .banner-box-text {
        left: 50%;
        bottom: 45px;
        transform: translateX(-54%);
        width: 85%;
    }

    .slider-banner-home .banner-title {
        font-size: 24px;
    }

    .slider-banner-home .banner-desc {
        font-size: 14px;
    }
}

/* home bestseller */
.sec-bestseller {
    padding-block: 60px;
}

.sub-logo {
    width: 70px;
}

.sec-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: capitalize;
    line-height: 1.2;
}

@media (min-width: 1000px) and (max-width: 1220px) {
    .slider-banner-home .banner-title {
        font-size: 32px;
    }

    .slider-banner-home .banner-desc {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 1023.99px) {
    .slider-banner-home .banner-title {
        font-size: 28px;
    }

    .slider-banner-home .banner-desc {
        font-size: 16px;
    }

    .sub-logo {
        width: 50px;
    }

    .sec-title {
        font-size: 28px;
    }

    .btn {
        font-size: .675rem;
    }
}

/* product box */

.box {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.product-small {
    padding: 5px;
}

.product-small .box-image {
    position: relative;
    padding-top: 100%;
    height: auto;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 5px;
}

.product-small .has-back-image img {
    transition: opacity .5s;
}

.product-small .has-back-image:hover img.img-thumb {
    opacity: 0;
}

.box-image .image-cover {
    position: relative;
    padding-top: 100%;
    height: auto;
    overflow: hidden;
    display: block;
}

.product-small .box-image img,
.image-cover img {
    position: absolute;
    bottom: 0;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: 50% 50%;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
}

.product-small .box-text {
    padding-top: 1rem;
}

.product-small .title-wrapper {
    display: flex;
    /* height: 70px; */
}

.product-small .title-wrapper .t-left {
    flex: auto;
}

.product-small .product-title {
    display: -webkit-box;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    line-height: 24px;
    letter-spacing: -0.005em;
    color: var(--text-color);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    line-clamp: 2;
    /* height: 45px; */
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-small .product-title:hover {
    color: var(--primary-color);
}

.product-small .title-wrapper .t-right {
    width: 40px;
}

.product-small .short-desc {
    font-size: 13px;
    color: #747474;
    display: -webkit-box;
    text-align: left;
    line-height: 24px;
    letter-spacing: -0.005em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    line-clamp: 1;
}

.product-small .group-add-to-cart {
    position: absolute;
    top: 10px;
    right: 10px;
}

.product-small .add-to-cart {
    width: 40px;
    height: 40px;
    font-size: 24px;
}

.product-small .add-to-cart img {
    width: 20px;
    height: 23px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.product-small .add-to-cart:hover img {
    filter: brightness(30);
}

.product-small .add-to-cart:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.product-small .price-wrapper {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount-percent {
    background-color: var(--primary-color);
    padding: 3px 10px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.product-small .price-wrapper {
    font-size: 16px;
}

.product-small .price-current {
    color: var(--primary-color);
    font-weight: 700;
}

.product-main .price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.product-small .price-wrapper .price del {
    font-size: 14px;
}

.swatches-loop {
    position: relative;
    margin-top: 5px;
}

.swatches-loop > .swiper {
    width: calc(100% - 40px);
    margin: 0 auto;
}
.swatches-loop .swiper-button-prev,
.swatches-loop .swiper-button-next {
    background-color: transparent;
    box-shadow: unset;
}

.swatches-loop .swiper-button-prev {
    left: -15px;
}

.swatches-loop .swiper-button-next {
    right: -15px;
}

.swatches-loop .swiper-button-next:after,
.swatches-loop .swiper-button-prev:after {
    color: var(--primary-color);
}

.swatches-loop
    .form-imagecheck-input[type="radio"]
    ~ .form-imagecheck-figure:before {
    visibility: hidden;
    top: 0;
    left: 0;
}

.swatches-loop .form-imagecheck-figure {
    border-radius: 100%;
    padding: 0px;
    overflow: hidden;
    border-width: 0;
}

.swatches-loop .form-imagecheck-input:checked ~ .form-imagecheck-figure {
    border-color: var(--primary-color);
}
.swatches-loop .form-imagecheck-input:focus ~ .form-imagecheck-figure {
    box-shadow: none;
}

.form-imagecheck-image {
    opacity: 1 !important;
}

.form-imagecheck-input:checked~.form-imagecheck-figure::after , .form-imagecheck-input:focus~.form-imagecheck-figure::after , .form-imagecheck:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    border: 2px solid #ffffffe7;
    border-radius: 100%;
}

@media screen and (max-width: 767px) {
    .discount-percent {
        padding: 2px 4px;
        font-size: 12px;
    }
    .product-small .add-to-cart {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    .product-small .add-to-cart img {
        width: 17px;
        height: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023.99px) {
    .product-small .product-title {
        font-size: 16px;
    }
}

.sec-intro {
    padding-block: 90px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sec-intro .content {
    color: var(--text-color);
    font-size: 17px;
    font-weight: 600;
}

.sec-pCat {
    padding-block: 60px;
    overflow: hidden;
}

.text-title-pcat {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.2;
}

.btn-more-pcat {
    position: absolute;
    bottom: 35px;
    left: 200px;
}

.pcat-r .btn-more-pcat {
    left: -130px;
}


.home-shop-by-pcat {
    margin-bottom: 30px !important;
}

.home-shop-by-pcat.center {
    margin: 0 auto;
}

.home-shop-by-pcat.right {
    margin-left: auto;
}

.home-shop-by-link {
    display: block;
    width: 100%;
    height: 100%;
}

.home-shop-by-link .box-image {
    padding-bottom: 133.19805%;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}

.home-shop-by-link .box-image img {
    position: absolute;
    bottom: 0;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: 50% 50%;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
}

.home-shop-by-title {
    font-size: 48px;
    color: var(--primary-color);
    font-family: "Lily Script";
    margin-top: -24px;
    z-index: 1;
    position: relative;
    padding-inline: 20px;
}

.home-shop-by-link:hover {
    text-decoration: none;
}

@media screen and (max-width: 767px) {

    .text-title-pcat {
        font-size: 18px;
        margin-bottom: 10px !important;
    }

    .btn-more-pcat {
        position: relative;
        bottom: unset;
        left: unset;
    }

    .pcat-r .btn-more-pcat {
        left: unset;
    }
}

@media (min-width: 768px) and (max-width: 1023.99px) {
    .text-title-pcat {
        font-size: 58px;
    }
}

.sec-header {
    margin-bottom: 20px;
}

/* paginate */

.paginate-custom .nav {
    margin-top: 60px;
}

.paginate-custom .page-link {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
}

.paginate-custom .page-link:focus {
    box-shadow: none;
}

.paginate-custom .page-item:not(.active) .page-link {
    border: 1px solid rgb(168 168 168 / 42%);
}

.paginate-custom .page-item.active .page-link,
.paginate-custom .page-item .page-link:hover {
    background-color: var(--primary-color);
    color: #FFF;
    border-color: var(--primary-color);
}

.paginate-custom .page-item.disabled {
    opacity: 0.7;
}

.btn-add-cart {
    padding: 4px;
    border-radius: 99px;
}

.btn-add-cart span {
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.btn:active {
    background-color: var(--primary-light-color) !important;
    border-color: transparent !important;
}

.btn-add-cart:hover span {
    color: #fff;
}

.btn-add-cart:hover img {
    filter: brightness(30);
}

.btn-buy-now {
    padding: 4px;
    border-radius: 99px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}

.pVariant {
    font-weight: 700;
    font-size: 19px;
}
.selected-color {
    font-size: 19px;
}



@media only screen and (min-width: 1441px) {
}

@media only screen and (min-width: 1025px) {
    .fix-text-uppercase {
        padding-top: 2px;
        margin-bottom: -1px;
    }
}

@media screen and (min-width: 768px) {
    .home-shop-by-pcat {
        max-width: 25rem;
        position: relative;
    }

    .overlay-mobile {
        display: none;
    }

    .swiper.has-overlay:after,
    .swiper.has-overlay:before {
        content: "";
        position: absolute;
        top: -0.125rem;
        height: calc(100% + 4px);
        width: 10.34722%;
        z-index: 2;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translateZ(0);
        display: none;
    }

    /* .swiper.has-overlay:before {
        left: -0.125rem;
        background: -webkit-gradient(
            linear,
            right top,
            left top,
            color-stop(15%, rgba(253, 246, 240, 0)),
            color-stop(85%, #fdf6f0)
        );
        background: linear-gradient(-90deg, #fdf6f000 15%, #fdf6f0 85%);
    } */

    /* .swiper.has-overlay:after {
        right: -0.125rem;
        background: -webkit-gradient(
            linear,
            left top,
            right top,
            color-stop(15%, rgba(253, 246, 240, 0)),
            color-stop(85%, #fdf6f0)
        );
        background: linear-gradient(90deg, #fdf6f000 15%, #fdf6f0 85%);
    } */
}

.swatches-thumbs {
    width: 10.333333%;
    flex: 0 0 auto;
}

@media screen and (max-width: 767px) {
    .sec-title {
        font-size: 20px;
    }

    .fix-text-uppercase {
        margin-bottom: -1px;
    }

    .slider-banner-home {
        height: auto;
        min-height: 50vh;
        margin-bottom: 16px;
        max-height: 85vh;
    }

    .product-small .product-title {
        font-size: 15px;
        line-height: 18px;
    }

    .header-left {
        position: absolute;
        left: 0;
        top: 0;
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .header-left.show {
        transform: translateX(0);
    }

    .overlay-mobile {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 99;
        background-color: #000000b8;
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s;
    }

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

    #mainMenu .header-menu .nav-link {
        justify-content: start;
        padding-inline: 16px;
    }

    .header-menu .dropdown-menu {
        padding: 0 20px;
        background: 0 0;
        position: static;
        box-shadow: none;
        border: none;
        margin: 0;
        width: 100%;
    }

    .header-menu .dropdown-item {
        font-size: 16px;
    }

    .header-left .menbership {
        border-bottom: 10px solid #f9f9f9;
    }

    .sec-bestseller,
    .sec-pCat {
        padding-block: 20px;
    }

    .sub-logo {
        width: 40px;
    }

    .sec-intro {
        padding-block: 40px;
    }

    .sec-intro .content {
        font-size: 16px;
        padding: 0 10px;
    }

    .white-space-nowrap-mb {
        white-space: nowrap;
    }

    .product-details {
        padding: 0px !important;
    }

    .col-small-2 {
        width: 11.333333%;
    }

    .btn-add-cart span {
        font-size: 13px;
    }

    .btn-add-cart {
        padding: 1px;
    }

    .btn-buy-now {
        padding: 1px;
        font-size: 13px;
    }

    .action-buttons {
        margin-top: 10px !important;
    }

    .lily-btn-large {
        font-size: 20px;
    }


    .lily-btn {
        font-size: 12px;
        line-height: 24px;
    }

    .btn {
        font-size: 12px;
    }
}

/* footer */

.footer {
    padding: 2rem 0;
    background-color: #ffffff;
    color: #131313;
    border-top: 1px solid #e0e0e0;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
}

.family-site-dropdown {
    margin-bottom: 15px;
}

.col-footer .btn-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 200px;
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.col-footer .btn-dropdown:hover {
    background-color: #f1f1f1;
}

.col-footer .btn-dropdown svg {
    width: 16px;
    height: 16px;
    color: #666;
}

.col-footer .dropdown-menu {
    width: 100%;
    max-width: 200px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.col-footer .dropdown-item {
    font-size: 0.85rem;
    color: #131313;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

.col-footer .dropdown-item:hover {
    opacity: 0.8;
    color: #131313;
}

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

.social-icons a {
    color: #444;
    transition: color 0.3s ease;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-content p,
.footer a {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
    word-break: break-word;
    white-space: normal;
}

.footer a.item-link:hover {
    color: var(--primary-color);
}

.list-none {
    list-style: none;
}

/* .text-decoration-none.text-muted {
  color: #666;
} */

.text-decoration-none.text-muted:hover {
    color: #ff4d4f;
}

.partnership-section .fw-bold {
    color: #333;
    font-weight: 600;
}

/* nav tab scroll */

.scrollable-tabs-container .nav-tabs {
    border: none;
}

.scrollable-tabs-container .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    background-color: transparent;
    padding: 0 0.25rem;
    min-width: max-content;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}

.scrollable-tabs-container .nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom: 2px solid #ddd;
}

.scrollable-tabs-container .nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.scrollable-tabs-container .nav-tabs .nav-link.active:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.scrollable-tabs-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    display: flex;
    justify-content: center;
}

.scrollable-tabs-container {
    scrollbar-width: 0;
}

.scrollable-tabs-container::-webkit-scrollbar {
    display: none;
}

.scrollable-tabs-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.scrollable-tabs-container::-webkit-scrollbar-track {
    background: transparent;
}

.scrollable-tabs-container .nav-tabs {
    overflow-x: auto !important;
    scrollbar-width: none !important;
}
.scrollable-tabs-container .nav-tabs::-webkit-scrollbar {
    display: none !important;
}

.scrollable-tabs-container .nav-item {
    display: inline-block;
    padding-inline: 12px;
}

.logobtc {
    width: 200px;
}

@media (max-width: 767px) {
    .nav-tabs {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        white-space: nowrap;
        padding: 0.5em;
        -webkit-overflow-scrolling: touch;
    }

    .nav-tabs .nav-item {
        flex: 0 0 auto;
        margin-right: 5px;
    }

    .nav-tabs .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .scrollable-tabs-container .nav-tabs .nav-link {
        font-size: 16px;
    }

    .scrollable-tabs-container .nav-item {
        padding-inline: 10px;
    }
}

@media (max-width: 576px) {
    .nav-tabs {
        padding: 0.3em;
    }

    .nav-tabs .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 992px) {
    .col-footer {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }

    .col-footer .btn-dropdown {
        max-width: 180px;
        font-size: 0.85rem;
    }

    .col-footer .dropdown-menu {
        max-width: 180px;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-content p {
        font-size: 0.85rem;
    }

    .social-icons {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .col-footer {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    .col-footer .dropdown {
        max-width: 80%;
    }
    .col-footer .btn-dropdown {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .brand-logo {
        font-size: 1.3rem;
    }

    .footer-title {
        font-size: 0.9rem;
    }

    .footer-content p {
        font-size: 0.8rem;
    }

    .social-icons {
        gap: 15px;
    }

    .footer {
        padding: 1.5rem 0;
    }
}

@media (min-width: 768px) and (max-width: 1023.99px) {
    .footer-title {
        font-size: .675rem;
        margin-bottom: 10px;
    }

    .copyright {
        font-size: .575rem;
    }

    .footer-content p, .footer a {
        font-size: 0.6rem;
    }

    .social-icons a {
        min-width: 25px;
        min-height: 25px;
        height: 25px;
        padding: .275rem 10px !important;
    }

    .social-icons .icon {
        font-size: 16px;
        line-height: 20px;
    }

    .logobtc {
        width: 150px;
    }
}

/* product-detail */
.section-product-showcase {
    padding: 0;
    background-color: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 30px;
    max-width: 1300px;
    border: none;
}

.product-main {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
}

.product-detail-image {
    display: flex;
}

.my-f-carousel {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.my-f-carousel {
    height: 615px;
    overflow-y: auto;
    scrollbar-width: none;
}

.my-f-carousel::-webkit-scrollbar {
    display: none;
    width: 0;
}

.f-carousel-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-carousel {
    max-width: 650px;
    margin-left: 20px;
}

.f-carousel-thumbs {
    margin: 10px 0;
    width: 110px;
    height: 110px;
}
/* Mặc định tất cả thumbnail đều mờ */

/* Khi thumbnail được chọn (active), hiển thị rõ */
/* CSS cho hiệu ứng thumbnail */
.f-carousel__thumb {
    transition: all 0.3s ease;
    opacity: 0.6;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
}

.f-carousel__thumb img {
    transition: all 0.3s ease;
}

.f-carousel__thumb.is-active {
    opacity: 1;
    border: 2px solid var(--primary-light-color);
}

.f-carousel__thumb:not(.is-active) {
    opacity: 0.6;
}

.f-carousel-main-image {
    text-align: center;
    width: auto;
    height: 620px;
}

.f-carousel-main-image img {
    height: 620px;
    object-fit: cover;
    padding: 5px;
}

.product-details {
    flex: 0.85;
    padding-inline: 20px;
}

.product-main .product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}
.product-details .product-price {
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-price .original-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .discount-price {
    font-weight: 700;
    color: var(--primary-color);
}

.product-price.discount .original-price, 
.has-discount.original-price {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: line-through;
    font-size: 24px;
}

.discount-badge {
    background-color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 0px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.selector-label {
    margin: 15px 0 8px;
    font-weight: 500;
    color: var(--text-color);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.custom-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link.active {
    border-color: var(--primary-light-color);
    color: var(--text-color);
    background-color: #f8f9fa;
    border-radius: 5px 5px 0 0;
}

.wrap-input-qty, .cart-input-qty {
    border: 1px solid #6b7280;
    border-radius: 999px;
    padding: 0px 2px;
    width: fit-content;
    max-width: 140px;
}

.wrap-input-qty .btn, .cart-input-qty .btn {
    border: none;
    background: transparent;
    font-size: 16px;
    line-height: 1;
    padding: 0 4px;
    box-shadow: none;
    color: var(--text-color) !important;
}

.wrap-input-qty .btn:focus, .cart-input-qty .btn:focus {
    box-shadow: none;
}

.wrap-input-qty .btn:active, .cart-input-qty .btn:active {
    background-color: transparent !important;
}

.wrap-input-qty input[type="number"]::-webkit-outer-spin-button,
.wrap-input-qty input[type="number"]::-webkit-inner-spin-button,
.cart-input-qty input[type="number"]::-webkit-outer-spin-button, 
.cart-input-qty input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wrap-input-qty input, .cart-input-qty input {
    height: 38px;
    width: 28px;
    font-size: 16px;
    line-height: 1.2;
    padding: 0;
    border: none;
    box-shadow: none;
    text-align: center;
}

.wrap-input-qty input:focus, .cart-input-qty input:focus {
    outline: none;
    box-shadow: none;
}

.offcanvas-body-price-quantity .cart-input-qty input {
    height: 28px;
}

.offcanvas-body-price-quantity .cart-input-qty {
    height: 30px;
}

.offcanvas-body-price-quantity .cart-input-qty .btn {
    min-height: 30px;
}

@media (min-width: 990px) and (max-width: 1220px) {
    .product-main .product-title {
        font-size: 20px;
    }

    .discount-badge {
        font-size: 14px;
    }

    .product-price.discount .original-price, .has-discount.original-price {
        font-size: 20px;
    }

    .product-main .discount-price, .product-main .product-price:not(.discount) .original-price:not(.has-discount) {
        font-size: 26px;
    }

    .pVariant, .selected-color {
        font-size: 16px;
    }
}

/* navbar của section 2  */
.card-navigation {
    background: transparent;
    border-radius: 0;
}

/* css review */
.review-card {
    border: none;
}

.star-filled {
    color: #ffd700;
}

.star-empty {
    color: var(--light-bg);
}

.review-progress {
    height: 8px;
}

.review-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.card-review-section {
    border: none;
}

/* Tablet và Desktop trở lên: từ 768px trở lên */
@media (min-width: 768px) {
    .product-main {
        flex-direction: row;
        padding: 0;
    }
}

/* reposive for mobile */
@media (max-width: 768px) {
    .product-main {
        padding: 0;
    }

    .product-main {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .product-detail-image {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
        width: 100%;
    }

    .my-f-carousel {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        width: 100%;
    }

    .my-f-carousel img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #eee;
        cursor: pointer;
        transition: border-color 0.3s;
    }

    .f-carousel-main-image {
        width: 100%;
        height: 450px;
        border-radius: 8px;
        overflow: hidden;
    }

    .f-carousel-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        padding: 0;
    }

    .product-details {
        width: 100%;
    }

    .product-title {
        font-size: 22px;
        font-weight: bold;
        /* margin-bottom: 8px; */
    }

    .my-f-carousel {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        flex-direction: row;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }

    .product-carousel {
        max-width: 650px;
        margin-left: 0;
    }

    .my-f-carousel::-webkit-scrollbar {
        display: none;
    }

    /* scroll ngang for card-header-tabs-detail */
    .card-header-tabs-detail {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .card-header-tabs-detail::-webkit-scrollbar {
        display: none;
    }

    .card-header-tabs-detail .nav-item {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .my-f-carousel {
        height: auto;
    }

    .my-f-carousel {
        width: 400px;
        overflow-x: auto;
    }

    .f-carousel-main {
        overflow-x: auto;
    }

    .f-carousel-main::-webkit-scrollbar {
        display: none;
    }

    .f-carousel-thumbs img {
        width: 50px;
        height: 50px;
    }
}

/* Reponsive cho ipad mini */
/* CSS dành cho iPad Mini hoặc tablet trong khoảng 768px đến 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .product-detail-image {
        display: flex;
        flex-direction: column-reverse;
        width: 500px;
    }

    .my-f-carousel {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        width: 510px;
        overflow-x: auto;
    }

    .my-f-carousel img {
        flex: 0 0 auto;
        min-width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #eee;
    }
    .my-f-carousel::-webkit-scrollbar {
        display: none;
    }

    .my-f-carousel {
        height: auto;
    }
    .product-detail-image {
        width: 600px;
    }

    .my-f-carousel {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        width: 510px;
        overflow-x: auto;
    }

    .my-f-carousel img {
        flex: 0 0 auto;
        min-width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #eee;
    }

    .f-carousel-main {
        width: 450px;
        margin: 0 30px;
        overflow-x: auto;
    }

    .my-f-carousel::-webkit-scrollbar {
        display: none;
    }
}

/* Reponsive cho iapd air */
@media only screen and (min-device-width: 800px) and (max-device-width: 850px) {
    .product-detail-image {
        display: flex;
        flex-direction: column-reverse;
        width: 500px;
    }

    .my-f-carousel {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        width: 510px;
        overflow-x: auto;
    }

    .my-f-carousel img {
        flex: 0 0 auto;
        min-width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #eee;
    }

    .f-carousel-main {
        width: 450px;
        margin: 0 30px;
        overflow-x: auto;
    }

    .f-carousel-main::-webkit-scrollbar {
        display: none;
    }

    .my-f-carousel {
        height: auto;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) {
    .product-detail-image {
        display: flex;
        flex-direction: column-reverse;
        width: 500px;
    }

    .my-f-carousel {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        width: 510px;
        overflow-x: auto;
    }

    .my-f-carousel img {
        flex: 0 0 auto;
        min-width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid #eee;
    }

    .f-carousel-main {
        width: 450px;
        margin: 0 30px;
        overflow-x: auto;
    }

    .f-carousel-main::-webkit-scrollbar {
        display: none;
    }

    .my-f-carousel {
        height: auto;
    }
}

/* cart */

.offcanvas-main-cart {
    width: 480px !important;
    height: auto;
}

.offcanvas-body {
    padding: 5px 20px;
}

.offcanvas-body_item::-webkit-scrollbar {
    display: none;
}

.offcanvas-body-btn-close {
    margin-top: 1rem !important;
}

.offcanvas-imgage {
    width: 150px;
    height: auto;
    object-fit: cover;
}

.offcanvas-imgage img {
    border-radius: 5px;
}

.cart-footer-canvas-ads {
    width: 100%;
    height: 240px;
    margin-top: 20px;
    padding: 0;
    overflow: hidden;
    /* padding-top: 20px; */
}

.offcanvas-body-price-quantity {
    line-height: 30px;
}

/* input number */
.offcanvas-price-quantity_input {
    display: flex;
    align-items: center;
    width: 100px;
    height: 30px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

/* .offcanvas-quantity_input_btn {
    width: 32px;
    height: 32px;
    background-color: #f8f9fa;
    border: none;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s;
}

.offcanvas-quantity_input_btn:hover {
    background-color: #ffbac4;
}

.offcanvas-quantity_input_btn:active {
    background-color: #ffbac4;
} */

.promotion-banner-offcanvas {
    display: flex;
    justify-content: space-between;
    text-align: center;
    background: #ffbac4;
    color: #fff;
    margin-top: 10px;
}

.promotion-banner-offcanvas_smallimg {
    width: 20px;
    height: 30px;
}

.gift-text {
    margin: auto 0;
    text-align: start;
}

.cart-footer-canvas-ads img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% -50%;
}

.cart-footer {
    /* background: #333333; */

    /* display: flex;
    justify-content: space-evenly;
    flex-direction: row; */
    /* margin-bottom: 20px; */

    padding: 50px 40px 40px;
}

.minus-mt-1 {
    margin-top: -1px;
}

.cart-footer span {
    color: var(--text-color);
}

.btn-lily-checkout {
    /* padding: 20px; */
    margin: auto;
    width: 200px;
    height: 50px;
    padding: 10px;
    padding-top: 12px;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0;
    font-weight: 700;
    background-color: var(--text-color);
    color: #fff;
    width: 100%;
}

.btn-lily-checkout.outline {
    background-color: #fee9e8;
    color: var(--text-color);
    border: none;
}

.btn-lily-checkout.outline:hover {
    background-color: var(--text-color);
    color: #fff;
}

.cart-footer_total {
    flex: 1;
    display: flex;
    /* flex-direction: column; */
    color: #ffffff;
    margin: auto;
    align-items: start;
    justify-content: space-between;
    /* margin-left: -20px; */
    font-weight: 700;
    border-top: 1px solid #a69e9e;
    padding-top: 20px;
    padding-bottom: 20px;
}

.cart-footer_total span,
.fs-30 {
    font-size: 22px !important;
}

.offcanvas-header {
    background: #fee9e8;
    border-bottom: none;
}

.offcanvas-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.offcanvas-title .cart-icon {
    margin-top: -7px;
}

.offcanvas-title span {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 28px;
}

.fw-700 {
    font-weight: 700 !important;
}

.cart-footer_btn {
    margin-right: 20px;
}

.btn-lily-checkout:hover,
.btn-continute-shop:hover {
    color: #fff;
}

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

.card-show-product-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
}



@media only screen and (max-width: 767px) {

    .offcanvas-title span {
        font-size: 18px;
    }
    
    .btn-lily-checkout {
        font-size: 20px;
    }

    .offcanvas-body {
        padding: 10px;
        padding-top: 0;
    }

    .cart-footer {
        padding: 30px 20px;
    }
    .promotion-banner-offcanvas_smallimg {
        width: 20px;
        height: auto;
    }

    .cart-footer-canvas-ads {
        width: 100%;
        height: 200px;
    }

    .cart-footer-canvas-ads img {
        object-position: 50% 0%;
    }
    .cart-footer_total .h1,
    .cart-footer_total .total-amount,
    .cart-footer_total span {
        font-size: 20px !important;
        margin-bottom: 0 !important;
    }

    .fs-sm-20 {
        font-size: 20px !important;
    }

    .order-total-and-btn {
        margin-top: 0 !important;
        margin-bottom: 20px;
    }

    .cart-footer .p-5 {
        padding: 1.5rem !important;
    }
    .cart-footer .pt-0 {
        padding-top: 0 !important;
    }
}

/* searchbar header */

.searchBar-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    margin-top: 5px;

    /* Flip animation setup */
    transform-origin: top center;
    transform: perspective(1000px) rotateX(-90deg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.searchBar-dropdown.show {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
    visibility: visible;
    width: 82.5rem;
    margin-right: -4px;
}

.searchBar-dropdown .search-form {
    border: none;
    padding: 1.5rem;
}

.searchBar-dropdown .search-form input:focus-visible {
    outline: 2px solid var(--primary-light-color);
    background: transparent;
}

.searchBar-dropdown .search-input {
    border: none;
    /* Bỏ border */
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.searchBar-dropdown .search-input:focus {
    background: var(--light-bg);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.searchBar-dropdown .search-close {
    position: absolute;
    top: 32px;
    right: 35px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.searchBar-dropdown .search-close:hover {
    background: transparent;
    color: #374151;
}

/* float btn */

.contact-button {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
}

.btn-contact-list {
    height: 60px;
    width: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: block;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-contact-list i {
    font-size: 32px;
}

.btn-contact-lists {
    position: absolute;
    width: 100%;
    bottom: 120%;
    text-align: center;
}

.btn-contact-lists a {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    margin: 10px auto 0;
    line-height: 1.15;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    position: relative;
    box-shadow: 0 0 5px 1px rgba(51, 51, 51, 0.3);
    background-color: var(--primary-color);
}
.phone-vr-img-circle img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.btn-contact-lists a:hover {
    transform: scale(1.05);
}

.btn-contact-lists a:nth-child(1) {
    transition: opacity 0.2s ease-in-out 0.35s, transform 0.15s ease-in-out;
}
.btn-contact-lists a:nth-child(2) {
    transition: opacity 0.2s ease-in-out 0.3s, transform 0.15s ease-in-out;
}
.btn-contact-lists a:nth-child(3) {
    transition: opacity 0.2s ease-in-out 0.25s, transform 0.15s ease-in-out;
}

.btn-contact-lists a:nth-child(4) {
    transition: opacity 0.2s ease-in-out 0.2s, transform 0.15s ease-in-out;
}

.contact-button a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.adminToggle {
    -webkit-appearance: none;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    z-index: 2;
    transition: box-shadow 0.2s ease-in-out;
    box-shadow: 0 3px 5px 1px rgba(51, 51, 51, 0.3);
}

.adminToggle:hover {
    box-shadow: 0 3px 6px 2px rgba(51, 51, 51, 0.3);
}

.adminToggle:checked ~ .btn-contact-lists a {
    opacity: 1;
    visibility: visible;
}

/* toast */

.jq-toast-single {
    font-weight: 600;
    font-family: "Nunito", sans-serif;
}

.jq-toast-single h2 {
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: "Nunito", sans-serif;
}

.jq-toast-loader {
    height: 2px;
}

/* Mobile phones */
@media (min-width: 767px) {
    .text-mb-nowrap {
        white-space: nowrap !important;
    }
}

@media (max-width: 767.98px) {
    .searchBar-dropdown.show {
        width: 350px;
        /* margin-right: -20px; */
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023.99px) {
    .searchBar-dropdown.show {
        width: 47rem;
        margin-right: -7px;
    }
}

/* iPad Air và tablets lớn */
@media (min-width: 820px) and (max-width: 1023.99px) {
    .searchBar-dropdown.show {
        width: 52rem;
        margin-right: -31px;
    }
}

/* Desktop nhỏ */
@media (min-width: 1024px) and (max-width: 1366px) {
    .searchBar-dropdown.show {
        width: 61.375rem;
        margin-right: -4px;
    }
}
