.products-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.product-card {
    flex: 0 0 calc(100% / 3);
    padding: 10px;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    z-index: 2;
}

.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    z-index: 1;
}

.card-category {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 5px;
}

.card-title {
    margin: 0;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* برای تبلت و موبایل */
@media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%;
    }
}