.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.product-card {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    display: flex;
    align-items: center;
}

.product-image img {
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 10px 20px;
}

.product-category {
    font-size: var(--fs-small);
    color: var(--color-primary);
    font-weight: 600;
}

.product-title {
    font-size: var(--fs-large);
    font-weight: 600;
}

.product-company {
    margin-top: 10px;
    margin-bottom: 10px;
}

.product-description {
    font-size: var(--fs-small);
    color: #777;
    line-height: 1.3;
}

.no-products {
    grid-column: 1 / -1; /* 전체 칸 차지 */
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: #666;
    background: #f9f9f9;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}