
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/*** Modal layout shift fix — keep page centered when modals open ***/
html {
    scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
    html {
        overflow-y: scroll;
    }
}

body.modal-open {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

body.modal-open .fixed-top,
body.modal-open .sticky-top,
body.modal-open .position-fixed,
body.modal-open .back-to-top,
body.modal-open .whatsapp-float {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    z-index: 99;
}

.whatsapp-float.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.92);
}

.whatsapp-float:hover {
    color: #fff;
    background: #1ebe57;
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.55);
}

@media (max-width: 575px) {
    .whatsapp-float {
        left: 20px;
        bottom: 20px;
        width: 58px;
        height: 58px;
        font-size: 1.85rem;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: #18bcec;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white);
}

.btn.btn-secondary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    border: 1px solid var(--bs-secondary);
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.nav-bar .categories-bars .categories-bars-item {
    padding: 5px 15px;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    display: flex;
    justify-content: space-between;
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item a,
.nav-bar .categories-bars .categories-bars-item span {
    color: var(--bs-dark);
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item:hover {
    background: var(--bs-primary);
}

.nav-bar .categories-bars .categories-bars-item:hover a,
.nav-bar .categories-bars .categories-bars-item:hover span {
    color: var(--bs-white);
}

.nav-bar .navbar.navbar-light {
    padding: 0 !important;
}

.nav-bar .navbar .navbar-nav .nav-link {
    padding: 18px 15px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .nav-bar .navbar .navbar-nav .nav-link {
        padding: 8px 0px;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 5px 15px;
}

#allCat {
    position: absolute; 
    left: 0; 
    right: 0; 
    top: 51px; 
    z-index: 999; 
    background: var(--bs-light);
}

.nav-bar .navbar-toggler {
    border-radius: 5px !important; 
    box-shadow: none !important;
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel.owl-carousel .owl-nav .owl-prev,
.header-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 87%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.header-carousel.owl-carousel .owl-nav .owl-prev {
    right: 130px;
    transition: 0.5s;
}

.header-carousel.owl-carousel .owl-nav .owl-next {
    right: 60px;
    transition: 0.5s;
}

.header-carousel.owl-carousel .owl-nav .owl-prev:hover,
.header-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.carousel .carousel-header-banner {
    position: relative;
}

.carousel .carousel-banner-offer {
    position: absolute;
    top: 20px; 
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.carousel .carousel-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; 
    left: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
/*** Carousel Header End ***/


/*** Page Header start ***/
.page-header {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a6ebd 0%, #18bcec 45%, #4f46e5 100%);
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 32px rgba(13, 139, 185, 0.35);
}
/*** Page Header end ***/


/*** Products Start ***/
.product .product-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.product .product-item .product-item-inner {
    height: 100%;
}

.product .product-item .product-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.product .product-item:hover .product-item-add {
    background: var(--bs-white);
    margin-bottom: -124px;
    opacity: 1;
}
.product .product-item:hover .product-item-inner {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.product .product-item .product-item-inner .product-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.product .product-item .product-item-inner .product-item-inner-item .product-new,
.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    position: absolute;
    width: 60px; 
    height: 60px;
    border-radius: 60px; 
    top: 20px; 
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.product .product-item .product-item-inner .product-item-inner-item .product-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner img {
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner img {
    transform: scale(1.1);
}

.product .product-item .product-item-inner .product-item-inner-item .product-details {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.product .product-item .product-item-inner .product-item-inner-item .product-details a i {
    width: 50px; 
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner .product-item-inner-item .product-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item:hover .product-item-inner .product-details {
    opacity: 1;
}

.product .tab-class .nav .nav-item a.active {
    background: var(--bs-primary) !important;
}

.product .tab-class .nav .nav-item a.active span {
    color: var(--bs-white) !important;
}
/*** Product End ***/


/*** ProductList Categories Start ***/
.productList .productList-carousel {
    height: 215px !important;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item {
    position: relative;
    width: calc(100% - 1px);
    transition: 0.5s;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item {
    margin-bottom: 75px;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item:hover {
    border-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.productList .productList-carousel .owl-nav .owl-prev,
.productList .productList-carousel .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 40px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.productList .productList-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .owl-nav .owl-prev {
    left: 0;
}

.productList .productList-carousel .owl-nav .owl-next {
    right: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0px;
    padding: 5px 10px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
    opacity: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev {
    left: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
    right: 0;
}

.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-next {
    opacity: 1;
}
/*** ProductList Categories End ***/



/*** bestseller Products Start ***/
.products .products-mini .products-mini-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.products .products-mini .products-mini-item .products-mini-img {
 position: relative;
 overflow: hidden;
}

.products .products-mini .products-mini-item .products-mini-img img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img img {
    border-bottom-left-radius: 0 !important;
    transform: scale(1.3);
}

.products .products-mini .products-mini-item .products-mini-img .products-mini-icon {
    position: absolute;
    width: 50px; 
    height: 50px; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon {
    opacity: 1;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon:hover {
    background: var(--bs-secondary) !important;
}

.products .products-mini .products-mini-item .products-mini-add {
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bs-white);
    transition: 0.5s;
    z-index: 9;
    opacity: 0;
}

.products .products-mini .products-mini-item:hover .products-mini-add {
    opacity: 1;
    margin-bottom: -75px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** bestseller Products End ***/

/*** Pagination Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}

.single-product .nav-tabs {
    border-bottom: 2px solid rgba(24, 188, 236, 0.25);
    gap: 0.35rem;
}

.single-product .nav-tabs .nav-link {
    background: rgba(24, 188, 236, 0.12);
    color: #0d6e8f;
    font-weight: 600;
    border: 1px solid rgba(24, 188, 236, 0.25) !important;
    border-radius: 10px 10px 0 0;
    margin-bottom: -1px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.single-product .nav-tabs .nav-link:hover {
    background: rgba(24, 188, 236, 0.22);
    color: #065a75;
}

.single-product .nav-tabs .nav-link.active {
    background: linear-gradient(180deg, #18bcec 0%, #0d8bb9 100%) !important;
    color: #fff !important;
    border-color: #18bcec !important;
    border-bottom-color: #0d8bb9 !important;
    box-shadow: 0 -2px 12px rgba(24, 188, 236, 0.35);
}
/*** Pagination End ***/

/*** Shop Page Start ***/
.shop .product-categories .categories-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.shop .product-categories .categories-item a {
    transition: 0.5s;
}

.shop .product-categories .categories-item a:hover {
    color: var(--bs-primary) !important;
}

.shop .product-color .product-color-item {
    display: flex;
    padding: 10px 0;
}

.shop .product-color .product-color-item a {
    transition: 0.5s;
}

.shop .product-color .product-color-item a:hover {
    color: var(--bs-secondary);
}

.shop .price {
    padding: 10px 0;
}

.shop .additional-product .additional-product-item {
    padding: 10px 0;
}

.shop .featured-product .featured-product-item {
    display: flex;
    align-items: center;
    justify-content: start;
}

.shop .product-tags .product-tags-items a {
    display: inline-block !important;
    background: var(--bs-white);
    color: var(--bs-dark);
    transition: 0.5;
}

.shop .product-tags .product-tags-items a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

/*** Shop Page End ***/


/*** Single Products Start ***/
.single-product .owl-nav .owl-prev,
.single-product .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -13%;
    font-size: 22px;
    color: var(--bs-primary);
}

.single-product .owl-nav .owl-prev {
    left: 0;
}

.single-product .owl-nav .owl-next {
    right: 0 !important;
}


.single-product .single-carousel .owl-dots {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: 0.5s;
}

.single-product .single-carousel .owl-dots .owl-dot img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    margin-right: 15px;
    border: 2px solid var(--bs-primary);
    transition: 0.5s;
}

.single-product .single-carousel .owl-dots .owl-dot.active img {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    border: 4px solid var(--bs-secondary);
}














.related-product .related-carousel .related-item {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 125px;
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 99;
}

.related-product .related-carousel .related-item:hover .related-item-add {
    background: var(--bs-white);
    margin-bottom: -125px;
    opacity: 1;
}

.related-product .related-carousel .related-item:hover .related-item-inner {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new,
.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    position: absolute;
    width: 60px; 
    height: 60px;
    border-radius: 60px; 
    top: 20px; 
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center; 
    z-index: 5;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner img {
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner img {
    transform: scale(1.1);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details a i {
    width: 50px; 
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-item-inner-item .related-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-details {
    opacity: 1;
}


.related-product .owl-nav .owl-prev,
.related-product .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 40px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .owl-nav .owl-prev {
    left: 0;
}

.related-product .owl-nav .owl-next {
    right: 0;
}

.related-product .owl-nav .owl-prev:hover,
.related-product .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
}
/*** Single Products End ***/

/*** Footer Start ***/
.footer {
    --footer-bg: #1F2937;
    --footer-heading: #29B6F6;
    --footer-text: #E5E7EB;
    --footer-btn: #38BDF8;
    background: var(--footer-bg) !important;
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

.best-selling-products {
    max-width: 1100px;
    margin: 0 auto;
}

.best-selling-heading {
    font-size: 2.85rem;
    letter-spacing: 0.02em;
    color: var(--footer-heading);
}

.best-selling-subtitle {
    color: var(--footer-text);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .best-selling-heading {
        font-size: 2.35rem;
    }

    .best-selling-subtitle {
        font-size: 1.1rem;
    }
}

.best-selling-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 1rem 0.5rem;
    border-radius: 12px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.best-selling-card:hover {
    background: rgba(41, 182, 246, 0.1);
    transform: translateY(-3px);
}

.best-selling-thumb {
    width: 395px;
    height: 395px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(41, 182, 246, 0.45);
    margin-bottom: 0.75rem;
    position: relative;
}

.best-selling-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.best-selling-thumb-fallback {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    color: var(--footer-heading);
    font-size: 2rem;
}

.best-selling-thumb.is-placeholder .best-selling-thumb-fallback {
    display: flex;
}

.best-selling-label {
    color: var(--footer-text);
    font-weight: 600;
    font-size: 2.65rem;
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.best-selling-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFFFFF;
    background: var(--footer-btn);
    border: 1px solid var(--footer-btn);
    border-radius: 50px;
    padding: 0.5rem 1.15rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.best-selling-cta i {
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.best-selling-card:hover .best-selling-label {
    color: #FFFFFF;
}

.best-selling-card:hover .best-selling-cta {
    color: #FFFFFF;
    background: #29B6F6;
    border-color: #29B6F6;
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35);
}

.best-selling-card:hover .best-selling-cta i {
    transform: translateX(3px);
}

@media (min-width: 768px) {
    .best-selling-thumb {
        width: 255px;
        height: 255px;
    }

    .best-selling-label {
        font-size: 1rem;
    }

    .best-selling-cta {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }

    .best-selling-cta i {
        font-size: 0.7rem;
    }
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(41, 182, 246, 0.2);
    background: #1F2937 !important;
    color: #E5E7EB;
}
/*** copyright end ***/



.btn-order-now {
    border-radius: 0;
    width: 100%;
}

@media (min-width: 1200px) {
    .btn-order-now {
        width: calc(50% - 0.75rem);
    }
}

/*** Order Modal Start ***/
.order-modal.fade .modal-dialog {
    transition: transform 0.12s ease-out;
    transform: translate(0, -12px);
}

.order-modal.fade {
    transition: opacity 0.12s linear;
}

.order-modal + .modal-backdrop.fade,
.modal-backdrop.fade {
    transition: opacity 0.12s linear;
}

.order-modal .modal-dialog {
    margin-left: auto;
    margin-right: auto;
}

.order-modal .modal-dialog.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

@media (min-width: 768px) {
    .order-modal .modal-dialog {
        max-width: 582px;
    }

    .order-modal .modal-header {
        padding: 1.1rem 1.6rem;
    }

    .order-modal .modal-body {
        padding: 1.6rem;
    }

    .order-modal .form-floating > .form-control {
        height: 43px;
    }

    .order-modal-submit {
        height: 43px;
    }
}

@media (min-width: 992px) {
    .order-modal .modal-dialog {
        max-width: 666px;
        width: calc(100% - 3rem);
        margin: 1.75rem auto;
    }

    .order-modal .modal-dialog.modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .order-modal .modal-content {
        min-height: 416px;
    }

    .order-modal .modal-header {
        padding: 1.8rem 2rem;
        min-height: 104px;
        position: relative;
        justify-content: center;
        text-align: center;
    }

    .order-modal .modal-header .btn-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        margin: 0;
    }

    .order-modal .modal-body {
        padding: 2.4rem 2rem 2.6rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .order-modal .modal-body form {
        width: 100%;
        max-width: 448px;
        margin: 0 auto;
    }

    .order-modal .modal-title {
        line-height: 1.45;
        width: 100%;
        text-align: center;
        padding-right: 0;
    }

    .order-modal-product-name {
        font-size: 0.92rem;
        margin-bottom: 0.5rem;
        line-height: 1.45;
    }

    .order-modal-product-price {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .order-modal-intro {
        font-size: 0.84rem;
        margin-bottom: 1.6rem;
        line-height: 1.6;
        text-align: center;
        max-width: 448px;
    }

    .order-modal .row.g-3 {
        --bs-gutter-y: 1.4rem;
    }

    .order-modal .form-floating > .form-control {
        height: 51px;
        font-size: 0.84rem;
        padding-top: 1.1rem;
        padding-bottom: 0.5rem;
    }

    .order-modal .form-floating > label {
        font-size: 0.8rem;
        padding-top: 0.8rem;
    }

    .order-modal-submit {
        height: 51px;
        font-size: 0.88rem;
        margin-top: 0.6rem;
    }
}

.order-modal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.order-modal .modal-header {
    background: #18bcec;
    color: #fff;
    border-bottom: none;
    padding: 1rem 1.25rem;
    align-items: flex-start;
}

.order-modal .modal-title {
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    padding-right: 1.5rem;
}

.order-modal-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
}

.order-modal-product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.order-modal .btn-close {
    filter: invert(1);
}

.order-modal .modal-body {
    padding: 1.5rem 1.25rem;
}

.order-modal-intro {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.order-modal .form-floating > .form-control {
    height: 48px;
}

.order-modal-submit {
    height: 48px;
    font-weight: 600;
    background: #18bcec !important;
    border: none !important;
}

.order-modal-submit:hover {
    background: #0d8bb9 !important;
}
/*** Order Modal End ***/

/*** Lively Landing Page ***/
body {
    background: linear-gradient(180deg, #cfe9f8 0%, #e8f4fc 35%, #edf2ff 70%, #e6f0fa 100%);
    background-attachment: fixed;
}

.container-fluid.shop {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(220, 242, 255, 0.85) 100%);
    border-top: none;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.container-fluid.shop + .container-fluid.shop {
    margin-top: 0.75rem;
}

.container-fluid.shop > .container {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(13, 139, 185, 0.14);
    border: 1px solid rgba(24, 188, 236, 0.22);
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}

.container-fluid.shop hr {
    display: none;
}

.product-image-frame {
    background: linear-gradient(145deg, #dff4ff 0%, #ffffff 45%, #e8f7ff 100%) !important;
    border: 2px solid rgba(24, 188, 236, 0.4);
    box-shadow: 0 8px 28px rgba(24, 188, 236, 0.18);
    padding: 0.5rem;
}

.product-features {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    line-height: 1.7;
    font-size: 1rem;
    color: #1e3a5f;
    padding: 1.25rem 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #e8f7ff 55%, #f0f9ff 100%);
    border: 2px solid rgba(24, 188, 236, 0.3);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(24, 188, 236, 0.12);
}

.product-features > span {
    display: block !important;
    margin-bottom: 0.75rem !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

.product-features b {
    display: block !important;
    width: 100%;
    padding: 0.35rem 0 0.35rem 0.85rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #0d8bb9 !important;
    background: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    border-left: 4px solid #18bcec !important;
    text-shadow: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.product-features > span:nth-child(2) b {
    color: #0d8bb9 !important;
    border-left-color: #18bcec !important;
    background: none !important;
    box-shadow: none !important;
}

.product-features > span:nth-child(3) b {
    color: #0d8bb9 !important;
    border-left-color: #18bcec !important;
    background: none !important;
    box-shadow: none !important;
}

.product-features > span:nth-child(4) b {
    color: #0d8bb9 !important;
    border-left-color: #18bcec !important;
    background: none !important;
    box-shadow: none !important;
}

.product-features > span:nth-child(5) b {
    color: #0d8bb9 !important;
    border-left-color: #18bcec !important;
    background: none !important;
    box-shadow: none !important;
}

.product-features > span:hover b {
    color: #18bcec !important;
    border-left-color: #0d8bb9 !important;
    transform: none;
}

.spec-panel {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    padding: 1.25rem;
    background: linear-gradient(145deg, #f8fbff, #eef6ff);
    border: 1px solid rgba(24, 188, 236, 0.22);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(24, 188, 236, 0.08);
}

.spec-panel .spec-feature-item {
    margin-bottom: 0.65rem;
}

.spec-panel .spec-feature-item b,
.spec-panel > div > b {
    display: block;
    padding: 0.35rem 0 0.35rem 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0d8bb9 !important;
    background: none !important;
    border-radius: 0;
    border-left: 4px solid #18bcec;
    box-shadow: none;
}

.spec-panel .spec-grid > div {
    padding: 12px;
    background: rgba(24, 188, 236, 0.12);
    border-radius: 8px;
    border-left: 3px solid #18bcec;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spec-panel .spec-grid > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 188, 236, 0.2);
}

.spec-panel .spec-grid b {
    display: block;
    color: #0d8bb9 !important;
    font-size: 0.85rem;
    font-weight: 700;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.spec-panel .spec-grid span {
    color: #334155;
    font-size: 0.9rem;
}

.spec-panel-title {
    color: #18bcec;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    text-align: center;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid rgba(24, 188, 236, 0.35);
    font-weight: 700;
}

.tab-pane[id*="mission"] > p {
    padding: 0.45rem 0.85rem;
    margin-bottom: 0.4rem;
    background: rgba(24, 188, 236, 0.08);
    border-radius: 8px;
    border-left: 3px solid #18bcec;
    color: #1e3a5f;
}

.product-trust-badges {
    background: linear-gradient(135deg, #fffbeb 0%, #e0f2fe 100%) !important;
    border: 2px solid rgba(24, 188, 236, 0.35) !important;
    box-shadow: 0 4px 16px rgba(24, 188, 236, 0.12);
}

.product-trust-badges i {
    font-size: 1.35rem;
}

.single-product .alert-info {
    background: linear-gradient(135deg, #e0f2fe, #dbeafe) !important;
    border: 1px solid #18bcec !important;
    color: #0c4a6e !important;
}

.nav-bar .bg-primary {
    background: linear-gradient(90deg, #0a6ebd 0%, #18bcec 50%, #0a6ebd 100%) !important;
}

.page-header h1 {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.single-product h3.text-primary {
    background: linear-gradient(135deg, #0d8bb9, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
