
/*** 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 ***/

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

/*** 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 testimonials Start ***/
.testimonials-carousel.owl-carousel .owl-nav .owl-prev,
.testimonials-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);
}

.testimonials-carousel.owl-carousel .owl-nav .owl-prev {
    right: 130px;
    transition: 0.5s;
}

.testimonials-carousel.owl-carousel .owl-nav .owl-next {
    right: 60px;
    transition: 0.5s;
}

.testimonials-carousel.owl-carousel .owl-nav .owl-prev:hover,
.testimonials-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(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/bg-6.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/*** 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: 100;
}

.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, .product .tab-class .nav .nav-item a:hover{
    background: #000 !important;
}

.product .tab-class .nav .nav-item a.active span, .product .tab-class .nav .nav-item a:hover 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: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.pagination .page-item {
    list-style: none;
    margin: 0;
}

.pagination .page-link {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    border-radius: 5px;
    display: block;
    background: var(--bs-white);
}

.pagination .page-item.active .page-link {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-primary);
}

.pagination .page-link:hover:not(.active) {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border-color: var(--bs-primary);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: var(--bs-white);
    border-color: #dee2e6;
    cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
    background-color: var(--bs-white);
    color: #6c757d;
    border-color: #dee2e6;
}

.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;
    margin: 0 0 10px 0;
}

.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 {
    /*background: var(--bs-dark);*/
}
.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);
}

/*** Footer End ***/


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

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1{
    color: #000 !important;
     font-family: "Raleway", sans-serif;
    font-weight: 700;
}


header, footer{
background-image: linear-gradient(50deg, rgba(146, 146, 146, 0.02) 0%, rgba(146, 146, 146, 0.02) 25%,rgba(82, 82, 82, 0.02) 25%, rgba(82, 82, 82, 0.02) 50%,rgba(217, 217, 217, 0.02) 50%, rgba(217, 217, 217, 0.02) 75%,rgba(41, 41, 41, 0.02) 75%, rgba(41, 41, 41, 0.02) 100%),linear-gradient(252deg, rgba(126, 126, 126, 0.01) 0%, rgba(126, 126, 126, 0.01) 25%,rgba(117, 117, 117, 0.01) 25%, rgba(117, 117, 117, 0.01) 50%,rgba(219, 219, 219, 0.01) 50%, rgba(219, 219, 219, 0.01) 75%,rgba(41, 41, 41, 0.01) 75%, rgba(41, 41, 41, 0.01) 100%),linear-gradient(272deg, rgba(166, 166, 166, 0.01) 0%, rgba(166, 166, 166, 0.01) 20%,rgba(187, 187, 187, 0.01) 20%, rgba(187, 187, 187, 0.01) 40%,rgba(238, 238, 238, 0.01) 40%, rgba(238, 238, 238, 0.01) 60%,rgba(204, 204, 204, 0.01) 60%, rgba(204, 204, 204, 0.01) 80%,rgba(5, 5, 5, 0.01) 80%, rgba(5, 5, 5, 0.01) 100%),linear-gradient(86deg, rgba(143, 143, 143, 0.02) 0%, rgba(143, 143, 143, 0.02) 12.5%,rgba(36, 36, 36, 0.02) 12.5%, rgba(36, 36, 36, 0.02) 25%,rgba(23, 23, 23, 0.02) 25%, rgba(23, 23, 23, 0.02) 37.5%,rgba(223, 223, 223, 0.02) 37.5%, rgba(223, 223, 223, 0.02) 50%,rgba(101, 101, 101, 0.02) 50%, rgba(101, 101, 101, 0.02) 62.5%,rgba(94, 94, 94, 0.02) 62.5%, rgba(94, 94, 94, 0.02) 75%,rgba(148, 148, 148, 0.02) 75%, rgba(148, 148, 148, 0.02) 87.5%,rgba(107, 107, 107, 0.02) 87.5%, rgba(107, 107, 107, 0.02) 100%),linear-gradient(25deg, rgba(2, 2, 2, 0.02) 0%, rgba(2, 2, 2, 0.02) 16.667%,rgba(51, 51, 51, 0.02) 16.667%, rgba(51, 51, 51, 0.02) 33.334%,rgba(26, 26, 26, 0.02) 33.334%, rgba(26, 26, 26, 0.02) 50.001000000000005%,rgba(238, 238, 238, 0.02) 50.001%, rgba(238, 238, 238, 0.02) 66.668%,rgba(128, 128, 128, 0.02) 66.668%, rgba(128, 128, 128, 0.02) 83.33500000000001%,rgba(21, 21, 21, 0.02) 83.335%, rgba(21, 21, 21, 0.02) 100.002%),linear-gradient(325deg, rgba(95, 95, 95, 0.03) 0%, rgba(95, 95, 95, 0.03) 14.286%,rgba(68, 68, 68, 0.03) 14.286%, rgba(68, 68, 68, 0.03) 28.572%,rgba(194, 194, 194, 0.03) 28.572%, rgba(194, 194, 194, 0.03) 42.858%,rgba(51, 51, 51, 0.03) 42.858%, rgba(51, 51, 51, 0.03) 57.144%,rgba(110, 110, 110, 0.03) 57.144%, rgba(110, 110, 110, 0.03) 71.42999999999999%,rgba(64, 64, 64, 0.03) 71.43%, rgba(64, 64, 64, 0.03) 85.71600000000001%,rgba(31, 31, 31, 0.03) 85.716%, rgba(31, 31, 31, 0.03) 100.002%),linear-gradient(90deg, hsl(80,0%,14%),hsl(80,0%,14%));
}

/* Ensure header is always visible */
header {
    position: relative !important;
    z-index: 1000 !important;
    background-color: #333 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    order: -1 !important;
}

/* Ensure body doesn't interfere with header positioning */
body {
    display: block !important;
    flex-direction: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
}

/* Reviews Pagination Styles */
.reviews-pagination {
    margin-top: 0;
}

.reviews-pagination .btn {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.reviews-pagination .btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reviews-pagination .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-indicator .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background-color: #007bff !important;
    color: white;
    font-weight: 500;
}

.text-rating {
    color: #f92400 !important;
}

.review-item {
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.review-item[style*="display: none"] {
    display: none !important;
    margin-bottom: 0;
    height: 0;
    overflow: hidden;
}

#reviews-container {
    min-height: 200px;
    overflow: hidden;
}

#reviews-container .review-item:last-child {
    margin-bottom: 0;
}

.review-item.d-none {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.reviews-pagination {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.logo{
    width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
    max-width: 100%;
}


.carousel-content{
    width: 100%;
    height: 560px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.carousel-content-bg{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    z-index: 0;
}
.carousel-content-bg::after{
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    opacity: 0.9;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.carousel-content:hover .carousel-content-bg, .carousel-content:focus .carousel-content-bg{
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.carousel-content-1{
    background-image: url('../img/carousel/slide-1.jpg');
}
.carousel-content-2{
    background-image: url('../img/carousel/slide-2.jpg');
}
.carousel-content-3{
    background-image: url('../img/carousel/slide-3.jpg');
}
.carousel-content-4{
    background-image: url('../img/carousel/slide-4.jpg');
}
.carousel-content-5{
    background-image: url('../img/carousel/slide-5.jpg');
}
.carousel-content-6{
    background-image: url('../img/carousel/slide-6.jpg');
}
.carousel-content-7{
    background-image: url('../img/carousel/slide-7.jpg');
}
.carousel-content-8{
    background-image: url('../img/carousel/slide-8.jpg');
}
.carousel-inner{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px 30px;
    z-index: 1;
}
.carousel-inner h2{
    color: var(--bs-white) !important;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}
.carousel-inner p{
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
}

.navbar-expand-lg .navbar-nav .nav-link{
    padding:1rem;
}
.navbar-expand-lg .navbar-nav .nav-link{
    color: #fff;
}

.wine-bg{
    background: url('../img/wine-bg1.jpg') no-repeat bottom center fixed;
    background-size: cover;
    position: relative;
}
.wine-bg:before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: -1;
}
.z-1{
    z-index: 10;
}
.wine-bg-content{
    position: relative;
    padding: 50px 0;
    color: #fff;
}
.wine-bg-content h2{
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff !important;
}
.wine-bg-content h4{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff !important;
}
.wine-bg-content p{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff !important;
}
.wine-bg img{
    width: 200px;
    margin: auto;
    display: block;
}
.trend-sec{
    padding: 50px 0;
    background: #f8f9fa;
}
.trend-sec h2.title{
    font-size: 46px !important;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000 !important;
}


.testimonial_sec{
    background: url('../img/bg-3.jpg') no-repeat top center fixed;
}


    .video_sec {
      position: relative;
      height: 100vh; /* Adjust as needed */
      overflow: hidden;
    }

    .video_sec video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1; /* Place video behind other content */
      transform: translate(-50%, -50%);
    }

    .video_sec .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity for desired effect */
      z-index: 0; /* Place overlay over video, under content */
    }

    .video_sec .container {
      z-index: 10; /* Ensure content is on top */
      position: relative;
    }
    .video_sec .video-contnt{
        width: 800px;
        max-width: 100%;
        margin: auto;
    }
    .video_sec h2 {
      color: #fff;
      font-size: 48px;
      font-weight: 700;
      margin-top: 20px;        
    }
    .video_sec p {
      color: #fff;
      font-size: 20px;
      margin-top: 10px;
    }

    .testimonial_content{
        padding: 20px;
        text-align: center;
        border: rgba(101, 101, 101, 0.02) solid 1px;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.5);
        margin: 20px auto;
        max-width: 600px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .testimonial_content p{
        color: #fff;
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 20px; 
        font-style: italic; 
        font-family: 'lato', sans-serif;
    }
    .testimonial_content h4{
        color: #fff !important;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 30px;
        
    }
    .testimonial_content img{
        width: 85px !important;
        border-radius: 50%;
        margin:0 auto 20px; 
    }

    .fun-free-draw{
        background: url('../img/bg-5.jpg') no-repeat top center fixed;
        background-size: cover;
        padding: 90px 0;
        position: relative;
    }
    .fun-free-draw::before{
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
        z-index: 0;
    }
    .fun-free-draw .container{
        position: relative;
        z-index: 1;
        text-align: center;
    }
    .fun-free-draw h2 {
        color: #fff !important;
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: 'raleway', sans-serif;
    }

    .fun-free-draw .card{
        background: none;
        border: none;
        color: #fff;
        text-align: center;
        padding: 20px;
        transition: transform 0.3s ease;
        max-width: 600px;
        margin: 0 auto;
    }
    .fun-free-draw .card h3{
        color: #fff !important;
        font-size: 94px;
        font-weight: 500;
        margin-bottom: 10px;
        font-family: 'Roboto', sans-serif;
    }

    .card-body .col-3{
        position: relative;
    }
    .card-body .col-3:after {
        content: ":";
        position: absolute;
        right: -4px;
        top: 22px;
        font-size: 50px;
        font-weight: 600;
    }
    .card-body .col-3:last-child::after {
        content: "";
    }

    .brand-img {
    max-height: 80px; /* adjust as per design */
    object-fit: contain;
}
.cart-img-thumb{
    width: 60px;
    height: 60px;
    background: url("../img/no_image.png") no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 768px) {
    .wine-bg img{
        width: 150px;
        margin: auto;
    }
    .card-body{
        padding: 0;
    }
    .fun-free-draw .card h3{
        font-size: 45px;
    }
    
    /* Simple timer styles */
    .fun-free-draw .card h3 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #fff !important;
        margin: 0;
        line-height: 1;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .fun-free-draw .card-body .col-3 {
        padding: 10px 5px;
        min-width: 80px;
    }
    
    .fun-free-draw .card-body .col-3 p {
        margin: 5px 0 0 0;
        font-size: 0.9rem;
        color: #ccc;
        white-space: nowrap;
    }
    
    /* Ensure timer row doesn't wrap */
    .fun-free-draw .card-body .row {
        /*flex-wrap: nowrap;*/
    }
    
    @media (max-width: 768px) {
        .fun-free-draw .card h3 {
            font-size: 2rem;
        }
        .fun-free-draw .card-body .col-3 {
            min-width: 60px;
            padding: 5px 2px;
        }
    }
    
    .card-body .col-3:after{
        top: 0;
        font-size: 40px;
    }
}




/*Nav Start*/
.dropdown-menu.mega-menu {
      width: 99.1vw;
      left: 50%;
      top: 100%;
      border: none;
      border-radius: 0;
      padding: 2rem;
      margin-left: -50vw;
    }

    .mega-menu .nav-pills .nav-link {
      border-radius: 0;
      text-align: left;
      color: #000;
      font-size: 1.1rem;
      font-family: "Raleway", sans-serif;
      font-weight: 600;
      padding: 8px;
      text-transform: capitalize;
    }
    .mega-menu .nav-pills .nav-link.active {
      font-weight: 700;
    }
    .mega-menu .tab-pane ul {
      list-style: none;
      padding-left: 0;
    }
    .mega-menu .tab-pane ul li {
      margin-bottom: 1rem;
    }
    .mega-menu .tab-pane ul li a {
      text-decoration: none;
      color: #000;
      font-size: 1.1rem;
      font-family: "Raleway", sans-serif;
      font-weight: 600;
      padding: 8px;
      text-transform: capitalize;
    }

    .back-nav-xs{
        padding: 10px;
    }

    @media screen and (max-width: 992px) {
        .dropdown-menu.mega-menu {
            width: 100vw;
            left: 0;
        }
        .navbar .navbar-toggler {
            padding: 8px 10px;
            position: absolute;
            left: 50%;
            top: -25px;
            border-width: 3px;
            margin-left: -49vw;
        }
        .navbar-toggler:focus{
            box-shadow: none;
        }
        .navbar-collapse{
            position: absolute;
            top: 50px;
            left: 50%;
            margin-left: -50vw;
            width: 100vw;
            background: var(--bs-dark);
            z-index: 9;            
        }
        .navbar-expand-lg .navbar-nav .nav-link{
            text-align: left !important;
        }
        .dropdown-menu.mega-menu{
            padding: 10px;
        }
        .logo{
            margin-left: 50px;
        }
       .navbar .nav-item:hover .dropdown-menu{
        margin-left: 0;
       }
    }
    @media screen and (max-width: 767px) {
        .navbar .navbar-toggler {
            top: -50px;        
            margin-left: -48vw;
        }
        .navbar-collapse{
            top: 100%;    
        }
        .cart-xs{
            position: absolute;
            right: 15px;
            top: 15px;
            z-index: 9;
        }
        .logo{
            margin-left: 10px;
        }
}



    /* Mega menu base */

    .mega-menu .nav-pills .nav-link {
      border-radius: 0;
      text-align: left;
      color: #000;
      font-size: 1.0rem;
      font-weight: 600;
      padding: 8px;
      text-transform: capitalize;
    }
    .mega-menu .nav-pills .nav-link.active {
      font-weight: 700;
    }
    .mega-menu .tab-pane ul {
      list-style: none;
      padding-left: 0;
    }
    .mega-menu .tab-pane ul li {
      margin-bottom: .75rem;
    }
    .mega-menu .tab-pane ul li a {
      text-decoration: none;
      color: #000;
      font-weight: 600;
      text-transform: capitalize;
    }

    .back-nav-xs {
      padding: 8px 0;
      font-weight: 700;
      cursor: pointer;
    }

    /* Desktop spacing tweak */
    @media (min-width: 992px) {
      .mega-menu { padding: 2.2rem; }
      .mega-menu .col-md-2 { max-width: 220px; }
    }

    /* Mobile behaviour (slide in/out) */
    @media (max-width: 767px) {
      .dropdown-menu.mega-menu { padding: 12px; }

      /* Tab content hidden by default on mobile */
      .tab-wrapper .tab-content {
        display: none;
        transform: translateX(100%);
        opacity: 0;
        transition: transform .28s ease, opacity .28s ease;
      }
      .tab-wrapper .tab-content.active-slide {
        display: block;
        transform: translateX(0);
        opacity: 1;
      }

      /* show only the left list initially */
      .sidebar-menu.hide { display: none; }

      /* prevent layout overflow */
      .dropdown-menu.mega-menu { overflow: hidden; }

      /* small visual tweaks */
      .mega-menu .nav-pills .nav-link { font-size: 1.05rem; padding: 10px 6px; }
      .mega-menu .tab-pane ul li { margin-bottom: .6rem; }
    }

    /* small reset for duplicates in markup */
    .sidebar-menu { padding-right: 0.5rem; }


/*Nav End*/


@media (min-width: 992px) {
    .owl-stage .owl-item:nth-child(5), .owl-stage .owl-item:nth-child(10) {
        display: none !important;
    }
 }
 @media (max-width: 991px) {
    .owl-stage .owl-item:nth-child(4), .owl-stage .owl-item:nth-child(9) {
        display: none !important;
    }
 }
@media (min-width: 1200px) {
    .h4 {    
        min-height: 56px;   
    }
}

.brand-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px; /* space from edges */
    z-index: 99; /* make sure arrows stay on top */
}

.brand-section .owl-nav button {
    background: rgba(0,0,0,0.6);
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.brand-section .owl-nav button:hover {
    background: #ff9800;
    color: #fff !important;
}


.inner-page-bg{
    min-height: 450px;
    background: url('../img/bg-6.jpg') no-repeat bottom center fixed;
    position: relative;
}
.inner-page-bg::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

.inner-page-bg h2{
    color: #fff !important;
    font-size: 6rem;
    font-weight: 600;
    margin-bottom: 10px;  
    position: relative;
    z-index: 2;
    margin-top: 30%;      

}
.inner-page-bg p{
    color: #fff !important;
    font-weight: 600;
    font-size: 20px;
    position: relative;
    z-index: 2;
}   


@media screen and (max-width: 767px) {
    .sort-xs{
        position: absolute;
        right: 15px;
        top: -60px;
        z-index: 9;
    }
    .sort-xs select{
       padding-top: 0;
    }
    .btn[data-bs-target="#mobileFilter"]{
        padding: 0.75rem !important;
        border-radius: 5px;
        font-size: 1.1rem;
        margin-bottom: -10px;
    }
}