/* Social Share & Download Bar */
.social-share-bar {
    position: absolute;
    right: -70px; /* Positions it just outside the right edge of your flyer */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    color: #1e293b;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.social-btn:hover {
    background: #38bdf8; /* Matches your neon blue accent */
    color: #ffffff;
    transform: scale(1.1);
}

/* Mobile Responsiveness: Moves the bar under the flyer on small screens */
@media (max-width: 900px) {
    .social-share-bar {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
