/* Copyright (C) 2026 Aedishub+ - All Rights Reserved. Confidential and Proprietary. */
/* Glassmorphism Share Popup Styles */
.share-popup-container {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .share-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.share-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.share-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    filter: brightness(1.1);
}

.share-item i {
    font-size: 1.25rem;
}

.share-whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.share-facebook { background: linear-gradient(135deg, #1877F2 0%, #0C56B7 100%); }
.share-linkedin { background: linear-gradient(135deg, #0077B5 0%, #004182 100%); }
.share-twitter { background: linear-gradient(135deg, #1DA1F2 0%, #0D8BD9 100%); }

.share-copy-btn {
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    cursor: pointer;
}

.share-copy-btn:hover {
    background: #e5e7eb;
    color: #111827;
}

.share-copy-btn.success {
    background: #dcfce7;
    color: #166534;
    border-color: #86efac;
}

/* SweetAlert Customization */
.swal2-popup.share-modal-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.swal2-title {
    font-family: 'Lexend Mega', sans-serif !important;
    color: #0E5354 !important;
    font-size: 1.5rem !important;
    padding-top: 1.5rem !important;
}

.swal2-close:focus {
    box-shadow: none !important;
}
