/* ============================================
   GIZARI WISHLIST STYLES
   ============================================ */

/* ---- Wishlist Button on Product Cards ---- */
.product-card__wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    padding: 0;
}

.product-card__wishlist-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #ef4444;
    border-color: #ef4444;
    transform: scale(1.1);
}

.product-card__wishlist-btn.wishlisted {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
}

.product-card__wishlist-btn.wishlisted:hover {
    background: rgba(239, 68, 68, 0.25);
}

/* ---- "Add to Wishlist" CTA for OOS cards ---- */
.product-card__wishlist-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    margin-top: 8px;
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    font-family: var(--font-condensed, 'Barlow Condensed', sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.product-card__wishlist-cta:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.product-card__wishlist-cta.wishlisted {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.product-card__wishlist-cta.wishlisted i {
    animation: heartPop 0.3s ease;
}

/* ---- Product Detail Page Wishlist ---- */
.product-wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    font-family: var(--font-condensed, 'Barlow Condensed', sans-serif);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-wishlist-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    transform: translateY(-1px);
}

.product-wishlist-btn.wishlisted {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

/* ---- Header Wishlist Icon ---- */
.header__wishlist {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header__wishlist:hover {
    color: #ef4444;
}

.wishlist-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    background: #ef4444;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 0 4px;
    line-height: 1;
}

/* ---- Toast Notification ---- */
.gizari-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fff;
    font-family: var(--font-body, sans-serif);
    font-size: 0.875rem;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.gizari-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---- Animations ---- */
@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
