:root {
    --bg-img: url('https://i.ibb.co/zWWX7pSx/77254b9beb1748b136f4c0be9c841e78ad0adf9d.png');
    --feat-bg: #000;
    --feat-color: #fff;
    --footer-bg: #fff;
}


body {
    background-image: var(--bg-img) !important;
    background-size:cover;
    background-color:#040D0F;
}
.top-navbar,
#mainnav,
.inner,
.sub-menu {
    background: #060606 !important;
}
#mainnav,
#mainnav i:before,
#mainnav b {
    color: #fff!important;
}
.main-nav-container {
    min-height: 0;
}

@media (min-width: 992px) {
    .navbar-brand img {
        max-height: 5rem;
    }

    .main-nav-container.fixed-pinned .navbar-brand img {
        max-height: 70px;
    }
}
#mainnav a:hover {
    color: var(--header-color) !important;
    opacity: 0.7;
}

#mainnav i {
    border: unset !important;
}

.sicon-shopping-bag:before {
    content: "\ef39" !important;
}

.sicon-user-circle:before {
    content: "\f078";
}

/* Carousel */

.s-block:nth-of-type(1) {
    margin-top: 0 !important;
}

.s-block--photos-slider .s-slider-block__title-nav {
    display: none !important;
}

.s-block--photos-slider * {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.s-block--photos-slider .swiper-slide {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
}
/* Products */

body:not(body.product-single) .s-block-tabs .s-button-element:not(.s-product-card-wishlist-btn){
 background-color: #42442e !important
}

.s-product-card-entry {
    background-color: transparent !important;
    border-radius: 0.5rem !important;
}

.s-product-card-image {
    background-color: transparent !important;
}

.s-product-card-entry:hover img {
    scale: 1.2;
}

.s-product-card-entry img {
    transition: all 0.3s;
}

.slider-bannars-moving h2,
.s-product-card-content-title {
    text-align: center !important;
}

.s-product-card-content-sub {
    justify-content: center;
}

.s-product-card-content-title a,
.s-product-card-price,
.product-single .main-content h1,
.product-single .main-content p,
.s-breadcrumb-wrapper{
    color: #fff !important;
}

body:not(body.product-single)
    .s-button-element:not(.s-product-card-wishlist-btn),
.s-button-btn{
background: linear-gradient(180deg, #F16606 0%, #280301 100%);
;
    color: #fff !important;
    border-radius: 0.5rem;
}

.s-product-card-vertical .s-product-card-wishlist-btn button:hover {
    background-color: var(--color-primary) !important;
}

.s-product-card-vertical
    .s-product-card-wishlist-btn
    button:hover
    .sicon-heart {
    color: #fff !important;
}

@media (max-width: 600px) {
    .s-products-slider-card {
        width: 55%;
    }
}

/* Transparent Banner */
.banner-entry,
.banner--fixed img,
.s-reviews-testimonial{
    background-color: transparent !important;
}

/* Footer */
.store-footer,
.s-comments-product{
    background-color:#040D0F !important;
}

.store-footer__inner {
    background-color: #040D0F !important;
}

@media (min-width: 1024px) {
    footer .grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.copyright-text p,
.copyright-text p a:hover{
    color: #fff !important;
}


@media (max-width: 769px) {
    footer * {
        margin: 0 auto;
        text-align: center;
    }
}
.s-reviews-testimonial__avatar {
    height: 4rem;
    width: 4rem;
}
.s-reviews-testimonial p,
.s-reviews-testimonial h2{
  color: #fff !important;
}
.s-reviews-testimonial{
  border: 1px solid #300701;
}
/* Special Heading */

.s-slider-block__title h2{
    font-size: 32px !important;
    position: relative;
    color: #fff !important;
}
.s-slider-block__title {
    justify-content: center;
}
.carousel-slider .s-slider-block__title-nav{
  display: none;
}
.s-slider-block__title h2:before {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    transform: translate(20px, 30px);
    position: absolute;
    z-index: -1;
}
@media (max-width: 1024px) {
    .s-slider-block__title h2,
    .s-block__title h2 {
        font-size: 20px !important;
    }
    .s-slider-block__title h2:before,
    .s-block__title h2:before {
        height: 20px;
        transform: translate(10px, 20px);
    }
}

/* Hover Effect */

.banner-entry > div {
    background-repeat: no-repeat;
    display: inline-block;
    transition: 0.3s;
}

.banner-entry > div:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0) 100%
    );
}

.banner-entry > div:hover:after {
    opacity: 1;
    left: 130%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}

.banner-entry > div:active:after {
    opacity: 0;
}

.banner-entry > div:not(:hover) {
    transform: scale(0.95);
}