


/*==============================
    Status Supabase
==============================*/


.shoe-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.shoe-image-wrapper img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.shoe-badge {
  position: absolute;
  bottom: 12px;
  left: 15px;
  padding: 3px 7px;                     /* Adjusted padding for smaller font size normal is 6px 14px */
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 400;
  color: white;
}

.shoe-badge.new {
  background: linear-gradient(135deg, #ff9800, #ff5722, #fd1202);
}

.shoe-badge.limited {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.shoe-badge.sold_out {
  background: rgba(0, 0, 0, 0.85) /* Semi-transparent black for better contrast */
    linear-gradient(135deg, #443c3c, #000000);
}

.shoe-badge.in_stock {
  background: linear-gradient(135deg, #00c853, #00e676, #00120c);
}

.disabled-shoe img {
  filter: grayscale(100%);
  opacity: 0.6;
}
