/* Box shadow items */
.shadow-a {
  /* transition: transform .5s; */
  /* border-radius: 10px; */
  border: none;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.shadow-b {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.shadow-c {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.shadow-d {
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
    rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.shadow-e {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
/* ----------------------------------------------------------------- */

/* index- top vendor section */
.top-vendor {
  height: 230px;
  padding: 0%;
}
.text-vendor {
  margin-top: 12px;
}
/* -------------------------------------------------------------- */

/* index- Category Card Section */
.card-body {
  display: flex;
  padding: 2%;
  position: relative;
  margin: 2% 10%;
  flex-flow: row wrap;
}

.product-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
  width: 20vw;
  min-width: 180px;
  margin: 15px auto;
  text-align: center;
}

.product-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.product-img {
  border-radius: 5px 5px 0 0;
  max-width: 100%;
}

.product-container {
  padding: 2px 16px;
}

/* index- Category section detail page- Product Card */
/* .card-body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.card-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.card-container .card-card {
  position: relative;
  border-radius: 10px;
}

.card-container .card-card .card-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d59b2d;
  transition: 0.7s;
  z-index: 1;
}

.card-container .card-card .card-icon .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  transition: 0.7s;
  color: #fff;
}

.card-i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  transition: 0.7s;
  height: 100%;
  color: #fff;
}

.card-container .card-card .face {
  width: 180px;
  height: 200px;
  transition: 0.5s;
}

.card-container .card-card .face.face1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}

.card-container .card-card:hover .face.face1 {
  background: white;
  transform: translateY(0px);
}

.card-container .card-card .face.face1 .card-content {
  opacity: 1;
  transition: 0.5s;
}

.card-container .card-card:hover .face.face1 .card-content {
  opacity: 1;
}

.card-container .card-card .face.face1 .card-content i {
  max-width: 100px;
}

.card-container .card-card .face.face2 {
  position: relative;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: translateY(-100px);
}

.card-container .card-card:hover .face.face2 {
  transform: translateY(0px);
}

.card-container .card-card .face.face2 .card-content p {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #414141;
}

.card-container .card-card .face.face2 .card-content h3 {
  margin: 0 0 5px 0;
  padding: 0;
  color: #fff;
  font-size: 24px;
  text-align: center;
  color: #414141;
}

.card-container .card-a {
  text-decoration: none;
  color: #414141;
} */