/* Container for the entire share section at the bottom */
.custom-share-buttons {
    display: flex;
    flex-direction: column; /* Stack text above icons */
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin: 60px auto 20px auto;
    border-top: 1px solid #e2e8f0; /* Subtle slate border */
    background-color: #f8fafc; /* Very light gray background to separate from content */
    border-radius: 12px;
}

/* The "Enjoying this bundle?" text */
.custom-share-buttons p {
    font-size: 16px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 20px !important;
    letter-spacing: -0.01em;
}

/* Wrapper for just the icons */
.share-icon-wrapper {
    display: flex;
    gap: 25px; /* Spacing between icons */
    align-items: center;
}

/* Individual Icon Styling */
.custom-share-buttons img {
    width: 28px;
    height: 28px;
    filter: grayscale(100%); /* Make them subtle gray initially */
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effects */
.custom-share-buttons a:hover img {
    filter: grayscale(0%); /* Bring back original colors on hover */
    opacity: 1;
    transform: translateY(-4px); /* Slight lift effect */
}

/* Pinterest specific hover (Brand Red) */
.custom-share-buttons a[title*="Pinterest"]:hover img {
    filter: drop-shadow(0 4px 6px rgba(189, 8, 28, 0.2));
}

/* Facebook specific hover (Brand Blue) */
.custom-share-buttons a[title*="Facebook"]:hover img {
    filter: drop-shadow(0 4px 6px rgba(24, 119, 242, 0.2));
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .custom-share-buttons {
        margin: 40px 15px;
        padding: 30px 15px;
    }
    
    .share-icon-wrapper {
        gap: 20px;
    }
}