/* HayderVoice Social Share - Mobile/AMP safe styles */
.hvs-share-container {
    background: #fefefe;
    padding: 30px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 3px solid #D4A574;
}
.hvs-share-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}
.hvs-share-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.hvs-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: 2px solid #D4A574;
    border-radius: 25px;
    background: #fff;
    color: #D4A574;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease;
    cursor: pointer;
}
.hvs-share-btn:hover,
.hvs-share-btn:focus {
    background: #D4A574;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,165,116,.3);
}
.hvs-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.hvs-copy-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #D4A574;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    display: none;
    z-index: 1000;
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .hvs-share-buttons { justify-content: center; }
    .hvs-share-btn {
        flex: 1 1 auto;
        min-width: 120px;
        justify-content: center;
    }
    .hvs-share-container {
        margin: 20px 0;
        padding: 20px 15px;
        border-radius: 10px;
    }
}