/* ── Wishlist Page ───────────────────────────────────────── */
.wishlist-page { min-height: 100vh; padding-bottom: var(--s11); }

.wishlist-hero {
    padding: calc(var(--s11) + 40px) 0 var(--s9);
    background: linear-gradient(180deg, var(--carbon) 0%, var(--void) 100%);
    border-bottom: 1px solid var(--flint);
    margin-bottom: var(--s9);
}
.wishlist-hero__title {
    font-family: var(--font-display);
    font-size: clamp(var(--t7), 5vw, var(--t10));
    font-weight: 300;
    letter-spacing: .04em;
    color: var(--parchment);
    margin: var(--s3) 0 0;
}
.wishlist-hero__sub {
    color: var(--cream-ghost);
    font-size: var(--t2);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: var(--s3);
}

/* Guest notice */
.wishlist-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--s4);
    background: var(--carbon);
    border: 1px solid var(--flint);
    border-left: 3px solid var(--gold);
    padding: var(--s5);
    color: var(--cream-dim);
    font-size: var(--t2);
    margin-bottom: var(--s8);
}
.wishlist-notice svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.wishlist-notice a { color: var(--gold); text-decoration: underline; }

/* Wishlist card actions */
.wishlist-card-actions {
    display: flex;
    gap: var(--s2);
    align-items: center;
    margin-top: var(--s4);
}
.wishlist-remove-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    color: var(--cream-ghost);
}
.wishlist-remove-btn:hover { color: #e74c3c; border-color: #e74c3c; }

/* Wishlist product grid — flex so partial last rows leave no grey holes */
.wishlist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    background: var(--flint);
    margin-bottom: var(--s8);
}
.wishlist-grid .product-card {
    flex: 1 1 250px;
    max-width: calc(25% - 2px);
}
@media (max-width: 1100px) { .wishlist-grid .product-card { max-width: calc(33.33% - 2px); } }
@media (max-width: 720px)  { .wishlist-grid .product-card { max-width: calc(50% - 2px); } }

/* Empty state */
.wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--s11) 0;
    gap: var(--s5);
}
.wishlist-empty__icon { color: var(--flint); }
.wishlist-empty h2 {
    font-family: var(--font-display);
    font-size: var(--t7);
    font-weight: 300;
    color: var(--parchment);
}
.wishlist-empty p { color: var(--cream-ghost); font-size: var(--t2); }
