.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-category {
    font-size: 12px;
    color: var(--4win-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--4win-text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--4win-primary);
}

.btn-buy {
    background: var(--4win-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s, transform 0.1s;
}

.btn-buy:hover {
    background: var(--4win-primary-hover);
    color: white;
}

.btn-buy:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .marketplace-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 15px;
    }
}
