
.shopby-category {
  text-align: center;
}
.shopby-category h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
}
.category-card:hover {
	color:#d7d7d7;
}
.category-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 12px;
}
.category-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.category-card:hover img { transform: scale(1.05); }

.product-gallery {
  flex: 1;
  min-width: 300px;
  margin-right: 20px;
  position: relative;
}
.main-image {
  display: none;
}
/*
.main-image:target {
  display: block;
}*/
.main-image img {
  width: 100%;
  border-radius: 10px;
}
.thumbnail-row {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.thumbnail-row img {
  width: 80px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.thumbnail-row img:hover {
  border-color: #333;
}

.navbar {
  position: relative;
}

.nav-brand {
  font-size: 24px;
  font-weight: bold;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 20px;
  top: 30px;
  color:#ffffff;
  border:none
}

.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
    font-size: 16px;
    padding: 1.5rem 20px;
    font-weight: 400;
    color: #000000;
    opacity: 1 !important;
    display: block;
}

.has-submenu > .submenu {
  display: none;
  position: absolute;
  background: #ffffff;
  top: 100%;
  left: 0;
  min-width: 180px;
  z-index: 1000;
  padding:0px;
}
.hss-submenu > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.has-submenu:hover > .submenu {
  display: block;
}

.submenu li {
  position: relative;
  list-style:none;
}
.submenu a {
    padding: 0.25rem 1.5rem;
}

.submenu .submenu {
  left: 100%;
  top: 0;
}
@media (max-width: 991.98px) {
    .ftco-navbar-light {
        background: #ffffff !important;
    }
    .menu-toggle {
      color: #000000;
      display: block;
  }
  .nav-menu {
    flex-direction: column;
    display: none;
    background: #ffffff;
    width: 100%;
    padding: 15px;
  }

  .nav-menu.active {
    display: flex;
  }

  .has-submenu > .submenu {
    position: static;
    padding-left: 20px;
  }
  .nav-menu a {
    padding: 5px 20px;
    width: 100%;
    display: block;
  }
  .submenu {
    display: none;
    flex-direction: column;
    background: #444;
  }
  .has-submenu.active > .submenu {
    display: flex;
  }

  .submenu .submenu {
    background: #555;
  }
  .owl-carousel.home-slider {
    height: 450px;
  }
  .owl-carousel.home-slider .slider-item {
    height: 420px;
  }
}

@media (min-width: 992px) {
    .nav-menu {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    
}

 @media (max-width: 767.98px) {
    .owl-carousel.home-slider .slider-item {
        height: 250px;
    }
    .owl-carousel.home-slider {
      height: 250px;
    }
 }
 @media (max-width: 500px) {
    .owl-carousel.home-slider{
        height: 180px;
    }
    .owl-carousel.home-slider .slider-item {
        height: 180px;
    }
    .owl-carousel.home-slider .slider-item .slider-text {
        height: 180px;
    }
    .no-gutters > .col, .no-gutters > [class*="col-"] {
        width: 50%;
        float: left;
    }
 }