/* Kedvelt Termékek oldal stílusok */

.favorites-section {
    padding: 40px 0;
    min-height: 60vh;
}

.favorite-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 10px 0;
    line-height: 1.4;
}

.product-category {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #D10024;
    margin: 15px 0;
}

.product-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-info .btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: none;
}

.btn-view-product {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white !important;
}

.btn-view-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.btn-remove {
    background: linear-gradient(45deg, #D10024 0%, #ff6b6b 100%);
    color: white;
}

.btn-remove:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 0, 36, 0.3);
}

.no-favorites {
    text-align: center;
    font-size: 20px;
    color: #7f8c8d;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 40px 0;
}

/* Responsive design */
@media (max-width: 991px) {
    .favorite-products {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .favorite-products {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .product-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .favorite-products {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image {
        height: 250px;
    }
}

