/* Social Media Sharing Buttons Styling */
.social-share-buttons {
    margin: 12px 0;
    padding: 0 12px;
    border-bottom: none;
    display: flex;
    align-items: center;
    pointer-events: auto;
    justify-content: center;
    vertical-align: center;
    text-align: center;
}

.social-share-buttons span {
    font-size: 14px;
    color: #555;
    margin-right: 12px;
}

.share-buttons-container {
    display: flex;
    gap: 10px;
    pointer-events: auto;
    justify-content: right;
    vertical-align: center;
    text-align: center;
}

.share-buttons-container span {
    font-size:12px
}



.share-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1000 !important;
    flex: 0 0 auto !important;

}

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

/* Platform specific colors */
.share-button.whatsapp {
    background-color: #25d366;
}

.share-button.facebook {
    background-color: #1877F2;
}

.share-button.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.share-button.permalink {
    background-color: #0077cc;
    background: linear-gradient(to bottom right, #0077cc, #005fa3);
}

.share-button.permalink:hover {
    background: linear-gradient(to bottom right, #0088e8, #0077cc);
    transform: translateY(-2px) scale(1.05);
}

/* Icon styling */
.share-icon {
    width: 18px;
    height: 18px;
    filter: invert(1) drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

.inquiry-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
    margin-right: 8px;
}

/* Inquiry button styling */
.button_wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white !important;
    font-weight: normal;
    font-size: 15px !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.button_wa:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
