/* ===== SITE FOOTER ===== */
.site-footer {
    margin-top: auto;
    padding: 24px 0 20px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 4px;
    margin-bottom: 10px;
}

.site-footer__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color var(--transition);
}

.site-footer__links a:hover {
    color: var(--primary-light);
}

.site-footer__dot {
    color: var(--text-muted);
    font-size: 12px;
    opacity: 0.5;
}

.site-footer__copy {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
}

.site-footer__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.site-footer__author a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.site-footer__author a:hover {
    color: var(--primary);
}

.site-footer__author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.site-footer__socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.site-footer__socials a {
    color: var(--text-muted);
    opacity: 0.7;
    transition: color var(--transition), opacity var(--transition);
}

.site-footer__socials a:hover {
    color: var(--primary-light);
    opacity: 1;
}

/* Love Wish List — glass pill */
.site-footer__lwl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 16px 6px 8px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}

.site-footer__lwl:hover {
    background: var(--bg-card-hover);
    border-color: rgba(244, 120, 184, 0.35);
    color: var(--text);
    box-shadow: 0 2px 16px rgba(244, 120, 184, 0.15);
    transform: translateY(-1px);
}

.site-footer__lwl-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.site-footer__lwl-text {
    white-space: nowrap;
}
