/* Social Share Icons */
.chodigi-social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0 20px 0;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.social-share-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    vertical-align: middle;
    line-height: 1;
    box-sizing: border-box;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-share-btn:active {
    transform: translateY(0);
}

.social-share-btn:focus {
    outline: 2px solid rgba(0, 0, 0, 0.2);
    outline-offset: 2px;
}

.social-share-btn i {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Zalo SVG Icon - đảm bảo kích thước đồng nhất với Font Awesome icons */
.social-share-btn .zalo-icon {
    width: 16px;
    height: 16px;
    display: block;
    margin: 0 auto;
    flex-shrink: 0;
    object-fit: contain;
}

/* Responsive cho Zalo icon */
@media (max-width: 768px) {
    .social-share-btn .zalo-icon {
        width: 14px;
        height: 14px;
    }
}

/* Facebook */
.social-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
}

.social-facebook:hover {
    background: linear-gradient(135deg, #0d5dbf 0%, #0a4a9a 100%);
}

/* Twitter/X */
.social-twitter {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.social-twitter:hover {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
}

/* LinkedIn */
.social-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-linkedin:hover {
    background: linear-gradient(135deg, #005885 0%, #004066 100%);
}

/* Pinterest */
.social-pinterest {
    background: linear-gradient(135deg, #bd081c 0%, #9a0617 100%);
}

.social-pinterest:hover {
    background: linear-gradient(135deg, #9a0617 0%, #7a0512 100%);
}

/* WhatsApp */
.social-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
}

.social-whatsapp:hover {
    background: linear-gradient(135deg, #1da851 0%, #168a42 100%);
}

/* Zalo */
.social-zalo {
    background: linear-gradient(135deg, #0068ff 0%, #0052cc 100%);
}

.social-zalo:hover {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
}

/* Copy Link */
.social-copy-link {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}

.social-copy-link:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
}

.social-copy-link.copied {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    animation: copySuccess 0.3s ease;
}

@keyframes copySuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .chodigi-social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .social-share-label {
        font-size: 13px;
    }
    
    .social-share-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 13px;
    }
}

