/* Tailwind handles most styles. Custom styles can go here if needed. */

/* ── Share Bar ─────────────────────────────────────────────────────────── */
#share-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 3px solid #000;
    box-shadow: 0 -4px 16px rgba(0,0,0,.15);
    padding: 10px 12px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
}

#share-bar.share-bar--visible {
    transform: translateY(0);
    opacity: 1;
}

#share-bar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

#share-bar-label {
    font-weight: 800;
    font-size: .85rem;
    white-space: nowrap;
    margin-right: 4px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    border: 2px solid #000;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s ease, opacity .15s ease;
    line-height: 1;
}

.share-btn:active {
    transform: scale(.95);
    opacity: .85;
}

.share-btn--native   { background: #6c47ff; color: #fff; border-color: #6c47ff; }
.share-btn--whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.share-btn--facebook { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-btn--twitter  { background: #000;    color: #fff; border-color: #000; }
.share-btn--copy     { background: #f3f4f6; color: #111; border-color: #9ca3af; }

@media (max-width: 480px) {
    #share-bar-label { display: none; }
    .share-btn { padding: 7px 10px; font-size: .78rem; }
}