/* Container Styles */
.pru-floating-container {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between icons */
}

/* Icon Link Styles */
.pru-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #333; /* Fallback */
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.pru-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hover Effects */
.pru-icon:hover {
    width: 60px; /* Expands slightly on hover */
    color: white;
}

/* Specific Colors */
.pru-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.pru-facebook { background-color: #1877F2; }
.pru-tiktok { background-color: #000000; }
.pru-youtube { background-color: #FF0000; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .pru-floating-container {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        gap: 20px;
    }

    .pru-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%; /* Circular on mobile */
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    /* Remove hover expansion on touch devices to avoid sticky states */
    .pru-icon:hover {
        width: 40px;
    }

    .pru-icon svg {
        width: 20px;
        height: 20px;
    }
}
