/* ============================================================
   AFRIYAH SOCIAL SHARE STYLES
   ============================================================ */

.af-product-social-share {
    margin: 24px 0;
    padding: 16px;
    background: #f7faf7;
    border-radius: 12px;
}

.af-share-title {
    margin: 0 0 12px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.af-share-title i {
    color: #006400;
    margin-right: 6px;
}

.af-social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.af-share-row {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.af-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.af-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
    /* Ensure text stays white on hover */
}

/* Platform Colors */
.af-share-facebook {
    background: #1877F2;
}

.af-share-twitter {
    background: #1DA1F2;
}

.af-share-whatsapp {
    background: #25D366;
}

.af-share-pinterest {
    background: #BD081C;
}

.af-share-linkedin {
    background: #0077B5;
}

.af-share-tiktok {
    background: #000000;
    border: none;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .af-social-share-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .af-share-row {
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
    }

    .af-share-btn {
        flex: 1;
        min-width: 0;
        width: auto;
        justify-content: center;
        font-size: 12px;
        padding: 8px 12px;
    }

    .af-share-btn span {
        display: inline;
        /* Ensure text is visible as per original inline style override */
    }
}

@media (max-width: 480px) {
    .af-share-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .af-share-btn i {
        font-size: 14px;
    }
}