.single-prod {
  background: rgba(0, 0, 0, 0.02);
}

.prod-main-img {
  width: 350px;
  height: 350px;
  background: #f5f5f5;
  border: 1px solid #333;
  margin-bottom: 0.5rem;
  border-radius: 5px;
}

.prod-main-img img {
  display: block;
  margin: 2rem auto;
  width: 70%;
}

.single-prod-imgs img {
  width: 100%;
  display: block;
  border: 1px solid #333;
  border-radius: 5px;
}

.single-prod-imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}

/* Fade in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in 1 forwards;
}

.single-prod-desc .prod-ul {
  display: flex;
  justify-content: flex-start;
  list-style: none;
}

.single-prod-desc .prod-ul li {
  margin: 1rem 0.5rem;
}

.single-prod-desc .prod-ul li a {
  text-decoration: none;
}

.single-prod-desc .prod-ul li a i {
  text-decoration: none;
  display: block;
  color: #fff;
  text-align: center;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
}

.single-prod-desc .prod-ul li a i.one {
  background: #00acee;
}

.single-prod-desc .prod-ul li a i.two {
  background: #3b5998;
}
.single-prod-desc .prod-ul li a i.three {
  background: #405de6;
}
.single-prod-desc .prod-ul li a i.four {
  background: #c4302b;
}

/* .single-prod-desc {
  padding: 2rem;
} */

.single-prod-desc .prod-link {
  text-align: center;
}

/* PRODUCT DESC2 */

.single-prod1 .container {
  display: grid;
  grid-template-columns: 6fr 2fr;
}

.sidebar {
  background: rgba(0, 0, 0, 0.02);
  border-left: 1px solid rgba(0, 0, 0, 0.04);
}
/* 
.sidebar .category-title {
  margin-left: 2rem;
}

.sidebar ul {
  margin-left: 2rem;
} */

/* ul.colors {
  display: flex;
} */

ul.colors {
  list-style: none;
  display: flex;
}

ul.colors li div {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin: 0 0.2rem;
  border: #ccc 1px solid;
}

ul.colors li:first-child div {
  background: #474a51;
}

ul.colors li:last-child div {
  background: #fff;
}

.related-products .carousel-wrap {
  border: 1px solid #ccc;
}

.related-products .prod-grid {
  width: 100%;
  height: 70%;
  margin: 1.5rem 0;
}

.related-products .prod-grid .prod-img {
  width: 100%;
  background: #f4f4f4;
  padding: 1.5rem;
}

.related-products .prod-img img {
  width: 60%;
  display: block;
  margin: auto;
  transition: all 0.4s;
}

.related-products .img-desc {
  text-align: center;
  width: 90%;
  background: #fff;
}

.related-products .prod-heading {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  transition: all 0.4s;
}

.related-products .img-desc a {
  text-decoration: none;
}

.related-products .prod-link {
  color: #666;
  transition: all 0.4s;
}

/* .prod-link:hover {
  color: #ea2534;
} */
.related-products .prod-grid:hover .prod-img img {
  transform: scale(1.08);
}
.related-products .prod-grid:hover .prod-heading,
.related-products .prod-grid:hover .prod-link {
  color: #ea2534;
}
