.products-grid {
    gap: 20px;
    padding: 10px;
    justify-content: center;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.image-container {
    width: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.product-image.flip-image {
    transform: scaleX(-1);
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-card:hover .product-image.flip-image {
    transform: scaleX(-1); /* Stays flipped on hover, no scale animation */
}

.product-info {
    padding: 16px;
    text-align: center;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.product-name {
    font-size: 1.4em;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.2;
}

.product-model {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.2em;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.3px;
}
