 .product-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
}
.product-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}
.product-card:hover {
    transform: translateY(-6px);
    text-decoration: none;
}
.product-card:hover h4 {
    text-decoration: none;
}
.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f44336;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}
.badge.NEW_ARRIVAL {
    background-color: #4CAF50;
}
.badge.BEST_SELLER {
    background-color: #2196F3;
}
.badge.TRENDING {
    background-color: #2196F3;
}
.product-details {
    padding: 15px 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 5px;
    min-height: 50px;
}
.product-prices {
    display: flex;
    align-items: center;
    gap: 10px;
}
.price {
    font-weight: bold;
    font-size: 16px;
}
.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}
a.product-card:link,
a.product-card:visited,
a.product-card:hover,
a.product-card:active {
    text-decoration: none;
    color: inherit;
}