/* ========== MENU DE PARTAGE ========== */

.share-menu {
    position: fixed;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 250px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.share-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.share-menu-header {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
}

.share-option:hover {
    background: #f3f4f6;
}

.share-option span {
    font-size: 1.25rem;
}

.share-option:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* ========== BOUTON SAUVEGARDER ACTIF ========== */

.action-btn.saved {
    background: #00853F !important;
    color: white !important;
}

.action-btn.saved:hover {
    background: #006b33 !important;
}

/* ========== NOTIFICATIONS ========== */

.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    min-width: 250px;
}

.custom-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.custom-notification.notification-success {
    border-left: 4px solid #00853F;
}

.custom-notification.notification-info {
    border-left: 4px solid #3b82f6;
}

.notification-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00853F;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.875rem;
}

.notification-info .notification-icon {
    background: #3b82f6;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .share-menu {
        left: 50% !important;
        transform: translateX(-50%) translateY(-10px);
        width: 90%;
        max-width: 300px;
    }
    
    .share-menu.show {
        transform: translateX(-50%) translateY(0);
    }
    
    .custom-notification {
        right: 10px;
        left: 10px;
        width: auto;
    }
}
