/*
.glance-label {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom-right-radius: 8px;
    z-index: 5;
}

.product-card {
  position: relative;
}

.product-card::after {
  content: "GLANCE";
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-card:hover::after {
  opacity: 1;
}
*/
.product-card {
  position: relative;
}

.product-card::after {
  content: "GLANCE";
  position: absolute;
  top: 10px;        /* moved from bottom */
  right: 10px;      /* moved from left */
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 4px 10px;  /* smaller padding = tighter oval*/
  border-radius: 999px;  /*makes it perfect oval */
  font-size: 12px;
  line-height: 1;  /* height matches font size */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.product-card:hover::after {
  opacity: 1;
}
