/* TPPL Social Icons Styles */
.tppl-social-icons {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    z-index: 20;
}

.tppl-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border: none;
    background: rgba(122, 62, 163, 0.15);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    padding: 6px;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.tppl-social-icon:hover {
    background: rgba(122, 62, 163, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 62, 163, 0.3);
}

.tppl-social-icon:focus {
    outline: 2px solid #7A3EA3;
    outline-offset: 2px;
}

.tppl-social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Platform-specific colors with pizzazz */
.tppl-social-icon--facebook {
    color: #1877F2;
}

.tppl-social-icon--facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    color: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.tppl-social-icon--twitter {
    color: #1DA1F2;
}

.tppl-social-icon--twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    color: #1DA1F2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.tppl-social-icon--linkedin {
    color: #0A66C2;
}

.tppl-social-icon--linkedin:hover {
    background: rgba(10, 102, 194, 0.2);
    color: #0A66C2;
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.4);
}

.tppl-social-icon--instagram {
    color: #E4405F;
}

.tppl-social-icon--instagram:hover {
    background: linear-gradient(45deg, rgba(228, 64, 95, 0.2), rgba(252, 175, 69, 0.2));
    color: #E4405F;
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.4);
}

.tppl-social-icon--copy {
    color: #d4af37;
}

.tppl-social-icon--copy:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.tppl-social-icon--copied {
    background: rgba(40, 167, 69, 0.2) !important;
    color: #28a745 !important;
}

@media (max-width: 768px) {
    .tppl-social-icons {
        position: static;
        transform: none;
        margin: 12px auto 0;
        justify-content: center;
        width: 100%;
        gap: 16px;
        right: auto;
    }
    
    .tppl-social-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .tppl-social-icons {
        gap: 12px;
    }
    
    .tppl-social-icon {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tppl-social-icon {
        transition: none;
    }
    
    .tppl-social-icon:hover {
        transform: none;
    }
}