/* UPDATED PREMIUM SHOOPY CSS */

/* BUTTON */
.outlined-button__btn {
  transition: all 0.25s ease;
}

.outlined-button__btn:hover {
  background: #000 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}


/* BANNER IMAGE */
.banner-image {
  transition: transform 0.4s ease;
  will-change: transform;
}

.banner-image:hover {
  transform: scale(1.05);
}


/* CATEGORY CARD */
.cat-card-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.cat-card-img-root img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}

.cat-card-img-container:hover img {
  transform: scale(1.06);
}


/* OVERLAY */
.cat-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
  transition: background 0.3s ease;
}

.cat-card-img-container:hover .cat-card-img-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0)
  );
}


/* TITLE */
.cat-card-img-title {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  z-index: 2;
  letter-spacing: 0.4px;
}


/* MOBILE FIX */
@media (hover: none) {
  .banner-image:hover,
  .cat-card-img-container:hover img {
    transform: none;
  }
}
