/* Social Sharing Styles */
.social-share-container {
    margin: 2rem 0;
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.social-share-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #5e4534;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-share-button i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.social-share-button.facebook {
    background-color: #3b5998;
}

.social-share-button.twitter {
    background-color: #1da1f2;
}

.social-share-button.linkedin {
    background-color: #0077b5;
}

.social-share-button.pinterest {
    background-color: #bd081c;
}

.social-share-button.whatsapp {
    background-color: #25d366;
}

.social-share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Styles */
.dark-mode .social-share-container {
    border-color: #444;
}

.dark-mode .social-share-title {
    color: #d4af7a;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .social-share-buttons {
        gap: 0.7rem;
    }
    
    .social-share-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
