.favorites-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.favorites-header {
    text-align: center;
    margin-bottom: 40px;
}

.favorites-header h1 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 10px;
}

.favorites-header .subtitle {
    color: #666;
    font-size: 14px;
}

.favorites-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.favorite-item {
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.favorite-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.favorite-item .image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.favorite-item img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
}

.favorite-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
}

.favorite-item .price {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.favorite-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
}

.remove-favorite {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.remove-favorite:hover {
    opacity: 0.7;
}

.view-product {
    background: none;
    border: 1px solid #000;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000;
}

.view-product:hover {
    background: #000;
    color: white;
}

.empty-favorites {
    text-align: center;
    padding: 60px 20px;
}

.empty-favorites i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-favorites h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 300;
}

.empty-favorites p {
    color: #666;
    margin-bottom: 30px;
}

.browse-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.browse-button:hover {
    background: #333;
}

@media (max-width: 768px) {
    .favorites-container {
        grid-template-columns: 1fr;
    }
}
