/*** Spinner Start ***/
#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 ***/

.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;
}

/*** 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: var(--bs-primary) !important;
    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;
}
/*** Button End ***/

/*** 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 Start ***/
.nav-bar .categories-bars .categories-bars-item {
    padding: 5px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 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 0;
    }
}

.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 ***/
.carousel .carousel-header-banner {
    position: relative;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.carousel .carousel-header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-carousel-item {
    min-height: 520px;
}

.header-carousel-item .carousel-img,
.header-carousel-item .carousel-content {
    min-height: 520px;
}

.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-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(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url(../img/header5.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
/*** 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: -70px;
    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;
}
/*** Products End ***/

/*** Product Cards Alignment ***/
.product-card-body {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-body .h4 {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-card-body > .d-block.mb-2 {
    min-height: 24px;
}
/*** Product Cards Alignment 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;
    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: 0;
    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;
}
/*** 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.5s;
}

.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);
}
/*** Single Products End ***/

/*** Related Product Start ***/
.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;
}
/*** Related Product End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
/*** Footer End ***/

/*** Copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-primary) !important;
}
/*** Copyright End ***/

/*** Coverflow Carousel Start ***/
.coverflow-section {
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

.coverflow-wrapper {
    position: relative;
    width: 100%;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverflow-stage {
    position: relative;
    width: 100%;
    height: 680px;
    perspective: 1400px;
}

.coverflow-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    opacity: 0;
    transition: all 0.65s ease;
    transform-style: preserve-3d;
    text-align: center;
}

.coverflow-card {
    background: #fff;
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.coverflow-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    background: #fff;
}

.coverflow-text {
    padding: 18px 10px 8px 10px;
}

.coverflow-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.coverflow-text p {
    font-size: 17px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.coverflow-slide.center {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
    z-index: 5;
}

.coverflow-slide.left-1 {
    transform: translate(-120%, -50%) rotateY(45deg) scale(0.82);
    opacity: 0.85;
    z-index: 4;
}

.coverflow-slide.right-1 {
    transform: translate(20%, -50%) rotateY(-45deg) scale(0.82);
    opacity: 0.85;
    z-index: 4;
}

.coverflow-slide.left-2 {
    transform: translate(-185%, -50%) rotateY(58deg) scale(0.62);
    opacity: 0.45;
    z-index: 3;
}

.coverflow-slide.right-2 {
    transform: translate(85%, -50%) rotateY(-58deg) scale(0.62);
    opacity: 0.45;
    z-index: 3;
}

.coverflow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: 0.3s;
}

.coverflow-btn:hover {
    background: var(--bs-secondary);
}

.coverflow-prev {
    left: 10px;
}

.coverflow-next {
    right: 10px;
}

@media (max-width: 1200px) {
    .coverflow-wrapper,
    .coverflow-stage {
        min-height: 620px;
        height: 620px;
    }

    .coverflow-slide {
        width: 320px;
    }

    .coverflow-slide img {
        height: 360px;
    }

    .coverflow-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .coverflow-wrapper,
    .coverflow-stage {
        min-height: 560px;
        height: 560px;
    }

    .coverflow-slide {
        width: 270px;
    }

    .coverflow-slide img {
        height: 300px;
    }

    .coverflow-slide.left-2,
    .coverflow-slide.right-2 {
        display: none;
    }

    .coverflow-slide.left-1 {
        transform: translate(-108%, -50%) rotateY(38deg) scale(0.78);
    }

    .coverflow-slide.right-1 {
        transform: translate(8%, -50%) rotateY(-38deg) scale(0.78);
    }
}

@media (max-width: 768px) {
    .coverflow-wrapper,
    .coverflow-stage {
        min-height: 500px;
        height: 500px;
    }

    .coverflow-slide {
        width: 220px;
    }

    .coverflow-slide img {
        height: 240px;
    }

    .coverflow-text h2 {
        font-size: 20px;
    }

    .coverflow-text p {
        font-size: 14px;
    }

    .coverflow-slide.left-1,
    .coverflow-slide.right-1,
    .coverflow-slide.left-2,
    .coverflow-slide.right-2 {
        display: none;
    }

    .coverflow-slide.center {
        transform: translate(-50%, -50%) scale(1);
    }

    .coverflow-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}
/*** Coverflow Carousel End ***/

/*** Top Social Buttons ***/
.facebook-top-btn {
    background: #1877f2 !important;
    color: #fff !important;
    border: 1px solid #1877f2 !important;
}

.facebook-top-btn:hover {
    background: #0d65d9 !important;
    color: #fff !important;
    border-color: #0d65d9 !important;
}

.tiktok-top-btn {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #000 !important;
}

.tiktok-top-btn:hover {
    background: #222 !important;
    color: #fff !important;
    border-color: #222 !important;
}

.instagram-top-btn {
    background: #e1306c !important;
    color: #fff !important;
    border: 1px solid #e1306c !important;
}

.instagram-top-btn:hover {
    background: #c72a5f !important;
    color: #fff !important;
    border-color: #c72a5f !important;
}

.btn-messenger-top {
    background: #0084ff !important;
    color: #fff !important;
    border: 1px solid #0084ff !important;
}

.btn-messenger-top:hover {
    background: #006fe0 !important;
    color: #fff !important;
    border-color: #006fe0 !important;
}

.btn-whatsapp-top {
    background: #25d366 !important;
    color: #fff !important;
    border: 1px solid #25d366 !important;
}

.btn-whatsapp-top:hover {
    background: #1ebe5d !important;
    color: #fff !important;
    border-color: #1ebe5d !important;
}

.top-contact-btn {
    min-width: 150px;
    text-align: center;
}
/*** Top Social Buttons End ***/

/*** Offer Boxes ***/
.offer-box-img-tricou {
    width: 280px !important;
    height: 220px !important;
    object-fit: contain !important;
}
/*** Offer Boxes End ***/

/*** Product Modal ***/
.product-modal-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    background: #fff;
}

#productImageModal .modal-content {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
}

#productImageModal .modal-body img {
    object-fit: contain;
}

#productImageModal .btn-success {
    background: #25d366;
    border-color: #25d366;
}

#productImageModal .btn-success:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
}
/*** Product Modal End ***/

.product-info-box.sticky-top {
    top: 100px !important;
}

/* =========================================================
   FIX STRICT PENTRU SECTIUNEA "PRODUSELE NOASTRE"
   Nu afecteaza alte pagini
========================================================= */
#produse-noastre .row.g-4.mt-2 > div {
    display: flex;
}

#produse-noastre .product-item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

#produse-noastre .product-item .product-item-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#produse-noastre .product-item .product-item-inner .product-item-inner-item {
    position: relative;
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 20px !important;
    background: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#produse-noastre .product-item .product-item-inner .product-item-inner-item img {
    display: block !important;
    margin: 0 auto !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 260px !important;
    object-fit: contain !important;
    transition: none !important;
}

#produse-noastre .product-item:hover .product-item-inner img {
    transform: none !important;
}

#produse-noastre .product-img-cana {
    transform: scale(1) !important;
}

#produse-noastre .product-img-tricou {
    transform: scale(1.08) translateY(0) !important;
}

#produse-noastre .product-img-invitatie {
    transform: scale(1.02) translateY(0) !important;
}

#produse-noastre .product-img-plic {
    transform: scale(3.8) translateY(-28px) !important;
    transform-origin: center center !important;
}

#produse-noastre .product-card-body {
    min-height: 190px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
}

#produse-noastre .product-card-body > .d-block.mb-2 {
    min-height: 26px !important;
    margin-bottom: 0 !important;
}

#produse-noastre .product-card-body .h4 {
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 0 !important;
}

#produse-noastre .product-card-body del,
#produse-noastre .product-card-body span {
    display: block !important;
    line-height: 1.2 !important;
}

#produse-noastre .product-item .product-item-add {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: 0.35s;
    z-index: 2;
}

#produse-noastre .product-item:hover .product-item-add {
    opacity: 1;
    margin-bottom: -70px;
    background: var(--bs-white);
}

/* Buline social media footer */
.social-circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 !important;
    font-size: 16px;
    line-height: 1;
    box-sizing: border-box;
    color: #fff !important;
}

.footer-facebook-btn {
    background: #1877f2 !important;
    border: 1px solid #1877f2 !important;
}

.footer-facebook-btn:hover {
    background: #0d65d9 !important;
    border-color: #0d65d9 !important;
}

.footer-tiktok-btn {
    background: #000 !important;
    border: 1px solid #000 !important;
}

.footer-tiktok-btn:hover {
    background: #222 !important;
    border-color: #222 !important;
}

.footer-instagram-btn {
    background: #e1306c !important;
    border: 1px solid #e1306c !important;
}

.footer-instagram-btn:hover {
    background: #c72a5f !important;
    border-color: #c72a5f !important;
}

.footer-messenger-btn {
    background: #0084ff !important;
    border: 1px solid #0084ff !important;
}

.footer-messenger-btn:hover {
    background: #006fe0 !important;
    border-color: #006fe0 !important;
}

.footer-whatsapp-btn {
    background: #25d366 !important;
    border: 1px solid #25d366 !important;
}

.footer-whatsapp-btn:hover {
    background: #1ebe5d !important;
    border-color: #1ebe5d !important;
}

.product .product-item .product-item-inner .product-item-inner-item .product-new {
    font-family: Arial, sans-serif !important;
    font-weight: 300 !important;
    font-size: 12px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

















/*** Contact Page ***/
.contact-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.contact-info-icon i {
    color: var(--bs-primary);
    font-size: 24px;
}

.contact-form .form-control {
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.contact-form .form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.contact-form .btn {
    border-radius: 999px;
}

@media (max-width: 991.98px) {
    .contact-box,
    .contact-info-card {
        padding: 20px;
    }
}





.info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    color: #ffffff !important;
    font-size: 26px;
}





/* Buton rainbow pentru Termeni */
.navbar .navbar-nav .nav-link.nav-link-rainbow {
    font-weight: 700;
    background: linear-gradient(
        90deg,
        #ff0000,
        #ff7a00,
        #ffd400,
        #2cff00,
        #00cfff,
        #1e5eff,
        #8b00ff,
        #ff00aa,
        #ff0000
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowFlow 4s linear infinite;
}

.navbar .navbar-nav .nav-link.nav-link-rainbow:hover,
.navbar .navbar-nav .nav-link.nav-link-rainbow.active {
    background: linear-gradient(
        90deg,
        #ff0000,
        #ff7a00,
        #ffd400,
        #2cff00,
        #00cfff,
        #1e5eff,
        #8b00ff,
        #ff00aa,
        #ff0000
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowFlow 2.5s linear infinite;
}

@keyframes rainbowFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 300% center;
    }
}






/*** Galerie suplimentara produs - full width elegant ***/
.product-extra-gallery-wrap {
    width: 100%;
    padding: 10px 20px 0;
}

.product-extra-gallery-title {
    text-align: center;
    color: var(--bs-primary);
    margin-bottom: 22px;
}

.product-extra-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 220px));
    justify-content: center;
    gap: 24px;
}

.product-extra-gallery-card {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-extra-gallery-item {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-extra-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
}

.product-extra-gallery-caption {
    text-align: center;
    margin-top: 10px;
    padding: 0 6px;
}

.product-extra-gallery-code {
    font-size: 13px;
    font-weight: 700;
    color: var(--bs-primary);
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.product-extra-gallery-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 1400px) {
    .product-extra-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
    }

    .product-extra-gallery-card,
    .product-extra-gallery-item {
        width: 200px;
    }

    .product-extra-gallery-item {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .product-extra-gallery {
        grid-template-columns: repeat(auto-fit, minmax(160px, 160px));
        gap: 18px;
    }

    .product-extra-gallery-card,
    .product-extra-gallery-item {
        width: 160px;
    }

    .product-extra-gallery-item {
        height: 160px;
    }

    .product-extra-gallery-text {
        font-size: 13px;
    }
}



<style>
    .facebook-top-btn {
        background: #1877f2 !important;
        color: #fff !important;
        border: 1px solid #1877f2 !important;
    }

    .facebook-top-btn:hover {
        background: #0d65d9 !important;
        color: #fff !important;
        border-color: #0d65d9 !important;
    }

    .tiktok-top-btn {
        background: #000 !important;
        color: #fff !important;
        border: 1px solid #000 !important;
    }

    .tiktok-top-btn:hover {
        background: #222 !important;
        color: #fff !important;
        border-color: #222 !important;
    }

    .instagram-top-btn {
        background: #e1306c !important;
        color: #fff !important;
        border: 1px solid #e1306c !important;
    }

    .instagram-top-btn:hover {
        background: #c72a5f !important;
        color: #fff !important;
        border-color: #c72a5f !important;
    }

    .btn-messenger-top {
        background: #0084ff !important;
        color: #fff !important;
        border: 1px solid #0084ff !important;
    }

    .btn-messenger-top:hover {
        background: #006fe0 !important;
        color: #fff !important;
        border-color: #006fe0 !important;
    }

    .btn-whatsapp-top {
        background: #25d366 !important;
        color: #fff !important;
        border: 1px solid #25d366 !important;
    }

    .btn-whatsapp-top:hover {
        background: #1ebe5d !important;
        color: #fff !important;
        border-color: #1ebe5d !important;
    }

    .top-contact-btn {
        min-width: 150px;
        text-align: center;
    }

    .info-card {
        background: #fff;
        border-radius: 18px;
        padding: 28px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
        height: 100%;
    }

    .info-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bs-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .info-icon i {
        color: #fff !important;
        font-size: 26px;
    }

    .terms-box {
        background: #fff;
        border-radius: 18px;
        padding: 35px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
        height: 100%;
    }

    .terms-box h3,
    .terms-box h4,
    .info-card h4 {
        margin-bottom: 18px;
    }

    .terms-box p,
    .info-card p,
    .info-card li,
    .terms-box li {
        color: #666;
        line-height: 1.7;
    }

    .terms-box ul,
    .info-card ul {
        padding-left: 18px;
        margin-bottom: 0;
    }

    .social-circle {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        border-radius: 50%;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        padding: 0 !important;
        font-size: 16px;
        line-height: 1;
        box-sizing: border-box;
        color: #fff !important;
    }

    .footer-facebook-btn {
        background: #1877f2 !important;
        border: 1px solid #1877f2 !important;
    }

    .footer-facebook-btn:hover {
        background: #0d65d9 !important;
        border-color: #0d65d9 !important;
    }

    .footer-tiktok-btn {
        background: #000 !important;
        border: 1px solid #000 !important;
    }

    .footer-tiktok-btn:hover {
        background: #222 !important;
        border-color: #222 !important;
    }

    .footer-instagram-btn {
        background: #e1306c !important;
        border: 1px solid #e1306c !important;
    }

    .footer-instagram-btn:hover {
        background: #c72a5f !important;
        border-color: #c72a5f !important;
    }

    .footer-messenger-btn {
        background: #0084ff !important;
        border: 1px solid #0084ff !important;
    }

    .footer-messenger-btn:hover {
        background: #006fe0 !important;
        border-color: #006fe0 !important;
    }

    .footer-whatsapp-btn {
        background: #25d366 !important;
        border: 1px solid #25d366 !important;
    }

    .footer-whatsapp-btn:hover {
        background: #1ebe5d !important;
        border-color: #1ebe5d !important;
    }

    .terms-note {
        font-size: 14px;
        color: #888;
    }
</style>



/*** Logo premium rainbow animat ***/
.logo-rainbow-premium {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    cursor: pointer;
}

.logo-rainbow-icon {
    color: var(--bs-primary);
    animation: logoGiftPulse 2.8s ease-in-out infinite;
    transform-origin: center;
}

.logo-rainbow-text {
    display: inline-flex;
    align-items: flex-end;
}

.logo-rainbow-text span {
    display: inline-block;
    font-weight: 700;
    background: linear-gradient(
        90deg,
        #ff7a00,
        #ffd400,
        #48d600,
        #00b7ff,
        #4a6cff,
        #b100ff,
        #ff4fa3,
        #ff7a00
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        logoLetterDance 3.2s ease-in-out infinite,
        logoRainbowFlow 5s linear infinite;
    transform-origin: center bottom;
}

/* delay progresiv */
.logo-rainbow-text span:nth-child(1) { animation-delay: 0s, 0s; }
.logo-rainbow-text span:nth-child(2) { animation-delay: 0.08s, 0.08s; }
.logo-rainbow-text span:nth-child(3) { animation-delay: 0.16s, 0.16s; }
.logo-rainbow-text span:nth-child(4) { animation-delay: 0.24s, 0.24s; }
.logo-rainbow-text span:nth-child(5) { animation-delay: 0.32s, 0.32s; }
.logo-rainbow-text span:nth-child(6) { animation-delay: 0.40s, 0.40s; }
.logo-rainbow-text span:nth-child(7) { animation-delay: 0.48s, 0.48s; }
.logo-rainbow-text span:nth-child(8) { animation-delay: 0.56s, 0.56s; }
.logo-rainbow-text span:nth-child(9) { animation-delay: 0.64s, 0.64s; }

.logo-space {
    width: 10px;
}

/* hover: un pic mai viu */
.logo-rainbow-premium:hover .logo-rainbow-icon {
    animation-duration: 1.4s;
}

.logo-rainbow-premium:hover .logo-rainbow-text span {
    animation-duration: 1.2s, 2.8s;
}

@keyframes logoGiftPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    20% {
        transform: scale(1.04) rotate(-2deg);
    }
    40% {
        transform: scale(1.08) rotate(2deg);
    }
    60% {
        transform: scale(1.03) rotate(-1deg);
    }
    80% {
        transform: scale(1.01) rotate(1deg);
    }
}

@keyframes logoLetterDance {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-2px) rotate(-4deg);
    }
    40% {
        transform: translateY(-3px) rotate(4deg);
    }
    55% {
        transform: translateY(-5px) rotate(-3deg);
    }
    70% {
        transform: translateY(-10px) rotate(3deg);
    }
    85% {
        transform: translateY(0) rotate(-0.5deg);
    }
}

@keyframes logoRainbowFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 400% center;
    }
}

@media (max-width: 768px) {
    .logo-rainbow-icon {
        animation-duration: 3.4s;
    }

    .logo-rainbow-text span {
        animation-duration: 3.8s, 6s;
    }
}