.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0.05rem 0.1rem 0.3rem -0.03rem rgba(0, 0, 0, 0.25);
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  /* background: #12c2e9;

    background: -webkit-linear-gradient(to bottom, #f64f59, #c471ed, #12c2e9);

    background: linear-gradient(to bottom, #f64f59, #c471ed, #12c2e9); */

  background: #fceabb;
  background: linear-gradient(
    to bottom,
    #fceabb 0%,
    #fccd4d 20%,
    #f8b500 58%,
    #fbdf93 100%
  );

 
  opacity: 0.7;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  /* background: #12c2e9;
    background: -webkit-linear-gradient(to bottom, #f64f59, #c471ed, #12c2e9);
    background: linear-gradient(to bottom, #f64f59, #c471ed, #12c2e9); */

  background: #fceabb;
  background: linear-gradient(
    to bottom,
    #fceabb 0%,
    #fccd4d 20%,
    #f8b500 58%,
    #fbdf93 100%
  );


  opacity: 0.7;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: #e4e7ed;
  z-index: -1;
}

.shop .shop-img > img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img > img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: #000000;
  text-shadow: 1px 1px 5px #ffffff;

}

.shop .shop-body .cta-btn {
  color: #2c2c2c;
  text-transform: uppercase;
}

.categories-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #ffaf40, #ffcd70);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 175, 64, 0.3);
  transition: all 0.3s ease;
}

.categories-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.categories-btn:hover {
  background: linear-gradient(to right, #ffa726, #ffca60);
  box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4);
}

.categories-btn:hover i {
  transform: rotate(8deg);
}


@media (width<=424px) {
  .shop .shop-body {
    padding: 15px;
  }

  .shop .shop-body h3 {
    font-size: 15px;
  }
  .shop .shop-body a {
    font-size: 12px;
  }
}

@media (width > 424px) and (width<=576px) {
  .shop .shop-body {
    padding: 20px;
  }

  .shop .shop-body h3 {
    font-size: 16px;
  }
  .shop .shop-body a {
    font-size: 14px;
  }
}

@media (width>576) and (width<=768px) {
  .shop .shop-body {
    padding: 30px;
  }

  .shop .shop-body h3 {
    font-size: 20px;
  }
  .shop .shop-body a {
    font-size: 18px;
  }
}

@media (width>991px) and (width<=1060px) {
    .shop .shop-body {
      padding: 30px;
    }
  
    .shop .shop-body h3 {
      font-size: 18px;
    }
    .shop .shop-body a {
      font-size: 16px;
    }
  }