/* Social Share Plugin Styles */
.hometrux-share-plugin {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9995;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hometrux-share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 8px rgba(13,35,64,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #0d2340;
    border: 1px solid #e4e8ef;
}

.hometrux-share-btn:hover {
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 8px 24px rgba(13,35,64,.12);
}

.hometrux-share-btn.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.hometrux-share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.hometrux-share-btn.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.hometrux-share-btn.whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.hometrux-share-btn.email:hover {
    background: #ea4335;
    color: white;
    border-color: #ea4335;
}

.hometrux-share-btn.copy:hover {
    background: #0d2340;
    color: white;
    border-color: #0d2340;
}

.hometrux-share-btn .share-tooltip {
    position: absolute;
    left: 60px;
    background: #0d2340;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13,35,64,.08);
    pointer-events: none;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.hometrux-share-btn .share-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent #0d2340 transparent transparent;
}

.hometrux-share-btn:hover .share-tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

.hometrux-share-toggle {
    display: none;
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946 0%, #c0303c 100%);
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230,57,70,0.4);
    z-index: 9996;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.hometrux-share-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(230,57,70,0.5);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

@media (max-width: 768px) {
    .hometrux-share-plugin {
        display: none;
    }
    
    .hometrux-share-toggle {
        display: flex;
    }
    
    .hometrux-share-plugin.mobile-visible {
        display: flex;
        animation: slideInLeft 0.3s ease;
    }
}