.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 15vw, 320px), 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.card-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.05) 0%, rgba(201, 168, 108, 0.02) 100%);
    /* Warm tint */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 108, 0.1);
}

.card-image {
    max-height: 80%;
    transition: transform 0.3s;
}

.glass-card:hover .card-image {
    transform: scale(1.05);
}

.product-details {
    padding: 1.5rem;
}

.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

.btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 2;
}

.btn-wishlist:hover {
    background: #fff;
    color: #e74c3c;
    transform: scale(1.1);
}

.btn-wishlist.active {
    color: #e74c3c;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-main);
}

.rating {
    display: flex;
    gap: 0.25rem;
    color: #f1c40f;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    align-items: center;
}

.rating-value {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 5px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-numbers);
}

.btn-add-cart {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    transition: 0.3s;
}

.btn-add-cart:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Sale Price Styling */
.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85em;
    font-weight: 400;
    margin-right: 8px;
}

.price-sale {
    color: #4CAF50;
    font-weight: 700;
}