/* --- Favorites Page Redesign --- */
.favorites-page-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    padding: 100px 20px 120px;
}

.page-title-section {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 36px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-subtitle {
    color: #666;
    font-size: 16px;
}

.favorites-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Empty State */
.empty-favorites {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.empty-icon {
    font-size: 48px;
    color: #ffd1d1;
    margin-bottom: 20px;
}

/* Card Design */
.fav-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.fav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fav-image-container {
    height: 220px;
    width: 100%;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

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

.fav-card:hover .fav-image {
    transform: scale(1.05);
}

.btn-remove-fav {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4757;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.btn-remove-fav:hover {
    transform: scale(1.1);
    background: #ff4757;
    color: white;
}

.fav-details {
    padding: 20px;
}

.fav-category {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 5px;
}

.fav-name {
    font-size: 18px;
    font-weight: 700;
    color: #182848;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fav-price {
    font-size: 20px;
    color: #4b6cb7;
    font-weight: 800;
    margin-bottom: 20px;
}

.btn-add-cart-fav {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.btn-add-cart-fav:hover {
    opacity: 0.9;
}