/* Vertical Social Icons Strip */
.social-strip {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 9998;
    background: rgba(18, 20, 24, 0.72);
    padding: 13px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px 0 0 10px;
    width: 44px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Vertical "Contact" Label */
.social-strip-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 0.95;
    text-transform: uppercase;
    color: #B89A4A;
    text-align: center;
    padding: 8px 0;
    user-select: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-strip {
        top: 50%;
        transform: translateY(-50%);
        padding: 11px 6px;
        width: 38px;
    }

    .social-strip-label {
        font-size: 12px;
    }
}
