/* ===== Wishlist Styles - Cyan Theme Light ===== */

/* Wishlist Button Styles */
.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 15;
    background: rgba(248, 249, 251, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 177, 242, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: rgba(23, 25, 35, 0.8);
}

.wishlist-btn:hover {
    background: rgba(248, 249, 251, 0.99);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 177, 242, 0.15);
    border-color: rgba(13, 177, 242, 0.4);
}

.wishlist-btn.in-wishlist {
    background: #0db1f2;
    color: #ffffff;
    border-color: #0db1f2;
    animation: heartbeat 0.4s ease-out;
}

.wishlist-btn:not(.in-wishlist) {
    color: rgba(23, 25, 35, 0.7);
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.25);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Wishlist Count Badge */
.wishlist-count-badge {
    position: absolute;
    top: 12px;
    right: calc(50% - 24px);
    background: linear-gradient(135deg, #0db1f2 0%, #5ccfff 100%);
    color: #ffffff;
    border-radius: 100px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(13, 177, 242, 0.4);
    z-index: 20;
}

/* Model Photo Container - Relative positioning for wishlist button */
.model-photo {
    position: relative;
}

/* Bottom Navigation Styles */
.bottom-nav-item {
    position: relative;
}

/* Wishlist Page Styles */
.wishlist-page {
    min-height: calc(100vh - 200px);
    padding: 60px 32px 100px;
    background: #ffffff;
}

.wishlist-header {
    text-align: center;
    margin-bottom: 48px;
}

.wishlist-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    color: #171923;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.wishlist-header p {
    font-size: 17px;
    color: rgba(23, 25, 35, 0.6);
}

.wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 32px;
    background: linear-gradient(145deg, rgba(248, 249, 251, 0.9) 0%, rgba(240, 243, 248, 0.95) 100%);
    border: 1px solid rgba(13, 177, 242, 0.15);
    border-radius: 24px;
    margin: 48px 0;
}

.wishlist-empty-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    order: 1;
    opacity: 0.6;
}

.wishlist-empty .wishlist-actions {
    order: 3;
}

.wishlist-empty-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wishlist-empty h2 {
    order: 2;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: rgba(23, 25, 35, 0.7);
    margin-bottom: 32px;
}

.wishlist-empty p {
    color: rgba(23, 25, 35, 0.55);
    margin-bottom: 24px;
}

.wishlist-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.wishlist-stat {
    background: #f8f9fb;
    padding: 24px 36px;
    border-radius: 16px;
    border: 1px solid rgba(13, 177, 242, 0.1);
    text-align: center;
}

.wishlist-stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #0db1f2;
    margin-bottom: 4px;
}

.wishlist-stat-label {
    color: rgba(23, 25, 35, 0.6);
    font-size: 14px;
}

.wishlist-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.wishlist-actions button {
    padding: 14px 32px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wishlist-actions .btn-primary {
    background: #0db1f2;
    color: #ffffff;
}

.wishlist-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 177, 242, 0.3);
    background: #0891c7;
}

.wishlist-actions .btn-secondary {
    background: #f8f9fb;
    color: #171923;
    border: 1px solid rgba(13, 177, 242, 0.2);
}

.wishlist-actions .btn-secondary:hover {
    background: #f0f3f8;
    transform: translateY(-2px);
    border-color: rgba(13, 177, 242, 0.4);
}

.wishlist-item {
    background: #ffffff;
    border: 1px solid rgba(13, 177, 242, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wishlist-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 177, 242, 0.12);
    border-color: rgba(13, 177, 242, 0.35);
}

.wishlist-item-image {
    width: 100%;
    height: 220px;
    background: #f8f9fb;
    overflow: hidden;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wishlist-item:hover .wishlist-item-image img {
    transform: scale(1.05);
}

.wishlist-item-info {
    padding: 18px;
}

.wishlist-item-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #171923;
    margin-bottom: 8px;
    word-break: break-word;
}

.wishlist-item-date {
    font-size: 13px;
    color: rgba(23, 25, 35, 0.45);
    margin-bottom: 14px;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
}

.wishlist-item-actions button,
.wishlist-item-actions a {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.wishlist-item-actions .btn-visit {
    background: #0db1f2;
    color: #ffffff;
}

.wishlist-item-actions .btn-visit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 177, 242, 0.3);
    background: #0891c7;
}

.wishlist-item-actions .btn-remove {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.wishlist-item-actions .btn-remove:hover {
    background: rgba(239, 68, 68, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
    .wishlist-header h1 {
        font-size: 36px;
    }
    
    .wishlist-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 12px;
        right: 12px;
    }
    
    .wishlist-page {
        padding: 40px 20px 100px;
    }
    
    .wishlist-stats {
        gap: 12px;
    }
    
    .wishlist-stat {
        padding: 18px 24px;
    }
    
    .wishlist-empty {
        padding: 60px 24px;
    }
    
    .wishlist-empty h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .wishlist-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
        top: 8px;
        right: 8px;
    }
    
    .wishlist-count-badge {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
    }
    
    .wishlist-header h1 {
        font-size: 28px;
    }
}
