
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* === Product Card === */
.product-card {
    position: relative;
    border: 2px solid var(--card-border, #e5e7eb);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
}

.product-card:hover {
    border-color: var(--primary) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper + Overlay */
.product-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    padding: 24px 16px 16px;
    color: white;
}

.product-sku {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fffffff2;
    color: #374151;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px #00000026;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 28px 0;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
}

.product-category-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.product-category-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Card Content */
.product-content {
    padding: 16px;
}

/* Price Row */
.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #059669;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--price-color);
}

.original-price {
    font-size: 1rem;
    color: #f00;
    text-decoration: line-through;
    margin-right: 8px;
}