.gourmet-card {
    width: 100%;
    height: 145px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.15);
    background: white;
    display: flex;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #dadce0;
}

.gourmet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}

.gourmet-card.out-of-stock {
    opacity: 0.7;
    filter: grayscale(0.3);
}

.card-image {
    width: 36%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, rgba(26, 115, 232, 0) 100%);
    z-index: 1;
}

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

.gourmet-card:hover .food-image {
    transform: scale(1.04);
}

.sold-out, .popular {
    position: absolute;
    top: 8px;
    left: 8px;
    color: white;
    padding: 3px 7px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}

.sold-out {
    background: #d32f2f;
}

.popular {
    background: #ffa000;
    left: auto;
    right: 8px;
}

.card-content {
    width: 64%;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.restaurant {
    font-size: 9px;
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.food-title {
    font-size: 14px;
    color: #202124;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.3;
}

.food-description {
    font-size: 10px;
    color: #5f6368;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dadce0;
    padding-top: 6px;
    margin-top: auto;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-size: 15px;
    font-weight: 800;
    color: #1a73e8;
    line-height: 1;
}

.gourmet-add-btn {
    background: linear-gradient(135deg, #1a73e8, #8ab4f8);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
    font-size: 9px;
}

.gourmet-add-btn:hover {
    background: linear-gradient(135deg, #0d47a1, #1a73e8);
}

.gourmet-add-btn i {
    font-size: 8px;
}

/* Responsive adjustments */
@media (min-width: 600px) {
    .gourmet-card {
        height: 160px;
    }
}

@media (min-width: 768px) {
    .gourmet-card {
        height: 170px;
    }
}

@media (min-width: 992px) {
    .gourmet-card {
        height: 145px;
    }
}

@media (min-width: 1200px) {
    .gourmet-card {
        height: 155px;
    }
}

.gourmet-card {
    width: 100%;
    height: 145px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.15);
    background: white;
    display: flex;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #dadce0;
    margin-bottom: 16px; /* Új sorok közötti térköz */
}

/* Mobil: 1 kártya/sor (alapértelmezett) */
.category-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Tablet: 1 kártya/sor (600px felett) */
@media (min-width: 600px) {
    .category-products {
        grid-template-columns: 1fr;
    }
    .gourmet-card {
        height: 160px;
    }
}

/* Asztali: 2 kártya/sor (992px felett) */
@media (min-width: 992px) {
    .category-products {
        grid-template-columns: repeat(2, 1fr);
    }
    .gourmet-card {
        height: 145px;
    }
}

/* Nagy asztali: 2 kártya/sor (1200px felett) */
@media (min-width: 1200px) {
    .gourmet-card {
        height: 155px;
    }
}

/* A többi stílus változatlan marad */
.gourmet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}

.gourmet-card.out-of-stock {
    opacity: 0.7;
    filter: grayscale(0.3);
}

.card-image {
    width: 36%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, rgba(26, 115, 232, 0) 100%);
    z-index: 1;
}

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

.gourmet-card:hover .food-image {
    transform: scale(1.04);
}

.sold-out, .popular {
    position: absolute;
    top: 8px;
    left: 8px;
    color: white;
    padding: 3px 7px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
}

.sold-out {
    background: #d32f2f;
}

.popular {
    background: #ffa000;
    left: auto;
    right: 8px;
}

.card-content {
    width: 64%;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.restaurant {
    font-size: 9px;
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.food-title {
    font-size: 14px;
    color: #202124;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.3;
}

.food-description {
    font-size: 10px;
    color: #5f6368;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dadce0;
    padding-top: 6px;
    margin-top: auto;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-size: 15px;
    font-weight: 800;
    color: #1a73e8;
    line-height: 1;
}

.gourmet-add-btn {
    background: linear-gradient(135deg, #1a73e8, #8ab4f8);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
    font-size: 9px;
}

.gourmet-add-btn:hover {
    background: linear-gradient(135deg, #0d47a1, #1a73e8);
}

.gourmet-add-btn i {
    font-size: 8px;
}



