.social-share-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.social-share-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    border: 3px solid var(--dooplay-surface);
    animation: pulsing 2.5s ease-out infinite;
}

@keyframes pulsing {
    0% { box-shadow: 0 0 0 0 var(--dooplay-surface-light) }
    80% { box-shadow: 0 0 0 10px #00000000 }
}

.social-share-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.social-share-content h3 {
    margin: 0;
    font-size: 1.5em;
}

.social-share-content p {
    font-size: 0.9em;
    color: #888;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.share-count {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    border-radius: 50%;
    color: #fff;
    display: flex;
    background: #000000b8;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-share-container:hover .share-count {
    opacity: 1;
}

.social-share-buttons .share-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
}

.social-share-buttons .share-link {
    /* opacity: 0.8; */
    background: var(--dooplay-surface-light);
    transition: 0.4s ease;
}

.social-share-buttons .facebook:hover { background-color: #3b5998; }
.social-share-buttons .twitter:hover { background-color: #1da1f2; }
.social-share-buttons .pinterest:hover { background-color: #c8232c; }
.social-share-buttons .whatsapp:hover { background-color: #25d366; }
.social-share-buttons .tiktok:hover { background-color: #000; }
.social-share-buttons .youtube:hover { background-color: #f00; }
.social-share-buttons .instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

.share-link i {
    font-size: 1rem;
}
  

.sbox p {
    line-height: 23px;
    position: relative;
    top: -4px;
}

@media (max-width: 768px) {
    .social-share-container {
        flex-direction: column;
        text-align: center;
    }

    .social-share-content {
        width: 100%;
    }

    .social-share-buttons {
        justify-content: center;
        width: 100%;
    }
}
