/**
 * Sweets Website - Wishlist Styles
 * =============================================================
 */

.p-wishlist {
    background-color: #fdf8f2;
    min-height: 80vh;
}

.p-wishlist__hero {
    background: linear-gradient(rgba(247, 148, 29, 0.05), rgba(247, 148, 29, 0.05));
    border-bottom: 1px solid rgba(247, 148, 29, 0.1);
}

.p-wishlist__content {
    background-color: transparent;
}

/* Product Card Override for Wishlist */
.p-wishlist .c-product-card-premium {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.p-wishlist .c-product-card-premium:hover {
    transform: translateY(-5px);
}

.p-wishlist .c-product-card-premium__image-wrap {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.p-wishlist .c-product-card-premium__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-wishlist .c-product-card-premium__content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.p-wishlist .c-product-card-premium__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4a1b14;
}

.p-wishlist .c-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #f7941d;
}

.p-wishlist .c-wishlist-btn.is-active i {
    color: #f7941d;
}

/* Responsive Grid */
@media (max-width: 576px) {
    .p-wishlist__hero {
        padding: 2rem 0 !important;
    }

    .p-wishlist__hero h1 {
        font-size: 2rem;
    }
}