:root {
  --bg-clr: #060606;
  --primary-clr: #fff;
}

@media only screen and (max-width: 1024px) {
    .mm-spn.mm-spn--light {
        background: #000;
        color: #fff;
    }
}

.top-navbar,
#mainnav,
.inner,
.sub-menu {
    background: var(--bg-clr) !important;
}

#mainnav,
#mainnav i:before,
#mainnav b {
    color: var( --primary-clr) !important;
}

.s-user-menu-login-btn svg {
    fill: #fff;
}

#mainnav a:hover {
    color: var( --primary-clr) !important;
    opacity: 0.7;
}



body,
.store-footer,
.store-footer__inner {
  background-color: var(--bg-clr) !important;
}

.navbar-brand img {
  max-height: 5rem;
}
.main-nav-container.fixed-pinned .navbar-brand img {
  max-height: 70px;
}

/* Categories */

.s-block--banners .grid {
  grid-template-columns: repeat(3,1fr);
}
.s-block--banners .lazy__bg {
  background-size: contain;
  background-repeat: no-repeat;
}
.s-block--banners .banner-entry {
  height: 280px;
}
@media (max-width: 992px) {
  .s-block--banners .banner-entry {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .s-block--banners .banner-entry {
    height: 100px;
  }
  .s-block__title h2 {
    font-size: 1.2rem;
  }
  .s-block__title h2:after {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
}
@media (min-width: 640px) {
  .two-row .banner-entry:first-child {
    grid-row: span 1 / span 1;
  }
}

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

/* Products */

.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 {
  color: #000 !important;
}
body:not(body.product-single)
  .s-button-element:not(.s-product-card-wishlist-btn) {
  background: var(--color-primary);
  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%;
  }
}

footer a.flex.items-center.m-0 h3 {
  font-size: 0 !important;
}

footer a.flex.items-center.m-0 h3:before {
  content: url(https://i.ibb.co/h17ZJCzk/Chat-GPT-Image-Jul-15-2026-09-50-02-AM-1-1.png);
}
@media(max-width:768px){
footer .items-center,
footer .flex{
    justify-content: center;
}
.store-footer h3,
footer p {
  text-align: center
}
footer div.grid {
    justify-items: center;
}
.s-menu-footer-list {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}
}

/* Category Page */

.s-breadcrumb-item,
h1#page-main-title,
label {
  color: var(--primary-clr);
}

.s-breadcrumb-arrow svg {
  stroke: var(--primary-clr);
  color: var(--primary-clr);
}

select#product-filter {
  background: var(--bg-clr) !important;
  color: var(--primary-clr);
  border-color: var(--bg-clr);
}

/* Product Page */

.product__description *,
.main-content h1,
.main-content b,
.main-content label {
  color: var(--primary-clr) !important;
}

.product__description strong {
  color: #f00 !important;
}

.product__description * {
  background-color: var(--bg-clr);
}

.main-content h2 {
  color: #fff;
}

.main-content *:not(button) {
  background: transparent;
}

.mb-4.flex.justify-between.sm\:grid.sm\:grid-cols-3.bg-white.rounded-md.px-4.py-2 {
  color: #fce07c;
}

.s-quantity-input-container {
  border-color: var(--primary-clr);
}

.s-quantity-input-container svg path {
  fill: var(--primary-clr);
}

.s-quantity-input-input {
  color: #fff;
  border-color: var(--primary-clr);
}

/* Cart Page */

.item-price {
  color: #fff !important;
}

.shadow-default.bg-white.p-5.xs\:p-7.rounded-md.mb-5.relative.transition-height.duration-1000 {
  background: transparent;
  color: #fff;
  border: 1px solid var(--primary-clr);
}


/* 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);
}
.s-product-card-content-title a, 
.s-product-card-content *,
.product-single .main-content p,
.s-slider-block__title h2{
  color:#fff !Important
}
.s-comments-product {
    background-color: transparent;
}