⭐ 2. Updated CSS (Clean, Modern, Responsive)
/* Product Card */
.product-card {
    position: relative !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

/* NEW: Add spacing to all content except the image */
.product-card > *:not(.product-image) {
    padding-left: 6px;
    padding-right: 6px;
}


.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}


/* GLANCE Label */

/*
.glance-label {
    position: absolute !important;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.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 Image 
.product-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}
*/
.product-image {
  width: 100%;
  /*aspect-ratio: 3 / 4;*/ /* perfect fashion ratio */
  /*aspect-ratio: 2 / 3; */ /* taller image ratio */
    aspect-ratio: 4 / 6; /* more taller image ratio */
  object-fit: cover;
  /* object-position: top center; /* keeps the face visible */
  object-position: 50% 20%  /* top center;*/ /* keeps the face visible */
  border-radius: 12px;
}


/* Title */
.product-title {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Price Formatting */
.sale-price {
    color: #d60000;
    font-weight: 700;
    margin-right: 6px;
}

.regular-price {
    color: #888;
    text-decoration: line-through;
}

/* Buy Now CTA */
.buy-now-cta {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f7f7f7;
    border-radius: 6px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    width: fit-content;
}

.buy-now-cta:hover {
    background: #ececec;
}

.retailer-logo {
    height: 18px;
    width: auto;
}

/* Color Circles */
.color-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.color-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.more-colors {
    font-size: 12px;
    color: #666;
}
