/* Card Wrapper */
.polymati-woo-category-card {
  position: relative;
/*   height: 100vh; */
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s ease;
	padding-bottom: 100%;
}

/* Hover effect */
.polymati-woo-category-card-hover:hover {
  transform: translateY(-6px);
}

/* Overlay */
.polymati-woo-category-overlay {
  width: 100%;
  height: 100%;
  padding: 45px;
/*   background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.25), transparent); */
  color: #ffffff;
  position: absolute;
  top: 0;
  justify-content: space-between;
  display: flex;
  align-items: end;
}

.polymati-woo-category-price {
  font-weight: 400;
  line-height: 100%;
}

/* Category Title */
.polymati-woo-category-overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* Price Text */
.polymati-woo-category-overlay p {
  margin: 6px 0 14px;
  font-size: 14px;
  opacity: 0.85;
}

/* Button */
.polymati-woo-category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 28px 8px;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-bottom-cat .polymati-woo-category-btn {
	border: 0px
}

/* Button Hover */
.polymati-woo-category-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Responsive */
@media (max-width: 767px) {
  .polymati-woo-category-card {
    height: 300px;
	  padding-bottom: 100%;
  }

  .polymati-woo-category-overlay h3 {
    font-size: 18px;
  }
}
