/* Social share aside styles */
.cotlas-social-share.cotlas-social-share-aside-mobile {
    display: grid;
    background: white;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    gap: 5px;
    width: max-content;
    margin-left: 0;
    margin-top: 10px;
}

.cotlas-social-share-aside-mobile a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cotlas-social-share-aside-mobile svg {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
}

.cotlas-social-share-aside-mobile span {
    display: none;
}

/* Individual social icon colors */
.cotlas-social-share-aside-mobile a.facebook svg {
    fill: #1877F2;
}

.cotlas-social-share-aside-mobile a.twitter svg {
    fill: #000000;
}

.cotlas-social-share-aside-mobile a.linkedin svg {
    fill: #0A66C2;
}

.cotlas-social-share-aside-mobile a.whatsapp svg {
    fill: #25D366;
}

.cotlas-social-share-aside-mobile a.telegram svg {
    fill: #0088cc;
}

.cotlas-social-share-aside-mobile a.pinterest svg {
    fill: #E60023;
}

.cotlas-social-share-aside-mobile a.reddit svg {
    fill: #FF4500;
}

.cotlas-social-share-aside-mobile a.threads svg {
    fill: #000000;
}

/* Hover effects */
.cotlas-social-share-aside-mobile a:hover {
    transform: translateY(-2px);
    background: #f8f9fa;
}

.cotlas-social-share-aside-mobile a:hover svg {
    fill: #000000 !important;
    transform: scale(1.1);
}
/* Responsive design */
@media (max-width: 768px) {
    .cotlas-social-share-aside-mobile {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin: 20px 0;
        border-radius: 15px;
    }
}
@media (max-width: 480px) {
    .cotlas-social-share-top a,
    .cotlas-social-share-aside-mobile a {
        width: 25px;
        height: 25px;
    }
    
    .cotlas-social-share-top svg,
    .cotlas-social-share-aside-mobile svg {
        width: 25px;
        height: 25px;
    }
}